Mapbox Standard Style
fun MapboxStandardStyle(topSlot: @Composable () -> Unit? = null, middleSlot: @Composable () -> Unit? = null, bottomSlot: @Composable () -> Unit? = null, lightPreset: LightPreset = LightPreset.default, projection: Projection = Projection.default, atmosphereState: AtmosphereState = AtmosphereState.default)
The convenient composable function to set a Mapbox Standard style to the map, with available slots and config options.
Parameters
top Slot
The content to be set to the top slot of the Mapbox Standard style.
middle Slot
The content to be set to the middle slot of the Mapbox Standard style.
bottom Slot
The content to be set to the bottom slot of the Mapbox Standard style.
light Preset
The LightPreset settings of the Mapbox Standard Style, available lightPresets including "day", "night", "dawn", "dusk".
projection
The projection to be set to the map. Defaults to Projection.default meaning that projection value is taken from the style definition.
atmosphere State
The atmosphere to be set to the map. Defaults to AtmosphereState.default meaning that atmosphere is the default defined in style definition.