I have amap with three layers in cartoDB browser and I cant add the layers in my map in android App How can I add aKMZ layers (not base map) in CartoDB browser to Android App using java code to show All layer in App?? Can anyone help me?
The code for add base map
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Register the license so that CARTO online services can be used
MapView.registerLicense(LICENSE,getApplicationContext());
// Get 'mapView' object from the application layout
mapView = (MapView) this.findViewById(R.id.mapView);
// Add basemap layer to mapView
CartoOnlineVectorTileLayer baseLayer = new CartoOnlineVectorTileLayer(CartoBaseMapStyle.CARTO_BASEMAP_STYLE_VOYAGER);
mapView.getLayers().add(baseLayer);
}
My Project is indoor navigation System so I Need the layers in my map in cartoDB to show the level of building in Android App