监听polygon变化

Polygons are made of Paths which are just MVCArrays (in this case, they're a list of LatLng objects). MVCArrays have three events: insert_atremove_at, and set_at. We can use those events to detect changes in the points of the Polygon.

There are also drag events for polygonsdragstartdrag, and dragend. It's best to listen for dragend if you want to know that a shape was just dragged.

All together, we can detect any changes to a polygon:

// 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 });

原文:http://stackoverflow.com/questions/20789385/how-can-i-detect-when-an-editable-polygon-is-modified

转载于:https://www.cnblogs.com/qyhol/p/5604304.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值