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.
|
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. |
|||||||||||||||||
|
|
Simply do the following: I. Declare a global variable:
II. Define a function:
OR
III. Push markers in the 'markerArray' before calling the following:
IV. Call the That's it!! |
|||||||||||||||||||
|
|
Same problem. This code doesn't work anymore. I've corrected it, change clearMarkers method this way: set_map(null) ---> setMap(null)
Documentation has been updated to include details on the topic: http://code.google.com/apis/maps/documentation/javascript/overlays.html#RemovingOverlays |
|||||||||||||||||
|
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
|
|||||||||||
|
|
On the new version v3, They recommended to keep in arrays. as following. See sample at overlay-overview.
|
|||
|
|
|
Google's Demo Gallery has a demo on how they do it: http://code.google.com/apis/maps/documentation/javascript/examples/overlay-remove.html You can view the source code to see how they add markers. Long story short, they keep the markers in a global array. When clearing/deleting them, they loop through the array and call ".setMap(null)" on the given marker object. However, this example shows one 'trick'. "Clear" for this example means removing them from the map but keeping them in the array, which allows the application to quickly re-add them to the map. In a sense, this acts like "hiding" them. "Delete" clears the array as well. |
|||
|
|
is only working on IE.
working on chrome, firefox, ie... |
|||||
|
|
The " I wonder what happened Update: It appears Google changed their API such that " http://code.google.com/apis/maps/documentation/v3/reference.html |
||||
|
|
|
The following from Anon works perfectly, although with flickers when repeatedly clearing the overlays. Simply do the following: I. Declare a global variable:
II. Define a function:
III. Push markers in the 'markerArray' before calling the following:
IV. Call the That's it!! Hope that will help you. |
||||
|
|
I found using markermanager library in the google-maps-utility-library-v3 project as the easiest way. 1. Set up the MarkerManager
2. Add markers to the MarkerManager
3. To clear markers you just need to call the MarkerManger's
|
|||
|
|
I have just tried this with kmlLayer.setMap(null) and it worked. Not sure if that would work with regular markers but appears to work correctly. |
|||
|
|
|
To clear of all the overlays including polys, markers, etc... simply use:
Here is a function that I wrote to do it form me on a map application:
|
||||
|
|
|
You can do it this way too:
|
|||
|
|
|
if you use the gmap V3 plugin:
see: http://www.smashinglabs.pl/gmap/documentation#after-load |
|||
|
|
|
This is an easy solution: http://apitricks.blogspot.com/2010/02/clearoverlays-in-v3.html |
|||
|
|