在php中计算地球上两个坐标之间的行驶距离
好吧,我正在基于位置的应用程序中工作,我需要在服务器端找到地球上两个位置之间的驾驶距离。我正在用 php 编写 Web 服务。
到目前为止,我可以使用半正弦公式计算空中距离,但现在我想计算行驶距离。
这个问题可能有重复,但我无法找到任何帮助来计算两个“坐标”之间的“行驶距离”,即纬度和经度而不是 PHP 中的地址
Well i am working in a location based app and i need to find driving distance between two location on earth at the server end. i am coding the web service in php.
Till now i am able to calculate the aerial distance using the Haversine formula, but now i want to calculate the driving distance.
There can be possible duplicates for this question, but i was not able to find any help to calculate the "Driving distance" between two "coordinates" ie latitude and longitude instead of addresses in PHP
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Google 距离矩阵 API:-
代码如下:-
如需了解更多信息,请访问 Google Distance Matrix API
Use Google Distance Matrix API :-
Here is the code:-
Find out more at Google Distance Matrix API
这应该让你开始...
This should get you started...