2
After obtaining a map reference use the method setMyLocationEnabled.
mGoogleMap.setMyLocationEnabled(true);
You should declare the following permissions on Androidmanifest.xml:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
Thank you very much solved my problem
– Gabriel Manuel