Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
object CompassComposableDefaults
Link copied to clipboard
Link copied to clipboard
object IndoorComposableDefaults
Link copied to clipboard
data class MyLocationComposableColors(val iconFollowModeOnColor: Color, val iconFollowModeOffColor: Color, val iconMyLocationDisabledColor: Color, val backgroundColor: Color)
Link copied to clipboard
object MyLocationComposableDefaults
Link copied to clipboard
data class TrafficColors(val backgroundColor: Color, val scoreTextColorIfTrafficEnabled: Color, val scoreTextColorIfTrafficDisabled: Color, val noScoreIconColorIfTrafficEnabled: Color, val noScoreIconColorIfTrafficDisabled: Color, val spinnerColorIfTrafficLoading: Color, val lowTrafficScoreColor: Color, val mediumTrafficScoreColor: Color, val highTrafficScoreColor: Color)
Link copied to clipboard
object TrafficComposableDefaults
Link copied to clipboard
data class ZoomComposableColors(val iconColor: Color, val iconZoomDisabledColor: Color, val backgroundColor: Color)
Link copied to clipboard
object ZoomComposableDefaults
Functions
Link copied to clipboard
fun CompassComposable(map: Map, colors: CompassComposableColors = CompassComposableDefaults.colors())
A composable that displays a compass indicating the map's current bearing. The compass is hidden when the bearing is zero (aligned with true north) and shown otherwise.
Link copied to clipboard
fun CustomBottomSheet(scaffoldState: BottomSheetScaffoldState, offsetChanged: (Float) -> Unit, sheetPeekHeight: Dp, fadeColor: Color, sheetContent: @Composable () -> Unit)
Customizes the standard BottomSheetScaffold by modifying how the sheet's offset is calculated.
Link copied to clipboard
fun IndoorComposable(map: Map, markedLevels: Set<LevelId> = setOf(), colors: IndoorComposableColors = IndoorComposableDefaults.colors())
A composable that displays floors of a building in a vertically oriented manner. Shows a maximum of 5 floors at a time. If there are more floors, scrolling is enabled.
Link copied to clipboard
fun MyLocationComposable(map: Map, colors: MyLocationComposableColors = MyLocationComposableDefaults.colors())
A composable to control follow mode.
Link copied to clipboard
A composable that displays the traffic score and allows users to toggle the visibility of traffic on the map. The color of this control changes based on the traffic score, by default colors are:
Link copied to clipboard
A composable to control the zoom level of a map.