gpt4 book ai didi

python - 在 Google places api (python) 中搜索附近的 lat_lng

转载 作者:太空宇宙 更新时间:2023-11-04 02:34:41 25 4
gpt4 key购买 nike

我正在尝试查找 lat_lng 中特定位置附近的所有地点。但是,在搜索 lat_lng 而不是位置 (location='location') 时出现错误。我有 Google places API Web Service 和 Google Maps Geocoding API 的 key 。根据https://github.com/slimkrazy/python-google-places这应该足够了。

这是我的代码和错误信息:

YOUR_API_KEY = 'API_KEY'
google_places = GooglePlaces(YOUR_API_KEY)

query_result = google_places.nearby_search(
lat_lng='52.0737017, 5.0944107999999915',
radius=100,
types=[types.TYPE_RESTAURANT] or [types.TYPE_CAFE])

for place in query_result.places:
place.get_details()
print '%s %s %s' % (place.name, place.geo_location, place.types)

错误信息:

File "C:\Python27\lib\site-packages\googleplaces\__init__.py", line 281, in nearby_search
lat_lng_str = self._generate_lat_lng_string(lat_lng, location)
File "C:\Python27\lib\site-packages\googleplaces\__init__.py", line 590, in _generate_lat_lng_string
else geocode_location(location=location, api_key=self.api_key))
TypeError: format requires a mapping

谁知道如何解决这个问题?

最佳答案

来自github你提供的,引用部分指出 lat_lng 参数是 dict 类型:

lat_lng -- A dict containing the following keys: lat, lng (default None)

改为执行以下操作:

query_result = google_places.nearby_search(
lat_lng={'lat': 52.0737017, 'lng': 5.0944107999999915},
radius=100,
types=[types.TYPE_RESTAURANT] or [types.TYPE_CAFE])

要查看 query_result,只需执行以下操作:

query_result.raw_response

关于python - 在 Google places api (python) 中搜索附近的 lat_lng,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48208227/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com