Last active
December 15, 2015 15:27
-
-
Save belltailjp/9f12b86124bd64a9f309 to your computer and use it in GitHub Desktop.
Example of Google Geocoding API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% curl "https://maps.googleapis.com/maps/api/geocode/json?address=豊田スタジアム&language=ja®ion=jp&key=YOUR_API_KEY" | jq "." | |
{ | |
"results": [ | |
{ | |
"address_components": [ | |
{ | |
"long_name": "豊田スタジアム", | |
"short_name": "豊田スタジアム", | |
"types": [ | |
"premise" | |
] | |
}, | |
{ | |
"long_name": "2", | |
"short_name": "2", | |
"types": [ | |
"sublocality_level_4", | |
"sublocality", | |
"political" | |
] | |
}, | |
{ | |
"long_name": "7丁目", | |
"short_name": "7丁目", | |
"types": [ | |
"sublocality_level_2", | |
"sublocality", | |
"political" | |
] | |
}, | |
{ | |
"long_name": "千石町", | |
"short_name": "千石町", | |
"types": [ | |
"sublocality_level_1", | |
"sublocality", | |
"political" | |
] | |
}, | |
{ | |
"long_name": "豊田市", | |
"short_name": "豊田市", | |
"types": [ | |
"locality", | |
"political" | |
] | |
}, | |
{ | |
"long_name": "愛知県", | |
"short_name": "愛知県", | |
"types": [ | |
"administrative_area_level_1", | |
"political" | |
] | |
}, | |
{ | |
"long_name": "日本", | |
"short_name": "JP", | |
"types": [ | |
"country", | |
"political" | |
] | |
}, | |
{ | |
"long_name": "471-0016", | |
"short_name": "471-0016", | |
"types": [ | |
"postal_code" | |
] | |
} | |
], | |
"formatted_address": "日本, 〒471-0016 愛知県豊田市千石町7丁目2 豊田スタジアム", | |
"geometry": { | |
"bounds": { | |
"northeast": { | |
"lat": 35.0856409, | |
"lng": 137.1721357 | |
}, | |
"southwest": { | |
"lat": 35.0834561, | |
"lng": 137.1696671 | |
} | |
}, | |
"location": { | |
"lat": 35.0845611, | |
"lng": 137.1706404 | |
}, | |
"location_type": "ROOFTOP", | |
"viewport": { | |
"northeast": { | |
"lat": 35.0858974802915, | |
"lng": 137.1722503802915 | |
}, | |
"southwest": { | |
"lat": 35.0831995197085, | |
"lng": 137.1695524197085 | |
} | |
} | |
}, | |
"place_id": "ChIJ65PZhFmgBGAR_wSd2agln94", | |
"types": [ | |
"premise" | |
] | |
} | |
], | |
"status": "OK" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment