vote up 2 vote down star
1

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.

flag

44% accept rate
I found some code at the link below, but holy cow - is that a lot of code to simulate the previous 1 line of code in v2 of the API. lootogo.com/googlemapsapi3/markerPlugin.html/… – mp_ Oct 9 at 16:17
remember that maps 3.0 is meant to be VERY light in order for mobile devices to use it with as little lag as possible... – Frederico Oct 9 at 17:52
Added pros/cons. – Maiku Mori Oct 9 at 18:13

4 Answers

vote up 2 vote down
google.maps.Map.prototype.markers = new Array();

google.maps.Map.prototype.addMarker = function(marker) {
    this.markers[this.markers.length] = marker;
};

google.maps.Map.prototype.getMarkers = function() {
    return this.markers
};

google.maps.Map.prototype.clearMarkers = function() {
    for(var i=0; i<this.markers.length; i++){
    	this.markers[i].set_map(null);
    }
    this.markers = new Array();
};

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.

link|flag
+1 From me. I'd add a wrapper around google.maps.Marker constructor (or setMap method since I think the constructor calls it internally) which calls addMarker automatically, but still nice answer :). – Maiku Mori Oct 9 at 16:56
@Maiku Mari, would you show with code what you'd do different and why. Thanks – mp_ Oct 9 at 17:07
How is this not the solution? You remove markers by using set_map(null) on the particular marker you want to clear, if you want to clear all then loop through using this function. If you want something more request it here: code.google.com/p/gmaps-api-issues/… – Frederico Oct 9 at 17:50
I believe it came from here lootogo.com/googlemapsapi3/markerPlugin.html/… – Maiku Mori Oct 9 at 18:22
vote up 1 vote down

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:

google.maps.Map.prototype.markers = new Array();

google.maps.Map.prototype.getMarkers = function() {
    return this.markers
};

google.maps.Map.prototype.clearMarkers = function() {
    for(var i=0; i<this.markers.length; i++){
        this.markers[i].set_map(null);
    }
    this.markers = new Array();
};

google.maps.Marker.prototype._setMap = google.maps.Marker.prototype.setMap;

google.maps.Marker.prototype.setMap = function(map) {
    if (map) {
        map.markers[map.markers.length] = this;
    }
    this._setMap(map);
}

The code is edited version of this code http://www.lootogo.com/googlemapsapi3/markerPlugin.html I removed the need to call addMarker manually.

Pros

  • Doing this way you keep the code compact and in one place (doesn't pollute the namespace).
  • You don't have to keep track of the markers yourself anymore you can always find all the markers on the map by calling map.getMarkers()

Cons

  • Using prototypes and wrappers like I did now makes my code dependent on Google code, if they make a mayor change in their source this will break.
  • If you don't understand it then you won't be able to fix it if does break. The chances are low that they're going to change anything which will break this, but still..
  • If you remove one marker manually, it's reference will still be in markers array. (You could edit my setMap method to fix it, but at the cost of looping trough markers array and removing the reference)
link|flag
+1 From me. But your answer would be better if you included the wrapper to call addMarker automatically! – Andrew Oct 9 at 17:07
I assume you're referring to Andrews answer actually. Would you show with code what you'd do different and why. Thanks – mp_ Oct 9 at 17:10
Coming right up in a sec =) – Maiku Mori Oct 9 at 17:16
Thanks Maiku, looking forward to seeing your awesome :) – mp_ Oct 9 at 17:32
Meh sorry for delay, I was holding back from posting code because I had no way to quickly test it. – Maiku Mori Oct 9 at 17:43
show 1 more comment
vote up 1 vote down

The "set_map" function posted in both answers appears to no longer work in Google Maps v3 API.

I wonder what happened

Update:

It appears Google changed their API such that "set_map" is not "setMap".

http://code.google.com/apis/maps/documentation/v3/reference.html

link|flag
vote up 0 vote down

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(); };

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.