I have created a ArcGISTiledLayer that loads a TPKX file. In 2D the tiled layer can be displayed, however in 3D it doesn't display at all.
Any idea on troubleshooting this issue?
// 3D loading the tile package
TileCache tileCache = new TileCache(file.getAbsolutePath());
ArcGISTiledLayer tiledLayer = new ArcGISTiledLayer(tileCache);
// ... after tiledLayer is loaded successfully - create the scene from the tile layer
sceneView.setScene(new ArcGISScene(new Basemap(tiledLayer)));
Thanks in advance