MapView

open class MapView : UIView

Undocumented

  • Undocumented

    Declaration

    Swift

    public private(set) var mapboxMap: MapboxMap! { get set }
  • The gestures object will be responsible for all gestures on the map.

    Declaration

    Swift

    public internal(set) var gestures: GestureManager! { get }
  • The ornamentsobject will be responsible for all ornaments on the map.

    Declaration

    Swift

    public internal(set) var ornaments: OrnamentsManager! { get }
  • The camera object manages a camera’s view lifecycle..

    Declaration

    Swift

    public internal(set) var camera: CameraAnimationsManager! { get }
  • The locationobject handles location events of the map.

    Declaration

    Swift

    public internal(set) var location: LocationManager! { get }
  • Controls the addition/removal of annotations to the map.

    Declaration

    Swift

    public internal(set) var annotations: AnnotationOrchestrator! { get }
  • A Boolean value that indicates whether the underlying CAMetalLayer of the MapView presents its content using a CoreAnimation transaction

    By default, this is false resulting in the output of a rendering pass being displayed on the CAMetalLayer as quickly as possible (and asynchronously). This typically results in the fastest rendering performance.

    If, however, the MapView is overlaid with a UIKit element which must be pinned to a particular lat-long, then setting this to true will result in better synchronization and less jitter.

    Declaration

    Swift

    public var presentsWithTransaction: Bool { get set }
  • The preferred frames per second used for map rendering. NOTE: MapView.preferredFrameRateRange is available for iOS 15.0 and above.

    Declaration

    Swift

    @available(iOS, deprecated: 1000000)
    public var preferredFramesPerSecond: Int { get set }
  • The timestamp from the underlying CADisplayLink if it exists, otherwise nil

    Declaration

    Swift

    @_spi(Metrics)
    public var displayLinkTimestamp: CFTimeInterval? { get }
  • The duration from the underlying CADisplayLink if it exists, otherwise nil

    Declaration

    Swift

    @_spi(Metrics)
    public var displayLinkDuration: CFTimeInterval? { get }
  • The map’s current camera

    Declaration

    Swift

    public var cameraState: CameraState { get }
  • The map’s current anchor, calculated after applying padding (if it exists)

    Declaration

    Swift

    public var anchor: CGPoint { get }
  • Initialize a MapView

    Declaration

    Swift

    public init(frame: CGRect, mapInitOptions: MapInitOptions = MapInitOptions())

    Parameters

    frame

    frame for the MapView.

    mapInitOptions

    MapInitOptions; default uses ResourceOptionsManager.default to retrieve a shared default resource option, including the access token.

  • Undocumented

    Declaration

    Swift

    required public init?(coder: NSCoder)
  • Undocumented

    Declaration

    Swift

    open override func awakeFromNib()
  • Undocumented

    Declaration

    Swift

    public override func layoutSubviews()
  • Undocumented

    Declaration

    Swift

    open override func willMove(toWindow newWindow: UIWindow?)
  • Undocumented

    Declaration

    Swift

    open override func didMoveToWindow()
  • Undocumented

    Declaration

    Swift

    open override func didMoveToSuperview()
  • Errors related to rendered snapshots

    See more

    Declaration

    Swift

    @_spi(Experimental)
    public enum SnapshotError : Error
  • Synchronously captures the last rendered map view (if available) and constructs a UIImage if successful.

    Note

    This API must be called on main thread

    Declaration

    Swift

    @_spi(Experimental)
    public func snapshot() throws -> UIImage