我有一个可编辑的多边形,我想在拖动顶点时收听事件(多边形调整大小)。通常将路径附加到“set_at”事件是好的,但是当整个多边形被拖动时它会触发很多事件。
google.maps.event.addListener(polygon, 'dragend', function(){search();});
google.maps.event.addListener(polygon.getPath(), 'insert_at', function(e, e1){search();});
google.maps.event.addListener(polygon.getPath(), 'remove_at', function(e, e1){search();});
//this also fires a lot of events when ploygon is dragged
google.maps.event.addListener(polygon.getPath(), 'set_at', function(){search();});
我想要实现的是有一个类似于“shape_changed”的事件,它在拖动时不会触发事件。