The ArcGIS Runtime SDK for Android is a mobile mapping API for Android devices from Esri.

learn more… | top users | synonyms

0
votes
1answer
31 views

Esri Android Basemap with kml

I created a kml using the kmllayer. When I set the map with a basemap and use the addLayer() method the kml is not shown. I can see the kml layer without a basemap. Can someone post sample code on ...
0
votes
1answer
23 views

How to show .shp file on Mapview(ArcGIS Android SDK 2.0.0)

I'm using ArcGIS Android SDK for first time. I have worked on a sample project and am able to get a World map using this.. map = (MapView) findViewById(R.id.map); map.addLayer(new ...
1
vote
2answers
54 views

How to use Advanced Symbology in ArcGIS for Android?

I try to use the advanced symbology in order to draw nato symbols in JAVA I need little help about it, What the parameters _WKID mean like in this command : lmessage.setProperty("_WKID", "3857"); ...
1
vote
0answers
42 views

ArcGIS Online Map using URL does not work with PhoneGap

I wanted to show my public accessible ArcGIS Online map with URL on a simple Hello World PhoneGap project with Eclipse. Eclipse threw out the following error in LogCat. Web Console:RequestError: ...
1
vote
1answer
138 views

Tracking field personnal using android app and showing in ArcGISonline

Planning to equip field personnel with GPS enabled phones (android) and collect the location and photograph of assets. Can we use ArcGIS for android in the phone, use this to upload GPS and photos , ...
1
vote
1answer
138 views

The coordinates measure are out of bounds in Android route task

I am a beginner in ArcGIS and I was following this tutorial. I am trying to find a route between two points. I created a sample application, in which first, i get the two points on map single tap as ...
3
votes
1answer
112 views

What are the requirements for developing with ArcGIS for Android?

I want to develop a GIS application based on the ArcGIS for Android SDK. I want to inform my client about the hardware and software he needs to run this project after building it. Please help me if ...
1
vote
1answer
184 views

ESRI android SDK Calculate area in square meters from polygon geometry

Hello I have a Polygon object in ESRI Android SDK that I'm creating on a map, I would like to calculate that polygon object to square meters. currently I use double area=polygon.calculateArea2D(); ...
2
votes
1answer
161 views

Convert distance in ESRI Android SDK

Hello I have a Polyline that I draw on the map and I would like to get its distance in meters. right now it's not working, basically what I have is distanceSeg=new Polyline(); double ...
0
votes
1answer
270 views

How to query Fusion Tables to produce a feature layer with the ArcGIS Android SDK?

I am hoping to find an example of how one can hook into Fusion Tables with the ArcGIS Android SDK. The Fusion Tables API uses HTTP GET requests to query and retrieve data from a table. Shown here: ...