Questions tagged [esri-maps]
102 questions
2
votes
1 answer
XamlParseException when opening design with Esri map
Today I converted my VS2010SP1, Silverlight 4, Prism4.0, Esri ArcGis 2.4 application to: VS2012RC and Silverlight 5, Prism4.1 and Esri ArcGis api 3.0.
It uses an Esri map, and I get a strange error while opening an xaml page:
XamlParseException: …

Patrick Peters
- 9,456
- 7
- 57
- 106
1
vote
0 answers
Why the amount of build files increased after installing ArcGIS JS in the Angular application
I have installed the @arcgis/core by using npm into my Angular application.
After that when i'm going to deploy the changes in to my QA environment, it has more than 500 build files. Earlier it was only 19 build files.
Can anyone help me to reduce…

Kalana Tebel
- 135
- 4
- 17
1
vote
1 answer
How to change the format of field's value in a feature layer integrated with ArcGIS Esri map?
I have integrated a Parcel Layer in the ArcGIS Esri map inside Angular application. But now I want to change the format of some values coming up in the popup template when user clicks on certain Parcel.
Now my popup values looks like…

Kalana Tebel
- 135
- 4
- 17
1
vote
0 answers
esri arcgis emit click event in 4.x not working
Has anyone been successful in getting MapView emit method to work for click or double click in JS API 4.20?
I use to programmatically fire a click event in 3.x API but I am not having any success in 4.x.

Jethik
- 1,860
- 1
- 22
- 26
1
vote
3 answers
Why the map doesnt appear?
I'm trying understand how to use the ESRI maps api. I was checking this tutorial https://www.esri.com/arcgis-blog/products/js-api-arcgis/announcements/migrating-from-google-maps-javascript-api-to-arcgis-api-for-javascript/ but replicating the…

Jack
- 13
- 4
1
vote
1 answer
Is there an Esri API Call for FeatureServer to retrieve a Legend
Is there an API to retrieve a Legend for a FeatureServer?
I was looking for something like /FeatureServer/2/legend.
I believe /MapServer/2/legend works OK.
For…

zakariah1
- 362
- 1
- 11
1
vote
0 answers
Click event on map to open popup for a single layer arcGIS 4.16
I have a list of layers in my arcGIS map and required to add popup when clicking on a specific layer. Is it possible to detect the required layer from the list of layers and open popup? When I applied the sample code given in the documentation, some…

Adam-KER
- 67
- 9
1
vote
1 answer
Android ESRI map how to get the latitude longitude from screen point
I know we can get the screenPoint from the touched location on the ESRI map using this
val screenPoint = android.graphics.Point(motionEvent.x.roundToInt(), motionEvent.y.roundToInt())
And also we can get the mapPoint from the screenPoint using…

Shailendra Madda
- 20,649
- 15
- 100
- 138
1
vote
1 answer
can't get location, 3D imaging or heading (direction) in ArcGIS
I'm a newbie to arcgis. I'm trying to show a particular location at a particular angle in 3D. The location is the corner of Water Street and Fifth Avenue in McKeesport, Pa. The angle is facing east. The tilt is 45. But this is what I'm getting:…

LauraNMS
- 2,720
- 7
- 39
- 73
1
vote
1 answer
Clustering points in Esri-Maps
I am using ArcGIS maps by Esri for Android SDK link to ArcGIS to display some points on the map. So far I have removed points with same coordinates via removeDupes and just drawn the coordinates that are not duplicated. Then between the points are…

Richard
- 1,087
- 18
- 52
1
vote
0 answers
Esri Map Android not loading on changing height of layout
In my Application I two fragments in a single container. Half part of screen contains Esri Map and other half contains ListView. At this point of time Map and ListView are loaded fine, when I long press on ListView, the container height change and…

Anshuman Borah
- 538
- 2
- 10
1
vote
1 answer
How to set Opacity to a selected Graphic in ESRI map
In my android app I am adding a picture marker symbol on ESRI map using PictureMarkerSymbol class(using Kotlin) like:
val markerSymbol = PictureMarkerSymbol.createAsync(ContextCompat.getDrawable(context!!, icon) as BitmapDrawable?).get()
Here am…

Shailendra Madda
- 20,649
- 15
- 100
- 138
1
vote
1 answer
ESRI map inside a Nested Scroll View
I am trying to add ESRI map to my fragment which is in a NestedScrollView. It is loaded fine but when I move the map it is not moving smoothly if I remove NestedScrollView everything works fine.
Here is my ESRI map view inside…

Shailendra Madda
- 20,649
- 15
- 100
- 138
1
vote
0 answers
ArcGIS Online Webmap: Summarize values of overlapping polygons in quantitative symbology
I am attempting to create a dynamic webmap to display varying values across a grid of polygons. Within each grid cell there are multiple overlapping polygons (grid cells) each with a unique value. I would like aggregate these values to give a total…

Will
- 11
- 2
1
vote
1 answer
finding is point laying on line or not in esri map using arcgis API
I am trying to find whether the point lies on the line or not as below
function identifyFeatures(evt){
var extentGeom = pointToExtent(map,evt.mapPoint,10);
var filteredGraphics = dojo.filter(testLayer.graphics, function(gg) {
…

Pooja Madiwal
- 45
- 1
- 8