知道如何在MapBox / Leaflet.js中获取图层中圆周形状的长度吗?我设法使用this example来获取该区域(即使它有时是负面的!?)。它没有周长/周长。
谢谢!
答案 0 :(得分:1)
对于L.Circle
,您可以从它的半径计算周长:
L.Circle.include({
circumference: function () {
return 2 * Math.PI * this.getRadius();
}
});
var circle = new L.Circle(...),
circumference = circle.circumference();
对于L.Polyline
,您需要对L.LatLng
个对象之间的距离求和:
L.Polyline.include({
length: function () {
var latlngs = this.getLatLngs();
var length = 0;
for (var i = 0, n = latlngs.length - 1; i< n; i++) {
length += latlngs[i].distanceTo(latlngs[i+1]);
}
return length;
}
});
var polyline = new L.Polyline(...),
length = polyline.length();
对于从L.Polygon
扩展的L.Polyline
,您调用L.Polyline
的长度函数并添加第一个和最后L.LatLng
个对象之间的距离:
L.Polygon.include({
circumference: function () {
var length = L.Polyline.prototype.length.call(this);
var latlngs = this.getLatLngs();
if (latlngs.length > 2) {
length += latlngs[0].distanceTo(latlngs[latlngs.length - 1]);
}
return length;
}
});
var polygon = new L.Polygon(...),
circumference = polygon.circumference();
答案 1 :(得分:0)
感谢您的回答和评论。如@ghybs所建议的那样,turf.js似乎是要走的路。它仍然需要对任何不是LineString的东西进行编码,但至少算法是有效的。