In Google Maps API v2, I was using map.clearOverlays() to remove the marker and draw them again.
map.clearOverlays()
How can I do that using Google Maps API v3 ?
Th
I found another solution and it works very good it will remove all overlays that exist on the map
gmap.overlayMapTypes.setAt( 0, null);
while gmap is your map object