Hi Esri Community,
I'm using the ArcGIS Maps SDK for Kotlin (v200.8) with the Composable SceneView from the Toolkit.
The MapView Composable has a grid parameter for displaying coordinate grids, but the SceneView Composable doesn't seem to have this parameter.
// MapView - Has grid parameter ✅
MapView(
grid = if (settings.displayGrid) grid(coordinateSystem) else null
)
// SceneView - No grid parameter :warning:
SceneView(
// grid parameter not available?
)
Questions:
1. Is grid support planned for the SceneView Composable?
2. Is there a workaround to display coordinate grids in SceneView Composable currently?
3. Similarly will the geo editor and location sources be supported in the Composable SceneView?
We need consistent grid display between our 2D/3D views. Any insights appreciated!