0

I have a SupportMapFragment with a marker in it. By default when I tab on the marker two buttons appear in the right bottom corner: get directions and open map. Is there any way to disable this and prevent them from appearing?

boring91
  • 1,051
  • 12
  • 28
  • 1
    checking the documentation always helps https://developers.google.com/maps/documentation/android/interactivity – tyczj Jul 01 '15 at 14:27
  • possible duplicate of [How to hide "Navigation" and "GPS Pointer" buttons when I click the marker on the android google map](http://stackoverflow.com/questions/30430664/how-to-hide-navigation-and-gps-pointer-buttons-when-i-click-the-marker-on-th) – Daniel Nugent Jul 01 '15 at 14:46

1 Answers1

1

Just do as follows:

GoogleMap mGoogleMap;

Disable Map Toolbar:

mGoogleMap.getUiSettings().setMapToolbarEnabled(false);
bjiang
  • 6,068
  • 2
  • 22
  • 35