naver_geocode
Convert addresses into latitude/longitude coordinates using the Naver Maps API. Ideal for mapping applications, location-based services, and navigation systems.
Instructions
주소를 위도/경도 좌표로 변환합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | 변환할 주소 |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "변환할 주소",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}