MoveBy

Objective-C

enum MoveBy : NSInteger {}

Swift

enum MoveBy : Int, @unchecked Sendable

지도 이동을 발생시킨 이벤트 종류

  • 한 손가락 더블탭 줌인

    Declaration

    Objective-C

    MoveByDoubleTapZoomIn = 0

    Swift

    case doubleTapZoomIn = 0
  • 두 손가락 싱글탭 줌 아웃

    Declaration

    Objective-C

    MoveByTwoFingerTapZoomOut

    Swift

    case twoFingerTapZoomOut = 1
  • 패닝

    Declaration

    Objective-C

    MoveByPan

    Swift

    case pan = 2
  • 회전

    Declaration

    Objective-C

    MoveByRotate

    Swift

    case rotate = 3
  • Declaration

    Objective-C

    MoveByZoom

    Swift

    case zoom = 4
  • 틸트

    Declaration

    Objective-C

    MoveByTilt

    Swift

    case tilt = 5
  • 롱탭 후 드래그

    Declaration

    Objective-C

    MoveByLongTapAndDrag

    Swift

    case longTapAndDrag = 6
  • 회전 및 줌 동시

    Declaration

    Objective-C

    MoveByRotateZoom

    Swift

    case rotateZoom = 7
  • 한 손가락 줌

    Declaration

    Objective-C

    MoveByOneFingerZoom

    Swift

    case oneFingerZoom = 8
  • 그외 기타

    Declaration

    Objective-C

    MoveByNotUserAction

    Swift

    case notUserAction = 9