I have some polygons on a map and when the user double clicks on them, I want no zoom to occur. However, I want double click zoom to be enabled on other parts of the map. Is the
Observe the dblclick-event of the polygon(s) and call the stop()-method of the event when it occurs:
google.maps.event.addListener(polygonObject,'dblclick',function(e){e.stop();})