Created
June 18, 2023 07:38
-
-
Save oussama-dz/e3b39adbef3aca33481944a1092e38c9 to your computer and use it in GitHub Desktop.
The usage of the MapBoxMap composable.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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