I implemented Android Google Maps v2 in my Android app without any problem.
However, the map includes some \"default markers\" that I haven\'t included.
I me
Markers you mean to say google places , If yes then we cant.
to remove markers that are added by
googleMap.addMarker()
method that can be remove by
marker.remove()
or by clearing marker
googleMap.clear()
You can do it simply by modification of the map style: Adding a Styled Map
[
{
featureType: "poi",
elementType: "labels",
stylers: [
{
visibility: "off"
}
]
}
]
GoogleMap
googleMap.setMapStyle(MapStyleOptions.loadRawResourceStyle(getContext(), R.raw.map_style));