logo
Tutorials Examples naver map js api v3 네이버 지도 API UTMK

StaticObjects: UTMK

naver.maps. UTMK

UTMK 객체는 한국형 UTM(Universal Transverse Mercator) 좌표계를 나타내는 것으로 UTMK 좌표계와 관련된 좌표 변환 메서드를 제공합니다.

원본 Projection 객체의 세계 좌표는 0~1 사이의 값입니다.

Properties
Name Type Description
name string

"UTMK"

pointPerMeter number

8192

Tutorials

Extends

Methods

fromCoordToPoint(latlng)

지정한 위/경도 좌표를 세계 좌표로 변환하여 반환합니다.

Parameters
Name Type Description
latlng naver.maps.LatLng

위/경도 좌표

Returns
Type Description
naver.maps.Point

세계 좌표

fromCoordToUTMK(latlng)

지정한 위/경도 좌표를 UTMK 지도 좌표로 변환하여 반환합니다.

Parameters
Name Type Description
latlng naver.maps.LatLng

위/경도 좌표

Returns
Type Description
naver.maps.Point

UTMK 좌표

fromLatLngToPoint(latlng)

지정한 위/경도 좌표를 세계 좌표로 변환하여 반환합니다.

Parameters
Name Type Description
latlng naver.maps.LatLng

위/경도 좌표

Returns
Type Description
naver.maps.Point

세계 좌표

fromLatLngToUTMK(latlng)

지정한 위/경도 좌표를 UTMK 지도 좌표로 변환하여 반환합니다.

Parameters
Name Type Description
latlng naver.maps.LatLng

위/경도 좌표

Returns
Type Description
naver.maps.Point

UTMK 좌표

fromPointToCoord(point)

지정한 세계 좌표를 위/경도 좌표로 변환하여 반환합니다.

Parameters
Name Type Description
point naver.maps.Point

세계 좌표

Returns
Type Description
naver.maps.LatLng

위/경도 좌표

fromPointToLatLng(point)

지정한 세계 좌표를 위/경도 좌표로 변환하여 반환합니다.

Parameters
Name Type Description
point naver.maps.Point

세계 좌표

Returns
Type Description
naver.maps.LatLng

위/경도 좌표

fromPointToUTMK(point)

지정한 세계 좌표를 UTMK 좌표로 변환하여 반환합니다.

Parameters
Name Type Description
point naver.maps.Point

세계 좌표

Returns
Type Description
naver.maps.Point

UTMK 좌표

fromUTMKToCoord(utmk)

지정한 UTMK 좌표를 위/경도 좌표로 변환하여 반환합니다.

Parameters
Name Type Description
utmk naver.maps.Point

UTMK 좌표

Returns
Type Description
naver.maps.LatLng

위/경도 좌표

fromUTMKToLatLng(utmk)

지정한 UTMK 좌표를 위/경도 좌표로 변환하여 반환합니다.

Parameters
Name Type Description
utmk naver.maps.Point

UTMK 좌표

Returns
Type Description
naver.maps.LatLng

위/경도 좌표

fromUTMKToPoint(utmk)

지정한 UTMK 좌표를 세계 좌표로 변환하여 반환합니다.

Parameters
Name Type Description
utmk naver.maps.Point

UTMK 좌표

Returns
Type Description
naver.maps.Point

세계 좌표

getDestinationCoord(fromLatLng, angle, meter)

지정한 좌표에서 북쪽을 기준으로 지정한 각도(시계 방향)와 거리만큼 떨어진 위치의 지도 좌표를 반환합니다.

Parameters
Name Type Description
fromLatLng naver.maps.LatLng

기준이 되는 위/경도 좌표

angle number

지정한 좌표에서 북쪽을 기준으로 한 시계 방향의 각도(0-북, 90-동, 180-남, 270-서). 이 값이 0이면 현재의 좌표에서 북쪽을 가리키며, 90이면 동쪽을 가리킵니다.

meter number

지정한 좌표에서 구하려는 좌표까지의 거리(미터)

Returns
Type Description
naver.maps.LatLng

새로운 위/경도 좌표

getDistance(latlng1, latlng2)

지정한 두 위/경도 좌표 간의 거리를 반환합니다. 단위는 미터입니다.

Parameters
Name Type Description
latlng1 naver.maps.LatLng

위/경도 좌표

latlng2 naver.maps.LatLng

위/경도 좌표

Returns
Type Description
number

거리