Wow , its almost nostalgic watching a video from you mitch , welcome back
@lBOSS62 жыл бұрын
I always say the same. It's like remembering when i was a kid 😃
@도둘리-i7k Жыл бұрын
It's the ultimate guide of google map sdk for compose. Without this guide, one would get frustrated. Thank you so much!
@boukarradhmoez992 жыл бұрын
Mitch Thnx for the video , Please we need more videos ur the best
@oguzhanaslan4942 жыл бұрын
Neo is here ! Nice content.
@justoaguiar2514 Жыл бұрын
Can these clusters behave like geofences, on events like entering, dwelling and exiting?
@hussein95772 жыл бұрын
Welcome back mitch
@Relaxwithpeter2548 ай бұрын
Hello, how can i draw those clusters or muitlpolygone in android osm android library
@kbakhal5 Жыл бұрын
@Mitch: Is there is any way to create project KMP using jetpack library rather than jetpack compose. There is no setting while creating project of KMP. It is by default creating project using jetpack compose library. There should be a option to do so while creating project of KMP .
@KIRILLINGUSS212 жыл бұрын
❤❤❤❤ many many love
@dennismozart9512 Жыл бұрын
Whats vars dy, dx, yT, yB, xR and xL from `calculateCameraViewPoints` ? (Like What the D, T, B, R and L stands for on those variable naming conventions? ) Trying to understand the center logic.
@abdulmateench.56182 жыл бұрын
welcome back❤
@shankarpunati9520 Жыл бұрын
can we add 3d markers on to the map(from google maps sdk) ..if so can you make a video about it
@yeasp2 жыл бұрын
Please do video on map box for jetpack compose Lots of love from India bro😍😍🤩🤩🤩🤩
@marcopierucci9333 Жыл бұрын
Great video! But do you have one explaining you initial integration with maps and compose ( Before map compose was released) . I have to integrate a map sdk with similar aspects to maps and it does not have a composable equivalent
@Kazner0h Жыл бұрын
Thank you for this resource, father.
@AjaySingh-fz6wl2 жыл бұрын
Sir i love to learn live with you
@shehabeldinadel8531 Жыл бұрын
Do I have to add my credit card details? Isn't there any other alternatives?
@julianborrego4031 Жыл бұрын
Why do they suggest putting the api key in the local gradle file? Wouldnt this require every dev working on the project to manually add the key?
@meidy379511 ай бұрын
For safety purposes I think, so the reverse engineered apk won't show the actual API key
@kangads6718 Жыл бұрын
How to make geofencing sir?
@steinbeats2 жыл бұрын
For the algorithm 💯
@anasfarhad2845 Жыл бұрын
Hey there Android devs, I do not see map on my screen, can I get a quick response in this regard?
@zakishaikh22232 жыл бұрын
Hey mitch, can you please guide us how to get Android development internships as beginner at big tech companies, thank you
@codingwithmitch2 жыл бұрын
Maybe
@musfickjamil2831 Жыл бұрын
Please do more video Mitch
@EscapeePrisoner Жыл бұрын
I'm so sorry for correcting you here. You keep saying "lat lang". But it's actually lat long. As in Lattitude and Longitude. Those being the names of the navigation variables in use for centuries. May I recommend orienteering as a great way to learn about maps and navigation. No doubt there is a club near you.
@codingwithmitch Жыл бұрын
Whoops. I did know it was latitude and longitude. Not sure why I always said lat lang lol
@calebrowley7295 Жыл бұрын
Thank u legend!
@kemosabi4746 Жыл бұрын
Nice to see you again Mitch :) Seems like you gain weight
@codingwithmitch Жыл бұрын
Working on that dad bod 😉
@victorfernando8119 Жыл бұрын
I Hate it the google job in Android Studio! I'm learning and just make a inferno in my life!
@theharriator Жыл бұрын
is there a way to use maps with android studio without having to pay for it? I want to use it for a university project. If not do you know any free alternatives? Thanks :)
@gaatjeniksaan9485 Жыл бұрын
Maplibre
@jopadjr2 жыл бұрын
23rd...Thanks Mitch
@yonxu Жыл бұрын
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 = 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?