Local Scene View
A user interface control that displays geographic content defined by a local ArcGISScene. A local scene view is a user interface that displays layers and graphics. It controls the area of the local scene that is visible and supports user interactions such as pan and zoom. The local scene view also provides access to the underlying layer data in a local scene.
To display a local scene, add this view to the composition and pass a local ArcGISScene to it via the scene parameter. This loads the scene and its content, such as a Basemap and a collection of operational layers, and displays this content on screen.
User interactions such as pan, zoom, rotate, and identify or selection are supported in the LocalSceneView using touch interaction.
The visible area (Viewpoint) of the local scene view is defined by the visible extent of the scene. To determine the current visible area or the center point and scale of the view, make sure that any user-initiated or programmatic navigation is complete before getting the current Viewpoint by listening to the onNavigationChanged callback.
You can programmatically set the visible area by specifying a viewpoint. For example, GeoViewProxy.setViewpoint sets the visible area to the extent of a provided geometry, and LocalSceneViewProxy.setViewpointCamera centers the local scene view at a given point. Any geometries passed to these methods are automatically projected to match the SpatialReference of the scene, if required.
FloorAware is not yet supported in the local scene view, and any layer FloorAware configurations will not be honored.
In an MVC architecture, the local scene view represents the View tier. The Model tier is represented by the ArcGISScene object which can provide a collection of operational layers and a Basemap. You can only set one local scene per local scene view, but you can replace the scene with another when the application is running.
Since
300.0.0
Parameters
the ArcGISScene to be rendered by this composable LocalSceneView
modifier to be applied to the composable LocalSceneView
the LocalSceneViewProxy to associate with the composable LocalSceneView
lambda invoked when the viewpoint changes, passing a viewpoint type of ViewpointType.CenterAndScale
lambda invoked when the viewpoint changes, passing a viewpoint type of ViewpointType.BoundingGeometry
the LocalSceneViewInteractionOptions used by this composable LocalSceneView
the SelectionProperties used by the composable LocalSceneView
true if attribution bar is visible in the composable LocalSceneView, false otherwise
lambda invoked when the attribution text of the composable LocalSceneView has changed
lambda invoked when the attribution bar's position or size changes
lambda invoked when the navigation status of the composable LocalSceneView has changed
lambda invoked when the spatial reference of the composable LocalSceneView has changed
lambda invoked when the composable LocalSceneView's layer view state is changed
lambda invoked when the user starts and ends interacting with the composable LocalSceneView
lambda invoked when the viewpoint camera of the composable LocalSceneView has changed
lambda invoked when a user performs a rotation gesture on the composable LocalSceneView
lambda invoked when a user performs a pinch gesture on the composable LocalSceneView
lambda invoked when the user removes all their pointers from the composable LocalSceneView
lambda invoked when the user first presses on the composable LocalSceneView
lambda invoked when the user taps once on the composable LocalSceneView
lambda invoked the user double taps on the composable LocalSceneView
lambda invoked when a user holds a pointer on the composable LocalSceneView
lambda invoked when a user taps two pointers on the composable LocalSceneView
lambda invoked when a user drags a pointer or pointers across composable LocalSceneView
lambda invoked when a user performs a pinch or double-tap-drag gesture on the composable LocalSceneView
lambda invoked when the draw status of the composable LocalSceneView changes
pass true if the LocalSceneView should receive focus. Note that specifying a modifier property Modifier.focusProperties { canFocus = true/false } on the LocalSceneView composable has no effect.
lambda invoked when the GeoModel error state of the composable LocalSceneView changes
lambda invoked when the critical error state of the composable LocalSceneView changes
lambda invoked when the warning status of the composable LocalSceneView is changed
the content of the composable LocalSceneView