在谷歌地图v3中获取折线的长度

时间:2010-12-18 21:13:37

标签: maps polyline

有谁知道如何在谷歌地图v3中获得折线的长度?目前我正在使用Haversine公式,但如果折线符合开始,那么它会计算出最短的长度。有谁知道我如何计算折线长度?

非常感谢。 标记

2 个答案:

答案 0 :(得分:19)

使用以下功能扩展Google Maps API:

google.maps.LatLng.prototype.kmTo = function(a){ 
    var e = Math, ra = e.PI/180; 
    var b = this.lat() * ra, c = a.lat() * ra, d = b - c; 
    var g = this.lng() * ra - a.lng() * ra; 
    var f = 2 * e.asin(e.sqrt(e.pow(e.sin(d/2), 2) + e.cos(b) * e.cos 
    (c) * e.pow(e.sin(g/2), 2))); 
    return f * 6378.137; 
}

google.maps.Polyline.prototype.inKm = function(n){ 
    var a = this.getPath(n), len = a.getLength(), dist = 0; 
    for (var i=0; i < len-1; i++) { 
       dist += a.getAt(i).kmTo(a.getAt(i+1)); 
    }
    return dist; 
}

然后你可以打电话:

var length_in_km = yourPoly.inKm();

来源:http://groups.google.com/forum/#!topic/google-maps-js-api-v3/Op87g7lBotc

答案 1 :(得分:5)

使用Google Geometry:

<script type="text/javascript" src="//maps.google.com/maps/api/js?v=3.exp&libraries=geometry"></script>

然后就这么简单:

var meters = google.maps.geometry.spherical.computeLength(myPolyline.getPath());