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

Class: naver.maps.Geometry

naver.maps. Geometry

Geometry 클래스는 Feature 타입의 GeoJSON 객체의 geometry 속성을 추상화합니다.

일반적으로 Feature 객체를 통해 초기화하므로 별도의 인스턴스를 생성하지 않습니다.

new naver.maps.Geometry(rawGeometry)

Parameters
Name Type Description
rawGeometry object

Feature 타입의 GeoJSON 객체의 geometry 속성

Tutorials

Extends

Methods

getCoords()

Geometry 객체의 좌표 배열을 반환합니다. 이 값은 Feature 타입의 GeoJSON 객체의 geometry 속성에서 coordinates 속성을 파싱한 것입니다.

Feature에서 다음과 같은 오버레이를 생성할 때 사용합니다.

Returns
Type Description
ArrayOfCoords

점, 선, 면 등의 기하 구조의 좌표

getType()

Geometry 객체의 타입을 반환합니다.

  • Point
  • MultiPoint
  • LineString
  • MultiLineString
  • Polygon
  • MultiPolygon

Feature에서 다음과 같은 오버레이를 생성할 때 사용합니다.

Returns
Type Description
string

Geometry 객체의 타입