How can I have this marker that blue in my application?

2

I wonder how to implement this marker in my app?

    
asked by anonymous 16.10.2015 / 18:07

1 answer

5

Once you get a reference to the map, use the setMyLocationEnabled.

mGoogleMap.setMyLocationEnabled(true);

You should declare the following permissions in AndroidManifest.xml:

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    
16.10.2015 / 19:26