maphongba008
maphongba008

Reputation: 2353

Android google map overlay on top

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...? enter image description here

Upvotes: 0

Views: 133

Answers (1)

antonio
antonio

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

Related Questions