当前,当我在Google API中搜索某个点附近的商户时,我会根据https://developers.google.com/places/supported_types
指定一种商户类型我使用:
gmaps.places_nearby(lat, long, type='specific business type', radius)
我如何搜索附近所有返回所有业务类型的地点?我已经尝试过Google Places Nearby Search,google map api nearby place search和Find Places Nearby in Google Maps using Google Places API,但似乎没有帮助。
我尝试过:
gmaps.nearbySearch(location, radius)
但出现错误:
'Client' object has no attribute 'nearbySearch'
答案 0 :(得分:0)
我发现方法是不指定类型,然后通过生成的json提取类型
gmaps.places_nearby(lat, long, radius)
types = ('|'.join(types))