I have my Android App with Google maps, my esri layers and the esri SDK for Android.
Can I show my esri layers on the Google Maps for Android?
What types of 'esri layer' are you trying to add? Google Maps Android API does not support direct Esri data formats, e.g. shapefile, but you can added Google data types to ArcGIS Runtime SDK for Android, below is a sample of added a KML layer:
// Retrieve the map and initial extent from XML layout<BR /> mMapView = (MapView)findViewById(R.id.map);
// Create a new KML Layer<BR /> SpatialReference sr = SpatialReference.create(102100);<BR /> KMLLayer kmlLayer = new KMLLayer(url, sr);
// Add KML Layer to MapView;<BR /> mMapView.addLayer(kmlLayer);
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.