44 questions
0
votes
1
answer
120
views
Failed to build iOS app when try to build flutter Ios App
Failed to build iOS app
Error (Xcode): Undefined symbol: _RT_GeoView_draw
Error (Xcode): Undefined symbol: _RT_GeoView_hasValidSize
Error (Xcode): Undefined symbol: _RT_GeoView_pause
Error (Xcode): ...
0
votes
1
answer
124
views
Why is every Attribut, except OBJECTID, from this ArcGIS Query returning null?
Im trying to build an App in android Studio with the ArcGis API. While building an Adapter I noticed, that all the Attributes, except "OBJECTID", is returning null, even though they actually ...
1
vote
0
answers
171
views
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 ...
0
votes
1
answer
67
views
ArcGis locator task vs REST call has different results
I am using the android and iOS sdks to perform a geocode request to the server.
When I am calling the same endpoint using REST I get different results back.
In my case the REST call has way more ...
0
votes
1
answer
127
views
Are Circular Arcs supported in ArcGIS Android API 10.X or 100.X?
I see that the class com.esri.arcgis.geometry.CircularArc is supported in ArcGIS Enterprise .NET API but it seems that a similar class isn't contained in com.esri.arcgisruntime.geometry.
I am ...
1
vote
0
answers
540
views
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 '...
1
vote
1
answer
888
views
I am developing an Android app with ArcGIS offline map support. For that which one I have to use? MPK or MMPK package? How to download it?
I am developing an Android app with ArcGIS offline map support. To work with an offline map in android what I have to download? MPK or MMPK? By which tool I can generate the corresponding package? ...
1
vote
2
answers
507
views
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 ...
0
votes
1
answer
66
views
Stop "Unnamed (Index = 0)" is unallocated
I am using esri offline maps and getting routes with route task . But facing this issue that Stop "Unnamed (Index = 0)" is unallocated. esri.
Any help would be appreciated. If required i'll edit and ...
3
votes
1
answer
977
views
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. ...
-2
votes
1
answer
129
views
How can I use Base map from GIBS in Arcgis android Sdk
I want to use latest imagery from NSA GIBS in arcgis android sdk is it Possible?
Also can I download tiles from above service to cache/offline map?
I have tried:
WMSLayer class from arcgis android
...
1
vote
1
answer
318
views
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(...
1
vote
1
answer
232
views
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 ...
0
votes
1
answer
272
views
Arabic text is not showing in TextSymbol
I need to set Arabic text in TextSymbol in android. Here is my code
TextSymbol txtSymbol = new TextSymbol(24, "مرحبا", Color.BLUE);
Point pt = new Point(-293826, 7574114);
Graphic gr = new Graphic(pt,...
0
votes
1
answer
407
views
ArcGIS version 100.3.0 android token
Below is the code I'm using for setting user credentials on ServiceFeatureTable.
ServiceFeatureTable featureTablePolygons = new ServiceFeatureTable(polygonUrl);
featureTablePolygons.setCredential(...
0
votes
0
answers
101
views
Make graphics clickable instead of create new graphics in map
So, I have a map with a MapOnTouchListener on it. I have overriden the OnSingleTap method (allPoints is an array where all markers are added for a non related to this question functionality):
@...
1
vote
1
answer
79
views
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 ...
0
votes
2
answers
276
views
Mobile map package returns null for map
I downloaded Arcgis sample mmpk file and even I made a mmpk myself.
In both files I have 1 map(checked by debug) but when I try load the map (with codes in Esri guide page) it returns null for map.
...
0
votes
1
answer
336
views
ArcGIS Runtime Android SDK100.1.0 Offlinemap edit and synch
I am able to download map from ArcGIS Android SDK-100.1.0, but after that how I will edit this map,i.e., add or delete a marker point and after this editing I will need to synch offline edit data to ...
1
vote
0
answers
83
views
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 ...
1
vote
0
answers
43
views
Trying to create a query using ArcGIS android API
I am trying to create a query to take the selected item from a spinner and query it with information from a URL. But anytime I run it, it throws an exception saying my parameters are invalid.
Code:
...
1
vote
2
answers
391
views
File not found exception when using ShapefileFeatureTable with ArcGIS on Android
I'm trying to use ArcGIS to draw some shape file on the map using its ShapefileFeatureTable. But when I try the load the shape file I get a File not found Exception.
This is the code I'm using:
...