Package com.naver.maps.map
Enum LocationTrackingMode
- All Implemented Interfaces:
Serializable
,Comparable<LocationTrackingMode>
,java.lang.constant.Constable
위치 추적 모드를 나타내는 열거형.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic LocationTrackingMode
Returns the enum constant of this type with the specified name.static LocationTrackingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
None
위치 추적을 사용하지 않는 모드.LocationOverlay
는 움직이지 않습니다. -
NoFollow
위치는 추적하지만 지도는 움직이지 않는 모드.LocationOverlay
가 사용자의 위치를 따라 움직이나 지도는 움직이지 않습니다. -
Follow
위치를 추적하면서 카메라도 따라 움직이는 모드.LocationOverlay
와 카메라의 좌표가 사용자의 위치를 따라 움직입니다. API나 제스처를 사용해 지도를 임의로 움직일 경우 모드가NoFollow
로 바뀝니다. -
Face
위치를 추적하면서 카메라의 좌표와 베어링도 따라 움직이는 모드.LocationOverlay
와 카메라의 좌표, 베어링이 사용자의 위치, 사용자가 바라보고 있는 방향을 따라 움직입니다. API나 제스처를 사용해 지도를 임의로 움직일 경우 모드가NoFollow
로 바뀝니다.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-