我正在尝试评估用户与附近位置(例如沃尔玛或任何其他商店)之间的距离。我查看了谷歌的地方,但我很难找到手机附近的商店位置。我不打算显示地图或任何类似的东西,我只是想评估距离。如果有人可以向我推荐如何检索附近最近商店位置的指南或教程,并评估手机和商店之间的距离。
答案 0 :(得分:0)
1)您可以使用Google Place API获取您所在位置附近的地点,并使用Place Api查看此blog
2)对于距离计算,请使用:
function getDistanceFromLatLonInKm(lat1,lon1,lat2,lon2) {
var R = 6371; // Radius of the earth in km
var dLat = deg2rad(lat2-lat1); // deg2rad below
var dLon = deg2rad(lon2-lon1);
var a =
Math.sin(dLat/2) * Math.sin(dLat/2) +
Math.cos(deg2rad(lat1)) * Math.cos(deg2rad(lat2)) *
Math.sin(dLon/2) * Math.sin(dLon/2)
;
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
var d = R * c; // Distance in km
return d;
}
function deg2rad(deg) {
return deg * (Math.PI/180)
}