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 从多边形中获取区域字符串
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01