IndoorNavigationScene

fun IndoorNavigationScene(mapBuild: MapBuild? = null, mapTheme: MapThemeColors? = null, uiHandler: UiLayoutHandler? = UiLayoutHandler(mapBuild = mapBuild), cameraConfiguration: CameraConfiguration = CameraConfiguration( is2D = uiHandler?.is2D?.value ?: true ))

Ui component of the Indoor Navigation Engine library. It is responsible for rendering the 3D scene and the navigation, built on top of the SceneView and Filament libraries and compatible with Jetpack Compose.

Parameters

mapBuild

the map build object that contains the map data (default is null) takes a MapBuild object

mapTheme

the theme of the map (default is MapColors()) takes a MapColors object

cameraConfiguration

the configuration of the camera (default is CameraConfiguration()) takes a CameraConfiguration object

uiHandler

the UI handler that contains the UI operations (default is UiLayoutHandler())

Docs: IndoorNavigation Scene Docs