我实现了在Android的Google地图中获取两个位置之间的距离,但我不知道如何获取这两个位置的旅行时间?我提到很多例子,但我听不懂。给我例子
答案 0 :(得分:0)
您可以从[Google Direction API]中获取旅行时间-
链接:https://developers.google.com/maps/documentation/directions/start#sample-request
在URL中提供您的出发地和目的地,您将获得JSON响应。
然后您可以在响应中找到旅行时间,如下所示:
routes(JSONArray)->腿部(JSONArray)->持续时间(JSONObject)
参考链接:https://developers.google.com/maps/documentation/directions/intro#DirectionsRequests