Remove default map marks on android

0

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.

    
asked by anonymous 22.08.2016 / 22:13

1 answer

0

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();
    
22.08.2016 / 22:22