I have some TPKX files that I am trying to load them onto Android app
But it seems like for some TPKX, it doesn't display if I simply add them to the an existing map as an operational layer (no error logged or thrown):
ie: map.getOperationalLayers().add(layer)
It would only display if I re-create a new Basemap and set it the the mapView.
ie.:
Basemap bm = new Basemap(layerFromTpkx);
mapView.setMap(new ArcGISMap(bm));
I am guessing if it have anything to do with different spatial references?
Any advice is appreciated, thanks in advance!