我遵循的是在GitHub的main page上找到的相对于googlemaps
的示例,并且我正在编写自己的代码,以便从特定区域检索所有电影院。
代码是这样的:
import googlemaps
gmaps = googlemaps.Client(key='MyGoogleKey')
search_loction = gmaps.location('40.714224, -73.961452').type('movie_theater')
print (search_loction)
它向我返回错误:
Traceback (most recent call last):
File "GoogleMap.py", line 5, in <module>
search_loction = gmaps.location('40.714224, -73.961452')
AttributeError: 'Client' object has no attribute 'location'
那我在做什么错了?
答案 0 :(得分:3)
根据documentation,您应该使用
gmaps.places(...)
,以location
作为参数。
类似
gmaps.places(location=(lat,lng), type="movie_theater")
希望这会有所帮助!