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.
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.
To remove these two buttons, just disable MapToolbar
using:
GoogleMap map = ...;
map.getUiSettings().setMapToolbarEnabled(false);
More information: link