Get Geocoding
Resource
POST /v1/basic/routes/geocoding
Authorization
採用 OAuth 2.0 Bearer Token,詳細使用流程請參考 Auth Login。
Request Body Parameters
| Name | Type | Description |
|---|---|---|
| lat | float | 緯度 |
| lng | float | 經度 |
Request Example
{
"lat": 25.033,
"lng": 121.5654
}
Response Body
| Name | Type | Description |
|---|---|---|
| address | string | (Optional) |
Response Example
{
"address": "台北市信義區信義路五段11號"
}