通过Google Direction的API获取唯一的指导时间

时间:2015-10-15 16:04:37

标签: google-maps google-api google-direction

好吧,我有一个使用Google Direction API的小应用程序。 如果我想在2个地方之间获得方向,我只需使用smth:

https://maps.googleapis.com/maps/api/directions/json?origin=Moscow&destination=Perm&key=<My Key>

所以我得到了非常非常长且重的JSON和详细的例行程序。 但有时我只需要旅行时间,我可以轻松执行它:

 "legs" : [
            {
               "distance" : {
                  "text" : "1 443 км",
                  "value" : 1442738
               },
               "duration" : {
                  "text" : "18 ч. 3 мин.",
                  "value" : 64963 // this is travel time in seconds
               },

所以我不需要其他数据(它非常大!如果我使用移动互联网,则需要花费很多时间来加载它)。 所以我有一个问题:是否有任何API函数只能在没有常规步骤的情况下为我提供主数据?

提前致谢

1 个答案:

答案 0 :(得分:0)

如果您只需要距离和持续时间,请使用DistanceMatrix