7

I have drawn path with marker in google map. So the path is static but marker needs to change their positions. How can I remove all markers without using mapview.clear(), because it will clear my path also from the map.

Any solution?

Nikhil Manapure
  • 3,748
  • 2
  • 30
  • 55
Rushi trivedi
  • 737
  • 1
  • 15
  • 37

1 Answers1

6

I guess you will have to keep all markers in an array(eg. allMarkers). Then,

for marker in allMarkers {
    marker.map  = nil
}
Nikhil Manapure
  • 3,748
  • 2
  • 30
  • 55