Questions tagged [esri-maps]
102 questions
1
vote
1 answer
ESRI Map control PanTo
I'm trying to make map center on certain Latitude/Longitude but Esri map control uses it's own X/Y coordinate system.
control.MapControl.PanTo(new MapPoint(control.MapCenter.Latitude, control.MapCenter.Longitude));
This code does not work. Is…

katit
- 17,375
- 35
- 128
- 256
0
votes
0 answers
Add_layer in python api for arcgis neither completes action nor returns an error
I have a python script where I'm trying to add a feature layer to a webmap. The script completes without any errors but the feature layer doesn't get added.
Here's the code in question:
from arcgis.gis import GIS
from arcgis.mapping import…

opike
- 7,053
- 14
- 68
- 95
0
votes
1 answer
vue is not updating the values of esri map
I have the following composable:
export const useEsriMap = () => {
const mapObject = ref()
const esriObject = computed(() => mapObject.value.esriObject)
const panTo = (lat, long) => {
esriObject.value.panTo([lat, long])
}
return {
…

Errand
- 121
- 9
0
votes
0 answers
Can Zabbix 6 read ESRI files
Does any one know if Zabbix 6 can read ESRI files and incorporate them into geomaps or simlpe maps ?
Thanks in advance.

Farouk H
- 1
0
votes
1 answer
Esri ArcGIS Map in Next.js app not working for me
Im having an issue getting a map to display via arcgis and next.js, perhaps if i had more eyes on it i might understand. Here is the code:
Main Page:
'use client'
import Header from './components/Header';
import DynamicMap from…

Josh Winters
- 829
- 5
- 12
- 27
0
votes
0 answers
Scraping an image from a webpage at defined scale
I am on a task to prepare a map/plan view database for a specific region in Ireland.
However I need to use a specific style of map from myplan.ie website at a defined scale (as highlighted in the screenshot on bottom left, 1unit=30m)
I now manually…

microambitious
- 9
- 2
0
votes
1 answer
Create point shapefile with NetTopologySuite in c#
I'm trying to create a shapefile, but every time I get some kind of error. I'm tried use DotSpatial and NetTopologySuite libraries too, but it still not working.
I'm tried do with ShapefileDataWriter but i get exception (System.ApplicationException:…

Krink
- 13
- 3
0
votes
1 answer
Simple Esri/ArcGIS Online connection using a link or iframe
I was asked by a potential client if I can have my software interact with Esri/ArcGIS Online.
Use case: users is logged into SomeRandomSoftwareApp and is looking at a Widget, this Widget includes an Esri asset id, the user clicks a link that passes…

Keith
- 23
- 5
0
votes
0 answers
Add a lable and symbole while generating image url in Esri Map Server Export_Map
I'm kind of new to Esri Services.
I need to know how to export an image from export map function from esri mapserver.
While exporting it should add a label and a symbol to image.
It's already implemented. I'm trying to reengineer same…

gamal
- 1,587
- 2
- 21
- 43
0
votes
1 answer
how to get the attachments of the asset while working in offline with arcgis runtime.net for xamarin.forms
I'm using the offline mode in Arcgis maps by downloading Geodatabase and offline tpk with Xamarin.Forms. Is there any way to get the attachments of the asset while working offline with ArcGIS Runtime. And ArcGISFeature.GetAttachmentsAsync() method…

Dev
- 315
- 2
- 16
0
votes
0 answers
Graphics not displaying in esri scene
I am trying to build an AR app for navigation, and i am trying to modify the app for rest points, so I decided to add 3d graphics overlay in esri maps while building the app in visual studio, but the problem is I can see a 2d point but when I try to…

Who
- 1
- 1
0
votes
1 answer
Cluster labels are not visible - ArcGIS javascript API 4.19
When we remove any layer from the group layer after that label are not visible for all layers.
We tried to 'loadAll' method group layers still issue is there. I tried with ArcGIS API 4.22 also.
We created one POC on the same issue:
Steps
From…

Shefali
- 25
- 6
0
votes
1 answer
Is there a way to get location in C# other than GeoCoordinate Watcher?
I am trying to implement a current location method in my app for ESRI ArcGIS it requires getting current latitude and longitude so i used geo coordinate watcher for it unfortunately i got system.device doesn't exist , i tried to rectify it but did…

H99C
- 13
- 4
0
votes
1 answer
Geodatabase item not found: Valve_6__ATTACH exception thrown with Arcgis Runtime 100.0.13 while clone the map xamarin.forms
need to use a map instance for another page so far clone the map instance and using that. but after updated the esri.ArcgisRuntime version from 100.0.8 to 100.0.13 facing a new error Geodatabase item not found: Valve_6__ATTACH while cloning the map…

Dev
- 315
- 2
- 16
0
votes
1 answer
How to filter a feature layer attributes using custom criteria in ArcGIS Esri map?
I have a parcel layer integrated into my Esri Map inside the Angular application. Now I want to filter and display only the specific parcels that meet the following criteria.
building_area equals to 0, Number_of_units equals to 0 likewise.
How can I…

Kalana Tebel
- 135
- 4
- 17