Questions tagged [arcgis]

ArcGIS is a platform consisting of a group of geographic information system (GIS) software products produced by Esri. The GIS Stack Exchange should be considered for questions with this tag.

Overview

ArcGIS consists of products, versions, applications, license levels and components.

ArcGIS was first launched in 1999 and excepting server offerings is available on Microsoft Windows only. Prior to 1999 Esri had a number of different product lines (ArcView3, ArcInfo Workstation, MapObjects, ArcSDE) on Unix and Windows that were loosely integrated and sometimes incompatible. Many of these products can be interacted with via programming languages, such as VBA, .NET languages, and Python.


Tag usage

Consider whether the question is more suitable on Stack Overflow SE or GIS SE which has separate tags for its products and components e.g. arcgis-desktop, arcgis-server, arcpy, arcsde, etc

2794 questions
0
votes
1 answer

ArcGIS for JavaScript 4.21 Emoji in textSymbol

Hello I'm using ArcGIS for JavaScript 4.21 I was abel to create a Graphic with poligon. I want to se a title to polygon so I have created another object above it. That object have a type "text" it is a SimpleText object. And it works fine with…
0
votes
1 answer

Issues to show point cloud density using javascript API

I have a sample which shows how to change size and density of points in a PointCloudLayer. Each PointCloudLayer renderer has two properties: pointSizeAlgorithm and pointsPerInch. One can change the point size and the other can change the point…
Mr Light
  • 129
  • 13
0
votes
1 answer

Feature of showing the existing district on Map IN ArcGis JS

I would like to ask that is there any method of features in ArcGIS can help me to show the current district that show on the map? Like the picture above, ArcGIS have any features that can list down the districts that is currently on this map, For…
kiku
  • 147
  • 1
  • 10
0
votes
2 answers

Buffer Analysis using arcpy

I am looking for a piece of code which help me in converting my road centreline feature to a buffer. I have the following feature classes. roads = "c:/base/data.gdb/roadcentreline" roadsoutput = "c:/base/data.gdb/roadcentreline_Buffer" Now, I want…
Mr Light
  • 129
  • 13
0
votes
1 answer

ArcGIS Javascript 4.x add state boundary with feature layer

How to set the the following service api to the state boundary on the map. https://esri.maps.arcgis.com/home/item.html?id=045485554d804e47b7972e49adacb4b8 Because I call the service url in the angular but the map keep showing the country boundary…
kiku
  • 147
  • 1
  • 10
0
votes
0 answers

How to resize image of earth to be flat in Python for Leaflet?

I got two images of earth from NASA, both 2400x2400px in size that I've processed to be heatmaps and finally combined into one image of size 4800x2400px. This image will be used as an overlay in a web application using Leaflet and OpenStreetMap.…
user15227672
  • 51
  • 1
  • 9
0
votes
2 answers

Package com.esri.arcgisruntime.ogc.kml for Arcgis API of Java

I am currently working on a project where I have to convert my data into kml. So, I go through this java package com.esri.arcgisruntime.ogc.kml on the developers website of ESRI. This package basically provides interfaces and classes for working…
Rizwan
  • 103
  • 4
  • 24
0
votes
1 answer

ITopologicalOperator.Intersect, how does this work?

I'm trying to intersect all features of a layer with another's but I'm getting the web ADF application stuck while executing the "ConstructUnion" function Here's the code I've written so far // create a geometrybag for…
Marco A.
  • 43,032
  • 26
  • 132
  • 246
0
votes
1 answer

Scenario based Web Scene in JavaScript API

I am working on a web app where I have to show my management different scenarios as per their requirement. Currently, what I achieved is I am able to create the time bound web scenes, but now I want to save all these scenarios like a Scenario A,…
user17147370
0
votes
0 answers

while using arcgis print service url to print the map as pdf getting this Error executing tool: Export Web Map Task?

I am trying to use ArcGIS print services to print maps as pdf by using the Url from the ArcGIS server. I want to print the map and all visible layers using an Export Web Map Task (PrintingTools Service) from ArcGIS Server. I am passing my data as…
Rajasirpi
  • 1
  • 3
0
votes
2 answers

Display Info Window on the multiple coordinates on the arcgis map in Next JS

Here below is my next JS Code which is showing a simple ArcGIS map with the points or markers on the specific coordinates. Can anyone please let me know that how can I display the popup / Info window for the points on the map? e.g. I click on any…
Deep Kakkar
  • 5,831
  • 4
  • 39
  • 75
0
votes
1 answer

Making a API call from ArcGIS Arcade script

I have a javascript code to make an API call as below. const request = new XMLHttpRequest(); request.open("GET", "http://ServiceURL?ID=" + pid); request.send(); Now my requirement is to make the same service call…
Prem
  • 109
  • 1
  • 9
0
votes
1 answer

Updating Google KMZ Popup Contents & Removing "Directions" in FME

By default a KML balloon will contain links "Directions to Here" and "Directions from Here" (driving directions). I want to know, how to remove these links from the balloon using FME, as well as use HTML to set KML Balloon content, URL links and…
user17167519
0
votes
1 answer

Get coodinate from each point of the polygon on ArcGIS?

I'm working with the ArcGIS API for JavaScript. I wondering is there any features I can use to get the coordinates of each vertex after I draw using the Sketch tool in the ArcGiS API? Update I try to use the webmercator method but it keep appear…
kiku
  • 147
  • 1
  • 10
0
votes
1 answer

Change ArcGIS server port number

ArcGIS Server connects its internet services with port 6080 and uses a site name of arcgis. For example, the default URL to an ArcGIS Server site is http://gisserver.domain.com:6080/arcgis. I want to get rid of the port number? any way to get rid of…