How to remove standard Google Maps v2 options

0

Personal I have a question, I'm creating an application that uses Google Maps V2, can you REMOVE these default Map options? This happens when I click the bookmark and these two default options automatically pop up.

    
asked by anonymous 15.03.2015 / 17:25

1 answer

1

To remove these two buttons, just disable MapToolbar using:

GoogleMap map = ...;
map.getUiSettings().setMapToolbarEnabled(false);

More information: link

    
16.03.2015 / 00:59