openlayer3计算两点之间的距离
Posted 博星
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openlayer3计算两点之间的距离相关的知识,希望对你有一定的参考价值。
openlayer3计算两点之间的距离
对应的openlayers的版本为3.7.
主要用的接口是ol.Sphere.haversineDistance([x1,y1],[x2,y2]);
4326坐标系中计算两点距离的方式为:
var wgs84Sphere = new ol.Sphere(6378137);
wgs84Sphere.haversineDistance(C1,C2);
示例为:
var wgs84Sphere = new ol.Sphere(6378137);
wgs84Sphere.haversineDistance([120.21592590991689, 30.210793016606],[120.21670777384473, 30.211168525868086]);
以上是关于openlayer3计算两点之间的距离的主要内容,如果未能解决你的问题,请参考以下文章