我只想使用Google Directions API来获取从A点到B点的路线/方向,给定A和B的纬度/经度坐标。我想在Python中执行此操作。
如果我这样做,那就有效:
import googlemaps
gmaps = googlemaps.Client(key='mykey')
start = 'Constitution Ave NW & 10th St NW, Washington, DC'
end = 'Independence and 6th SW, Washington, DC 20024, USA'
dirs = gmaps.directions(start, end)
然而,这不是我想要的,因为我只有纬度/经度坐标,而不是地址。我知道我可以使用reverse_geocode()将lat / long转换为地址,但这不是我想要的,因为它会在Directions API之上调用Geocoding API。我还没有找到一种方法直接在lat / long上使用gmaps.directions()。
所以我的问题很简单:当我只有A和B的纬度/经度坐标时,我可以单独使用Directions API来获取从A点到B点的方向吗?或者我是否有义务在其上使用Geocoding API?
感谢您的时间。
答案 0 :(得分:2)
根据Google的the Developer's Guide:
如果您传递坐标,则不加改变地使用它们来计算方向。确保纬度和经度值之间不存在空格
origin=41.43206,-81.38992
答案 1 :(得分:0)
请使用以下方式给出纬度和经度。希望它会有所帮助:
origin: {lat:19.99, lng:73.78}, // Start Point
destination: {lat:19.697316, lng:73.560936}, // End Point
答案 2 :(得分:0)
这是您适应坐标的代码。请注意,您不能混合使用坐标和字符串地址
import googlemaps
gmaps = googlemaps.Client(key='mykey')
start = '43.70721,-79.3955999'
end = '43.7077599,-79.39294'
dirs = gmaps.directions(start, end)