如何查找谷歌地图上的坐标方向api响应?

时间:2014-06-21 12:15:17

标签: android google-maps google-maps-api-3 coordinates google-direction

是否有任何api或方法检查返回的Direction Api响应中是否存在坐标或位置?

https://developers.google.com/maps/documentation/directions/#DirectionsResponses

我想检查返回的Direction Api响应是否包含我的硬编码坐标/位置?

enter image description here

1 个答案:

答案 0 :(得分:2)

如果您使用API​​:

DirectionsRoute返回overview_path(lat / lng的数组)。有了这个,您可以创建折线。您可以使用此折线来调用google.maps.geometry.poly.isLocationOnEdge函数

如果您使用WebService:

返回的JSON具有overview_polyline键。您可以使用它来创建折线并调用google.maps.geometry.poly.isLocationOnEdge函数

此致