Android Google Maps v2 remove default markers

前端 未结 2 805
闹比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()
    

提交回复
热议问题