我正在使用Mapbox和Leaflet進行地圖工作,我應該讓用戶繪製多邊形並計算並顯示該多邊形的幾何圖形,並且還需要讓用戶繪製多段線並顯示多段線的距離。如何計算Leaflet中多段線的距離,例如geojson.io?
我已經想出了多邊形區域的功能,但我無法弄清楚如何計算多段線的距離。
我的代碼如下:
loadScript('https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-draw/v0.2.2/leaflet.draw.js', function(){
loadScript('https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-geodesy/v0.1.0/leaflet-geodesy.js', function(){
var featureGroup = L.featureGroup().addTo(map);
var drawControl = new L.Control.Draw({
edit: {
featureGroup: featureGroup
},
draw: {
polygon: true,
polyline: true,
rectangle: false,
circle: false,
marker: false
}
}).addTo(map);
map.on('draw:created', showPolygonArea);
map.on('draw:edited', showPolygonAreaEdited);
function showPolygonAreaEdited(e) {
e.layers.eachLayer(function(layer) {
showPolygonArea({ layer: layer });
});
}
function showPolygonArea(e) {
var type = e.layerType,
layer = e.layer;
if (type === 'polygon') {
featureGroup.clearLayers();
featureGroup.addLayer(e.layer);
e.layer.bindPopup(((LGeo.area(e.layer)/1000000) * 0.62137).toFixed(2) + ' mi<sup>2</sup>');
e.layer.openPopup();
}
if (type === 'polyline') {
featureGroup.clearLayers();
featureGroup.addLayer(e.layer);
// What do I do different here to calculate the distance of the polyline?
// Is there a method in the LGeo lib itself?
// e.layer.bindPopup(((LGeo.area(e.layer)/1000000) * 0.62137).toFixed(2) + ' mi<sup>2</sup>');
e.layer.openPopup();
}
}
});
});
有沒有在LGeo LIB本身的方法,這將幫我算算折線的距離是多少?在geogson.io的開發者也可以計算距離,但我似乎無法弄清楚他們的代碼。我不是一個經驗豐富的Javascript開發人員。歡迎任何幫助。 :)
布拉沃,完美的解決方案!如何計算圈的面積?我如何獲得圓的半徑(創建或編輯)? – serifsadi