Companion

Functions

Link copied to clipboard
@Composable
fun Above(layerId: String, block: @Composable () -> Unit)

The layers specified in block are put above the layer (i.e. in front of it) with the given layerId from the base map style.

Link copied to clipboard
@Composable
fun At(anchor: Anchor, block: @Composable () -> Unit)

The layers specified in block are put at the given Anchor.

Link copied to clipboard
@Composable
fun Below(layerId: String, block: @Composable () -> Unit)

The layers specified in block are put below the layer (i.e. behind it) with the given layerId from the base map style.

Link copied to clipboard
@Composable
fun Bottom(block: @Composable () -> Unit)

The layers specified in block are put at the bottom, i.e. behind of all other layers.

Link copied to clipboard
@Composable
fun Replace(layerId: String, block: @Composable () -> Unit)

The layers specified in block replace the layer (i.e. are shown instead of it) with the given layerId from the base map style.

Link copied to clipboard
@Composable
fun Top(block: @Composable () -> Unit)

The layers specified in block are put at the top, i.e. in front of all other layers.