查找最接近给定位置的特定位置
Find specific locations closest to a given position
我想找到距离给定位置最近的某个地方的特定位置,例如最近的医院或最近的警察局等。我在其中一个问题中看到了这段代码,但我没有收到对此代码的任何回复。
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)
我想要一个工作代码来帮助我找到这些最近的社区地点,如警察局、银行、医院到给定位置。
谢谢!
这段代码对我有用,
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)
我想找到距离给定位置最近的某个地方的特定位置,例如最近的医院或最近的警察局等。我在其中一个问题中看到了这段代码,但我没有收到对此代码的任何回复。
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)
我想要一个工作代码来帮助我找到这些最近的社区地点,如警察局、银行、医院到给定位置。 谢谢!
这段代码对我有用,
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)