如何从谷歌地图url api获取两点之间的距离
我使用谷歌地图API v2,并且我知道方法distanceFrom
可以获取距离,
但我想获取距离然后将其存储到数据库中,
它有一个简单的方法,如下所示:
http://ditu.google.cn/maps/geo?q=39.88509,116.336355&output=xml&sensor=true_or_false&key=abcdefg
我访问这个url并使用django获取响应,然后将其存储到mysql中,
现在我想获取距离,google有url api吗,
谢谢
i use google maps api v2 , and i know the method distanceFrom
can get the distance ,
but i want to get the distance and then store it into database ,
it has a easy way like this :
http://ditu.google.cn/maps/geo?q=39.88509,116.336355&output=xml&sensor=true_or_false&key=abcdefg
i visit this url and get the response using django , and then store it into mysql ,
now i want to get the distance , Does google has the url api ,
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用标准纬度/经度计算:
链接
将纬度和经度存储在数据库中。
I'd recommend using standard latitude/longitude calculations:
Link
Store latitude and longitude in your database.