gpt4 book ai didi

javascript - 如何检测可编辑多边形何时被修改?

转载 作者:可可西里 更新时间:2023-11-01 02:30:11 24 4
gpt4 key购买 nike

如何检测可编辑多边形何时被修改(移动点、添加点、删除点)或拖动? Google Maps API 文档仅列出鼠标 events for Polygons .

最佳答案

Polygons由路径组成,这些路径只是 MVCArrays (在这种情况下,它们是 LatLng 对象的列表)。 MVCArrays 有三个事件:insert_atremove_atset_at。我们可以使用这些事件来检测多边形点的变化。

还有drag events for polygons :dragstartdragdragend。如果您想知道刚刚拖动了一个形状,最好听取 dragend

总而言之,我们可以检测多边形的任何变化:

// Loop through all paths in the polygon and add listeners
// to them. If we just used `getPath()` then we wouldn't
// detect all changes to shapes like donuts.
polygon.getPaths().forEach(function(path, index){

google.maps.event.addListener(path, 'insert_at', function(){
// New point
});

google.maps.event.addListener(path, 'remove_at', function(){
// Point was removed
});

google.maps.event.addListener(path, 'set_at', function(){
// Point was moved
});

});

google.maps.event.addListener(polygon, 'dragend', function(){
// Polygon was dragged
});

关于javascript - 如何检测可编辑多边形何时被修改?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20789385/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com