使用OpenLayers 3,如何确定球形墨卡托(SRID:3857)投影中两点之间的距离?
我知道OpenLayers 2中使用了distanceTo
point1.distanceTo(point2)
我浏览了OpenLayers 3 docs,但我找不到类似的东西......
答案 0 :(得分:17)
您可以使用Sphere对象计算两个坐标之间的距离,如下所示:
var distance = ol.sphere.WGS84.haversineDistance([0,0],[180,0]);
//20037508.34 meters
Sphere还提供各种算法来计算距离,如余弦,equirectangular等。 您还可以创建半径为不同椭球的Sphere对象。
我不知道为什么文档不在线,但您可以检查球体对象源代码中可用的方法:https://github.com/openlayers/ol3/blob/master/src/ol/sphere.js
我个人认为查看源代码是查找OpenLayers3答案的最佳方法;)
答案 1 :(得分:5)
我正在使用一个相当简单的解决方案。我在两点之间设置ol.geom.LineString对象并计算线的长度:
this.distanceBetweenPoints = function(latlng1, latlng2){
var line = new ol.geom.LineString([latlng1, latlng2]);
return Math.round(line.getLength() * 100) / 100;
};
然后,您可以使用某种格式化获取可读值:
this.formatDistance = function(length) {
if (length >= 1000) {
length = (Math.round(length / 1000 * 100) / 100) +
' ' + 'km';
} else {
length = Math.round(length) +
' ' + 'm';
}
return length;
}
编辑:计算的新方法
Actualy,关于您使用的投影距离可能是假的。 我们在ol3的github上进行了相当长的讨论,你可以在那里看到它: https://github.com/openlayers/ol3/issues/3533
总而言之,您需要使用该函数才能获得精确的计算结果:
/**
* format length output
* @param {ol.geom.LineString} line
* @return {string}
*/
export default function mapFormatLength(projection, line) {
var length;
var coordinates = line.getCoordinates();
length = 0;
for (var i = 0, ii = coordinates.length - 1; i < ii; ++i) {
var c1 = ol.proj.transform(coordinates[i], projection, 'EPSG:4326');
var c2 = ol.proj.transform(coordinates[i + 1], projection, 'EPSG:4326');
length += mapConst.wgs84Sphere.haversineDistance(c1, c2);
}
var output;
if (length > 1000) {
output = (Math.round(length / 1000 * 100) / 100) +
' ' + 'km';
} else {
output = (Math.round(length * 100) / 100) +
' ' + 'm';
}
return output;
}
答案 2 :(得分:2)
只是添加一个选项。这不依赖于ol3。
function toRad(x) {return x * Math.PI / 180;}
function SphericalCosinus(lat1, lon1, lat2, lon2) {
var R = 6371; // km
var dLon = toRad(lon2 - lon1),
lat1 = toRad(lat1),
lat2 = toRad(lat2),
d = Math.acos(Math.sin(lat1)*Math.sin(lat2) + Math.cos(lat1)*Math.cos(lat2) * Math.cos(dLon)) * R;
return d;
}
答案 3 :(得分:1)
我为自己写了这篇文章我跳了它会很有用,它会在metters中返回距离:
function getCoordsDistance(firstPoint, secondPoint, projection) {
projection = projection || 'EPSG:4326';
length = 0;
var sourceProj = mapObj.getView().getProjection();
var c1 = ol.proj.transform(firstPoint, sourceProj, projection);
var c2 = ol.proj.transform(secondPoint, sourceProj, projection);
var wgs84Sphere = new ol.Sphere(6378137);
length += wgs84Sphere.haversineDistance(c1, c2);
return length;
}
答案 4 :(得分:0)
function getCoordsDistance(latlng1, latlng2) {
var markers = [];
markers.push(ol.proj.transform(latlng1, 'EPSG:4326', map.getView().getProjection()));
markers.push(ol.proj.transform(latlng2, 'EPSG:4326', map.getView().getProjection()));
var line = new ol.geom.LineString(markers, 'XY');
var length = Math.round(line.getLength() * 100) / 100;
if (length >= 1000) {
length = (Math.round(length / 1000 * 100) / 100) +
' ' + 'km';
} else {
length = Math.round(length) +
' ' + 'm';
}
return length;
}