码迷,mamicode.com
首页 > 其他好文 > 详细

计算openlayers两点之间的距离

时间:2015-05-27 22:27:53      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:

distanceTo: function(point) {

    var distance = 0.0;

    if ((this.x != null) && (this.y != null) &&

    (point != null) && (point.x != null) && (point.y != null)) {

        var dx2 = Math.pow(this.x - point.x, 2);

        var dy2 = Math.pow(this.y - point.y, 2);

        distance = Math.sqrt(dx2 + dy2);

    }

    return distance;

}

返回的单位为 km

计算openlayers两点之间的距离

标签:

原文地址:http://www.cnblogs.com/liuswi/p/4534479.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!