如何在Google api Python附近搜索地方

时间:2019-06-18 08:08:34

标签: python api google-maps

当前,当我在Google API中搜索某个点附近的商户时,我会根据https://developers.google.com/places/supported_types

指定一种商户类型

我使用:

gmaps.places_nearby(lat, long, type='specific business type', radius)

我如何搜索附近所有返回所有业务类型的地点?我已经尝试过Google Places Nearby Searchgoogle map api nearby place searchFind Places Nearby in Google Maps using Google Places API,但似乎没有帮助。

我尝试过:

gmaps.nearbySearch(location, radius)

但出现错误:

'Client' object has no attribute 'nearbySearch'

1 个答案:

答案 0 :(得分:0)

我发现方法是不指定类型,然后通过生成的json提取类型

gmaps.places_nearby(lat, long, radius)

types = ('|'.join(types))