How to get the area string from a polygon using leaflet.draw(如何使用 Leaflet.draw 从多边形中获取区域字符串)
问题描述
我正在尝试获取多边形的面积测量值,以便可以将它们列在地图一侧的表格中,靠近多边形的名称.这是我尝试过但没有成功的方法:
I am trying to get the area measurements of polygons so I can list them in a table to the side of the map, next to the name of the polygon. This is what I have tried with no success:
$("#polygon").on("click", function (){
createPolygon = new L.Draw.Polygon(map, drawControl.options.polygon);
createPolygon.enable();
}
var polygon = new L.featureGroup();
map.on('draw:created', function (e) {
var type = e.layerType,
layer = e.layer;
if (type === 'polygon') {
polygons.addLayer(layer);
}
var seeArea = createPolygon._getMeasurementString();
console.log(seeArea); //Returns null
}
对此的任何帮助将不胜感激!
Any help on this would be appreciated!
推荐答案
您可以访问 Leaflet 提供的几何实用程序库.
You can access the geometry utility library provided with Leaflet.
var area = L.GeometryUtil.geodesicArea(layer.getLatLngs());
在您的示例中,您尝试访问控件本身,这是变量 createPolygon 分配给的内容.相反,您想要获取已绘制图层的区域.
In your example, you are trying to access a control itself, which is what the variable createPolygon is assigned to. Instead, you want to take the area of the layer that got drawn.
map.on('draw:created', function (e) {
var type = e.layerType,
layer = e.layer;
if (type === 'polygon') {
polygons.addLayer(layer);
var seeArea = L.GeometryUtil.geodesicArea(layer.getLatLngs());
console.log(seeArea);
}
}
确认您获得了该区域后,您只需将其分配给填充地图旁边表格的变量即可.
Once you verify you are getting the area, you can just assign it to the variables that populate the table next to the map.
注意:面积默认为平方米
Note: area will be in squareMeters by default
这篇关于如何使用 Leaflet.draw 从多边形中获取区域字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 Leaflet.draw 从多边形中获取区域字符串


基础教程推荐
- 如何在特定日期之前获取消息? 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01