Skip to content

Instantly share code, notes, and snippets.

@oussama-dz
Created June 18, 2023 07:38
Show Gist options
  • Save oussama-dz/e3b39adbef3aca33481944a1092e38c9 to your computer and use it in GitHub Desktop.
Save oussama-dz/e3b39adbef3aca33481944a1092e38c9 to your computer and use it in GitHub Desktop.
The usage of the MapBoxMap composable.
@Composable
fun MapScreen() {
Column(
modifier = Modifier.fillMaxSize(),
) {
MapBoxMap(
point = Point.fromLngLat(-0.6333, 35.6971),
modifier = Modifier
.fillMaxSize()
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment