naver_reverse_geocode
Convert latitude and longitude coordinates into precise addresses using the Naver Maps API, enabling accurate location identification and mapping.
Instructions
위도/경도 좌표를 주소로 변환합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lat | Yes | 위도 | |
lng | Yes | 경도 |
Input Schema (JSON Schema)
{
"properties": {
"lat": {
"description": "위도",
"type": "number"
},
"lng": {
"description": "경도",
"type": "number"
}
},
"required": [
"lat",
"lng"
],
"type": "object"
}