ジオコーダのRESULTを整理
Google Developersより
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
{ "results": [ { "address_components": [ {"long_name": "xx", "short_name": "xx", "types": ["street_number"|"route"|...]}, ... ], "formatted_address": "xx", "geometry": { "location": {"lat": n, "lng": n}, "location_type: "xx", "viewport": { "northeast": {"lat": n, "lng": n}, "southwest": {"lng": n, "lng": n} } }, "types": ["street_address"] }, ... ] "status": "OK" } |
status内容
Google Developersより
"OK" | 取得成功 |
"ZERO_RESULTS" | 問合せは成功したが結果が0件 |
"OVER_QUERY_LIMIT" | クエリ送信回数上限を超えた場合 |
"REQUEST_DENIED" | sensorパラメータが無いなどの理由でリクエストが拒否された |
"INVALID_REQUEST" | リクエストパラメータが不正 |