CameraView

public class CameraView : UIView

A view that represents a camera view port.

  • Undocumented

    Declaration

    Swift

    public override class var layerClass: AnyClass { get }
  • Undocumented

    Declaration

    Swift

    public var camera: CameraOptions { get set }
  • The camera’s zoom. Animatable.

    Declaration

    Swift

    @objc
    dynamic public var zoom: CGFloat { get set }
  • The camera’s bearing. Animatable.

    Declaration

    Swift

    @objc
    dynamic public var bearing: CGFloat { get set }
  • The camera’s anchor. Not Animatable. The anchor will be updated in the next rendering frame.

    Declaration

    Swift

    @objc
    dynamic public var anchor: CGPoint { get set }
  • The camera’s padding around the interior of the view that affects the frame of reference for centerCoordinate. Not Animatable. The padding will be updated in the next rendering frame.

    Declaration

    Swift

    @objc
    dynamic public var padding: UIEdgeInsets { get set }
  • Coordinate at the center of the camera. Animatable.

    Declaration

    Swift

    @objc
    dynamic public var centerCoordinate: CLLocationCoordinate2D { get set }
  • The camera’s pitch. Animatable.

    Declaration

    Swift

    @objc
    dynamic public var pitch: CGFloat { get set }
  • Undocumented

    Declaration

    Swift

    @objc
    public var visibleCoordinateBounds: CoordinateBounds { get }
  • Undocumented

    Declaration

    Swift

    public weak var delegate: CameraViewDelegate?
  • Undocumented

    Declaration

    Swift

    public init(frame: CGRect, map: Map)
  • Undocumented

    Declaration

    Swift

    public convenience init(frame: CGRect, map: Map, camera: CameraOptions)
  • Undocumented

    Declaration

    Swift

    public override func display(_ layer: CALayer)