使用 Google Maps V3 确定两点之间的距离
可以利用半正弦公式计算 Google Maps V3 中标记之间的距离.
半正矢公式:
要实现此公式,可以采取以下步骤:
var rad = function(x) { return x * Math.PI / 180; }; var getDistance = function(p1, p2) { var R = 6378137; // Earth’s mean radius in meter var dLat = rad(p2.lat() - p1.lat()); var dLong = rad(p2.lng() - p1.lng()); var a = Math.sin(dLat / 2) * Math.sin(dLat / 2) + Math.cos(rad(p1.lat())) * Math.cos(rad(p2.lat())) * Math.sin(dLong / 2) * Math.sin(dLong / 2); var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)); var d = R * c; return d; // returns the distance in meter };
在此代码中:
以上是如何使用 Google 地图 V3 计算两点之间的距离?的详细内容。更多信息请关注PHP中文网其他相关文章!