Google Maps | Jetpack Compose | Tutorial | 2023

preview_player
Показать описание
🚀 Explore Jetpack Compose & Google Maps! 🗺️
Learn custom markers, map types, polylines, and polygons in this Android dev adventure.
Join me now! 📱🎨🧭
Subscribe for more! 🚀📺

Рекомендации по теме
Комментарии
Автор

Good tutorial brother. Keep it up. Also make videos on Jetpack Compose Architecture and MVVM.

fatiqhussnain
Автор

Hi, thanks for the video. I have learnt a lot. I have a question. Could you advise how to get a snapshot (image) of a location?
I tried to do something like this but for some reason the image is not showing.
```
val mapBitmap: MutableState<Bitmap?> = remember { mutableStateOf(null) }
...
if (mapBitmap.value != null) {
Image(
bitmap = mapBitmap.value!!.asImageBitmap(),
contentDescription = "Map snapshot",
)
}
...
// get snapshot bitmap
GoogleMap {
MapEffect { map ->
map.snapshot { snapshot ->
// Got snapshot here
mapBitmap.value = it
}
}
}
...
```
Any ideas?

yonxu
Автор

It was a great watch, Sohail.
Can we not by pass the billing process while generating the API KEY. Any transaction on Indian cards seem to be blocked or they get declined 😮‍💨

abiii
Автор

Thanks for vedio, it help me a lot ... but got a runtime error that Failed to get service form broker, unknown package name 'com.google.android.gms' ....any comments for that?

DevEmpire