NMFCameraPosition


@interface NMFCameraPosition : NSObject <NSSecureCoding, NSCopying>

카메라의 위치 관련 정보를 나타내는 불변 클래스. 카메라의 위치는 좌표, 줌 레벨, 기울기 각도, 헤딩 각도로 구성됩니다.

  • 카메라의 좌표.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NMGLatLng *_Nonnull target;

    Swift

    var target: NMGLatLng { get }
  • 줌 레벨. 이 값이 증가할수록 축척이 증가합니다.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double zoom;

    Swift

    var zoom: Double { get }
  • 기울기 각도. 도 단위. 카메라가 지면을 내려다보는 각도를 나타냅니다. 천정에서 지면을 수직으로 내려다보는 경우 0도이며, 비스듬해질수록 값이 증가합니다.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double tilt;

    Swift

    var tilt: Double { get }
  • 헤딩 각도. 도 단위. 카메라가 바라보는 방위를 나타냅니다. 방위가 북쪽일 경우 0도이며, 시계 방향으로 값이 증가합니다.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double heading;

    Swift

    var heading: Double { get }
  • 카메라 위치에 관한 모든 요소를 지정해 객체를 생성합니다.

    Declaration

    Objective-C

    + (nonnull instancetype)cameraPosition:(nonnull NMGLatLng *)target
                                      zoom:(double)zoom
                                      tilt:(double)tilt
                                   heading:(double)heading;

    Swift

    convenience init(_ target: NMGLatLng, zoom: Double, tilt: Double, heading: Double)

    Parameters

    target

    카메라의 좌표.

    zoom

    카메라의 줌 레벨.

    tilt

    카메라의 기울기 각도.

    heading

    카메라의 베어링 각도.

    Return Value

    NMFCameraPosition 객체.

  • 좌표와 줌 레벨로부터 객체를 생성합니다. tiltheading0으로 지정됩니다.

    Declaration

    Objective-C

    + (nonnull instancetype)cameraPosition:(nonnull NMGLatLng *)target
                                      zoom:(double)zoom;

    Swift

    convenience init(_ target: NMGLatLng, zoom: Double)

    Parameters

    target

    카메라의 좌표.

    zoom

    카메라의 줌 레벨.

    Return Value

    NMFCameraPosition 객체.

  • 카메라의 위치가 유효한지 여부를 반환합니다.

    Declaration

    Objective-C

    - (BOOL)isValid;

    Swift

    func isValid() -> Bool

    Return Value

    카메라의 위치가 유효한지 여부.