我一直在使用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 ?
有没有办法获得行车距离? 我一直在阅读文档,但无法为此找到方法?
答案 0 :(得分:1)
路由API。 Routes API用于计算行车路线。 Routes API允许您通过驾驶,步行或基于交通的算法获得路线距离计算,路线几何和逐步指导。您还可以在路线上传递最多25个点,以便在单个请求中计算多个停靠路线。
样品:
查看Microsoft文档:
http://msdn.microsoft.com/en-us/library/ff701717.aspx 在Java中很容易做到这一点。