Android Google Maps v2 remove default markers

前端 未结 2 782
闹比i
闹比i 2020-12-01 21:52

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

相关标签:
2条回答
  • 2020-12-01 22:21

    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()
    
    0 讨论(0)
  • 2020-12-01 22:22

    You can do it simply by modification of the map style: Adding a Styled Map

    1. Create JSON file src\main\res\raw\map_style.json like this:
    [
      {
        featureType: "poi",
        elementType: "labels",
        stylers: [
          {
            visibility: "off"
          }
        ]
      }
    ]
    
    1. Add map style to your GoogleMap
    googleMap.setMapStyle(MapStyleOptions.loadRawResourceStyle(getContext(), R.raw.map_style));
    
    0 讨论(0)
提交回复
热议问题