google-maps
Installation
SKILL.md
Troubleshooting
If requests fail, run zero doctor check-connector --env-name GOOGLE_MAPS_TOKEN or zero doctor check-connector --url https://maps.googleapis.com/maps/api/geocode/json --method GET.
How to Use
Google Maps Platform authenticates with an API key passed as the key
query parameter on every request. The base URL is
https://maps.googleapis.com.
1. Forward geocode an address
curl -s -G "https://maps.googleapis.com/maps/api/geocode/json" \
--data-urlencode "address=1600 Amphitheatre Parkway, Mountain View, CA" \
--data-urlencode "key=$GOOGLE_MAPS_TOKEN"