Questions tagged [arcgis-android-api]
48 questions
4
votes
0 answers
ArcGISRuntime arrows between dots
I am using ArcGISRuntime to display dots on the map as well as lines between them. The lines and the dots are displayed correctly, but I cannot set it to display the lines as arrows.
By using this line of code the dots and the lines are displayed as…

Richard
- 1,087
- 18
- 52
3
votes
1 answer
java.lang.RuntimeException: createContext failed: EGL_SUCCESS Arcgis Android
When I start the activity which have Arcgis MapView the app crashes all the time but on specific devices such as Letv Le X509 device or xiaomi device.
The log which I'm getting is mentioned below. Device OS Version is 6.0.
My ArcGIS SDK version is…

Manoj
- 35
- 7
2
votes
0 answers
How to stop LocationDisplayManager listening to location updates ESRI ArcGiS Android 10.2.9?
LocationDisplayManager lDisplayManager = null;
lDisplayManager = mMapView.getLocationDisplayManager();
lDisplayManager.setAutoPanMode(LocationDisplayManager.AutoPanMode.OFF);
lDisplayManager.setLocationListener(new LocationListener()…

Nikhil
- 911
- 15
- 28
1
vote
0 answers
Programmatically get weak global reference table count
Is there a way in Java or Kotlin to programmatically get a count of global weak references being used by native code in a closed-source 3rd party library?
I'm using the Esri ArcGIS runtime SDK in an Android app and I've noticed that calls to a…

Jason Hartley
- 2,459
- 1
- 31
- 40
1
vote
0 answers
com.esri.arcgisruntime.ArcGISRuntimeException: Object is already owned.: Already owned
I have a switch to load satelite map in my app. It was working fine until some android update.
Now it throws an error and crashes the App. It shows ' com.esri.arcgisruntime.ArcGISRuntimeException: Object is already owned.: Already owned.'
I tried…

Kumza Ion
- 353
- 2
- 12
1
vote
0 answers
arcgis-android-100.3.0.pom says Forbidden
We are try to make sample sample app as mentioned here
https://developers.arcgis.com/android/10-2/guide/develop-your-first-map-app.htm
Whenever we try to build, we get below error.
Could not GET…

Fahim Parkar
- 30,974
- 45
- 160
- 276
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
2 answers
Showing GIS data on ArcgisArView in World Scale Mode
I was trying to create an android app which shows GIS data in layers in RealTime AR. Something like the one in the image. I am already using ArcGIS runtime SDK to show all the GIS data in 2D map. But i could not find proper documentation to achieve…

David
- 906
- 3
- 11
- 23
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
1 answer
My points are drawn at 0 latitude, 0 longitude
This is my click listener on the map:
@Override
public boolean onSingleTap(MotionEvent point) {
Point mapPoint=view.toMapPoint(point.getX(), point.getY());
SpatialReference sp =…

Fustigador
- 6,339
- 12
- 59
- 115
1
vote
1 answer
Draw circle with a radius in meter
I need to draw a circle around a point with the ArcGis android sdk, but there is no Circle class only a Polygon. Now my idea was to use the polygon and calculate a number of points around a center point at a certain distance (in meter), but that…

LimitX
- 595
- 3
- 7
- 23
1
vote
0 answers
How to use map published in GeoWebCache With ArcGIS Runtime for Android
I want use map published in GeoWebCache with ArcGIS Runtime for Android. I don't now how get the WMS url of a map like ArcGIS sample like this ArcGIS sample
Is there anyone know how to solve it? Thanks very much.

Meteor.Chen
- 11
- 2
1
vote
1 answer
Loading webmap fails, most layers not loaded
I'm trying to load this webmap (https://oebb.maps.arcgis.com/home/item.html?id=f89eab37e55540f7b2e25a88cd0a07d5), but most of the layers don't show up.
It works on the web, but fails on Android (with the newest sdk, 100.2.1).
class MainActivity :…

Tamás
- 19
- 1
- 6
1
vote
0 answers
Offline Arcmap digitize map display on android
Im quite new in arcmap map and i have been spending more than 2 week stuck in how to show map online offline.
I have tried the code is attached but when i run the application.It crashes nothing to show.
You can see my code and i also attached…

zohaib
- 11
- 1