Reputation: 2353
I added an overlay image to google map, but the image not above the map, I can still see the street name, icon ... How can I make the overlay over the map or remove street name, icon...?
Upvotes: 0
Views: 133
Reputation: 18242
You can style your map to hide labels:
googleMap.setMapStyle(
MapStyleOptions.loadRawResourceStyle(
this, R.raw.style_json));
style_json.json
[
{
"elementType": "labels",
"stylers": [
{
"visibility": "off"
}
]
}
]
Upvotes: 2