如何使用 Google 地图 API 仅查找两个地点之间的距离?
How to find distance only between two places with Google Map API?
我是新手 API。
基本上我正在开发一个计算两地之间运费的小部件,所以我只需要计算距离就不需要显示地图。
如果哪位有简单的解释请分享给我
我已经完成 this link,但无法确定我需要使用哪部分代码来查找距离。
你可以使用 Geometry
computeDistanceBetween()
var placeA = new google.maps.LatLng(-33.873, 151.13);
var placeB = new google.maps.LatLng(-33.92, 151.05);
console.log(google.maps.geometry.spherical.computeDistanceBetween(placeA, placeB));
参考:https://developers.google.com/maps/documentation/javascript/geometry#SphericalGeometry
我是新手 API。
基本上我正在开发一个计算两地之间运费的小部件,所以我只需要计算距离就不需要显示地图。
如果哪位有简单的解释请分享给我
我已经完成 this link,但无法确定我需要使用哪部分代码来查找距离。
你可以使用 Geometry
computeDistanceBetween()
var placeA = new google.maps.LatLng(-33.873, 151.13);
var placeB = new google.maps.LatLng(-33.92, 151.05);
console.log(google.maps.geometry.spherical.computeDistanceBetween(placeA, placeB));
参考:https://developers.google.com/maps/documentation/javascript/geometry#SphericalGeometry