查找最接近给定位置的特定位置

时间:2018-04-24 10:02:47

标签: python-3.x google-api google-places-api

我想找到最近的医院或最近的警察局等地点的最近特定位置到给定位置。我在其中一个问题中看到了这段代码,但我对此代码没有任何回应。

from googleplaces import GooglePlaces, types, lang

google_places = GooglePlaces(API KEY)

query_result = google_places.nearby_search(
        location='London, England',
        radius=20000, types=[types.TYPE_FOOD])

print (query_result.html_attributions)

我想要一个有效的代码,帮助我找到这些最近的社区场所,如警察局,银行,医院等。 谢谢!

1 个答案:

答案 0 :(得分:0)

这段代码对我有用,

from googleplaces import GooglePlaces, types, lang

google_places = GooglePlaces("AIzaSyCNLxPxFmG3kfrALBUkRFb_R5UdemVnqqQ")

query_result = google_places.nearby_search(
        location="51.529972 -0.127676",
        radius=20000, types=[types.TYPE_RESTAURANT])

#if query_result.has_attributions:
print (query_result.places)