Skip to content Skip to sidebar Skip to footer

How To Show Current Location Of User While Open My App

I want to make an app, when user open my app user will get their current location in my app and while user change their location it will also update after some specific time. I got

Solution 1:

googleMap.setMyLocationEnabled(true);
LocationmyLocation= googleMap.getMyLocation();

These are the the key lines to get current location.

for more info ,refer these tutorials: android show current location on map using google maps api

and how to get current location in google map android

Post a Comment for "How To Show Current Location Of User While Open My App"