Class CameraPosition

java.lang.Object
com.naver.maps.map.CameraPosition
All Implemented Interfaces:
android.os.Parcelable

public final class CameraPosition extends Object implements android.os.Parcelable
카메라의 위치 관련 정보를 나타내는 불변 클래스. 카메라의 위치는 좌표, 줌 레벨, 기울기 각도, 베어링 각도로 구성됩니다.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface android.os.Parcelable

    android.os.Parcelable.ClassLoaderCreator<T extends Object>, android.os.Parcelable.Creator<T extends Object>
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final 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

    Constructors
    Constructor
    Description
    CameraPosition(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 Type
    Method
    Description
    int
     
    boolean
     
    int
     
     
    void
    writeToParcel(android.os.Parcel dest, int flags)
     

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • INVALID

      public static final CameraPosition 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

      public static final android.os.Parcelable.Creator<CameraPosition> CREATOR
  • Constructor Details

    • CameraPosition

      public CameraPosition(@NonNull com.naver.maps.geometry.LatLng target, double zoom)
      좌표와 줌 레벨로부터 객체를 생성합니다. tiltbearing0으로 지정됩니다.
      Parameters:
      target - 카메라의 좌표.
      zoom - 카메라의 줌 레벨.
    • CameraPosition

      public CameraPosition(@NonNull com.naver.maps.geometry.LatLng target, double zoom, double tilt, double bearing)
      카메라 위치에 관한 모든 요소를 지정해 객체를 생성합니다.
      Parameters:
      target - 카메라의 좌표.
      zoom - 카메라의 줌 레벨.
      tilt - 카메라의 기울기 각도.
      bearing - 카메라의 베어링 각도.
  • Method Details

    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • describeContents

      public int describeContents()
      Specified by:
      describeContents in interface android.os.Parcelable
    • writeToParcel

      public void writeToParcel(android.os.Parcel dest, int flags)
      Specified by:
      writeToParcel in interface android.os.Parcelable