I have very simple ArcGIS Maps 200.0.0 Qt Quick QML app examples to display a map and a scene with the same basemap, here are the corresponding code snippets:
Map case:
MapView {
anchors.fill: parent
Map {
initBasemapStyle: Enums.BasemapStyleArcGISLightGray
}
}
Scene case:
SceneView {
anchors.fill: parent
Component.onCompleted: {
setViewpointCameraAndWait(camera);
}
Scene {
Basemap {
initStyle: Enums.BasemapStyleArcGISLightGray
}
}
}
Country borders can be seen in the Map example. In the case of using a Scene, country borders are not displayed at any zoom level. Did not work with any basemap that I tried. Is this expected behavior or a bug? What is the correct way to display country borders in 3D scenes?
Running on Linux but also observed for iOS. Qt version is 6.2.8.