Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
python使用Googoe Map API雷達搜尋功能
import googlemaps
google_key = “xxx”
gmaps = googlemaps.Client(key = google_key)
radar_results = gmaps.places_radar(location = (25.034195, 121.564467), radius = 100, type = “cafe”)
print(radar_results)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment