In Google Maps API v2, if I wanted to remove all the map markers, I could simply do:
map.clearOverlays();
How do I do this in Google Maps API v3?
Looking at the Reference API, it's unclear to me.
|
1
|
In Google Maps API v2, if I wanted to remove all the map markers, I could simply do:
How do I do this in Google Maps API v3? Looking at the Reference API, it's unclear to me.
|
||||||
|
|
|
I don't think there is one in V3 so I used the above custom implementation. Disclaimer: I did not write this code but I forgot to retain a reference when I merged it into my codebase so I don't know where it came from. |
||||||||
|
|
|
It seems that there is no such function in V3 yet. People suggest to keep references to all markers you have on the map in an array. And then when you want to delete em all, just loop trough the array and call .setMap(null) method on each of the references. See this question for more info/code. My version:
The code is edited version of this code http://www.lootogo.com/googlemapsapi3/markerPlugin.html I removed the need to call addMarker manually. Pros
Cons
|
||||||||||
|
|
|
The " I wonder what happened Update: It appears Google changed their API such that " http://code.google.com/apis/maps/documentation/v3/reference.html |
|||
|
|
|
|
Same problem. This code doesn't work anymore. I've corrected it, change clearMarkers method this way: set_map(null) ---> setMap(null) google.maps.Map.prototype.clearMarkers = function() { for(var i=0; i < this.markers.length; i++){ this.markers[i].setMap(null); } this.markers = new Array(); }; |
|||
|
|