Package com.naver.maps.map
Class CameraPosition
java.lang.Object
com.naver.maps.map.CameraPosition
- All Implemented Interfaces:
android.os.Parcelable
카메라의 위치 관련 정보를 나타내는 불변 클래스. 카메라의 위치는 좌표, 줌 레벨, 기울기 각도, 베어링 각도로 구성됩니다.
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionfinal double
베어링 각도.static final android.os.Parcelable.Creator<CameraPosition>
static final CameraPosition
유효하지 않은 카메라 위치를 나타내는 상수.final com.naver.maps.geometry.LatLng
카메라의 좌표.final double
기울기 각도.final double
줌 레벨.Fields inherited from interface android.os.Parcelable
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
-
Constructor Summary
ConstructorDescriptionCameraPosition
(com.naver.maps.geometry.LatLng target, double zoom) 좌표와 줌 레벨로부터 객체를 생성합니다.CameraPosition
(com.naver.maps.geometry.LatLng target, double zoom, double tilt, double bearing) 카메라 위치에 관한 모든 요소를 지정해 객체를 생성합니다. -
Method Summary
Modifier and TypeMethodDescriptionint
boolean
int
hashCode()
toString()
void
writeToParcel
(android.os.Parcel dest, int flags)
-
Field Details
-
INVALID
유효하지 않은 카메라 위치를 나타내는 상수. -
target
@NonNull public final com.naver.maps.geometry.LatLng target카메라의 좌표. -
zoom
@FloatRange(from=0.0, to=21.0) public final double zoom줌 레벨. 이 값이 증가할수록 축척이 증가합니다. -
tilt
@FloatRange(from=0.0, to=63.0) public final double tilt기울기 각도. 도 단위. 카메라가 지면을 내려다보는 각도를 나타냅니다. 천정에서 지면을 수직으로 내려다보는 경우0
도이며, 비스듬해질수록 값이 증가합니다. -
bearing
@FloatRange(from=0.0, to=360.0) public final double bearing베어링 각도. 도 단위. 카메라가 바라보는 방위를 나타냅니다. 방위가 북쪽일 경우0
도이며, 시계 방향으로 값이 증가합니다. -
CREATOR
-
-
Constructor Details
-
Method Details
-
equals
-
hashCode
public int hashCode() -
toString
-
describeContents
public int describeContents()- Specified by:
describeContents
in interfaceandroid.os.Parcelable
-
writeToParcel
public void writeToParcel(android.os.Parcel dest, int flags) - Specified by:
writeToParcel
in interfaceandroid.os.Parcelable
-