以编程方式使用Bing maps API获取行车距离

时间:2014-01-25 22:28:09

标签: java bing-maps

我一直在使用Bing API,它非常完美,可以很好地输出纬度和经度

            // However I need the driving distance . . . I thought it should be  result.getDrivingDistance (
            System.out.println(result.getDrivingDistance); // There is no such a command
           // What should I do to get the distance from the response ?

有没有办法获得行车距离? 我一直在阅读文档,但无法为此找到方法?

1 个答案:

答案 0 :(得分:1)

路由API。 Routes API用于计算行车路线。 Routes API允许您通过驾驶,步行或基于交通的算法获得路线距离计算,路线几何和逐步指导。您还可以在路线上传递最多25个点,以便在单个请求中计算多个停靠路线。

样品:

http://dev.virtualearth.net/REST/v1/Routes?waypoint.1=waypoint1&waypoint.2=waypoint2&distanceUnit=mi&o=json&c=en-GB&key=key

查看Microsoft文档:

http://msdn.microsoft.com/en-us/library/ff701717.aspx 在Java中很容易做到这一点。