Android - Disable MyLocation button on google map

user2745814 picture user2745814 · Dec 28, 2013 · Viewed 9.8k times · Source

I am using latest Google Maps API. My problem goes like this:

I want to remove the MyLocation button (The blue dot/arrow) WITHOUT disabling MyLocation layer.

if I use this code:

googleMap.getUiSettings().setMyLocationButtonEnabled(false);

It doesn't work, unless I add:

googleMap().setMyLocationEnabled(false);

but I want to keep it true. any suggestions?

Answer

Chintan Khetiya picture Chintan Khetiya · Dec 28, 2013

Google Map Doc says You can disable the button from appearing altogether by calling

UiSettings.setMyLocationButtonEnabled(boolean true/false)