I have not tested, but apparently in javaScript you can remove the default map marks using MapTypeStyleFeatureType - link .
What is the related class in the android API?
*** If you can reduce the size of the text it would already be good.
I have not tested, but apparently in javaScript you can remove the default map marks using MapTypeStyleFeatureType - link .
What is the related class in the android API?
*** If you can reduce the size of the text it would already be good.
To remove the bookmarks that are added in Google Place by addMarker , which in this case you would use googleMap.addMarker()
you can do so:
marker.remove()
The addMarker method is:
public final Marker addMarker (MarkerOptions options)
And to clear all the 'scribbles' from the map you just have to call clear()
" as shown below:
map.clear();