我正在尝试使用绘图工具在 google map api v3 上绘制一个矩形。我希望用户能够:
- 形状完成后获取矩形边界。
- 拖动或重新获取矩形时更新边界。
(1)工作正常,但我需要一些帮助(2)。这是我用于 (1) 的代码:
//----------on rectangle complete event
google.maps.event.addDomListener(drawingManager, 'rectanglecomplete', function(rectangle) {
//get the rectangle bounds
document.getElementById("savedata").value =rectangle.getBounds();
//hide draw tool
drawingManager.setOptions({
drawingControl: false
});
//disable draw tool
drawingManager.setDrawingMode(null);
});