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
You can do it simply by modification of the map style: Adding a Styled Map
[
{
featureType: "poi",
elementType: "labels",
stylers: [
{
visibility: "off"
}
]
}
]
GoogleMapgoogleMap.setMapStyle(MapStyleOptions.loadRawResourceStyle(getContext(), R.raw.map_style));