The removeMarker method looks like this.
MarkerClusterer.prototype.removeMarker = function(marker, opt_nodraw) {
...
for (var i = 0, m; m = this.markers_[i]; i++) {
if (m == marker) {
index = i;
continue
}
}
...
this is iterating all markers instead breaking the look after the index has
been found. Replace "continue" with "break;"
Original issue reported on code.google.com by elak....@gmail.com on 30 Jul 2010 at 12:02
Original issue reported on code.google.com by
elak....@gmail.com
on 30 Jul 2010 at 12:02