CarPlayMapViewController

@objc(MBCarPlayMapViewController)
public class CarPlayMapViewController : UIViewController

CarPlayMapViewController is responsible for administering the Mapbox map, the interface styles and the map template buttons to display on CarPlay.

  • The map button for recentering the map view if a user action causes it to stop following the user.

    Declaration

    Swift

    @objc
    public lazy var recenterButton: CPMapButton { get set }
  • The map button for zooming in the current map view.

    Declaration

    Swift

    @objc
    public lazy var zoomInButton: CPMapButton { get set }
  • The map button for zooming out the current map view.

    Declaration

    Swift

    @objc
    public lazy var zoomOutButton: CPMapButton { get set }
  • The map button property for hiding or showing the pan map button.

    Declaration

    Swift

    @objc
    internal(set) public var panMapButton: CPMapButton?
  • The map button property for exiting the pan map mode.

    Declaration

    Swift

    @objc
    internal(set) public var dismissPanningButton: CPMapButton?
  • Creates a new pan map button for the CarPlay map view controller.

    Declaration

    Swift

    @discardableResult
    public func panningInterfaceDisplayButton(for mapTemplate: CPMapTemplate) -> CPMapButton

    Parameters

    mapTemplate

    The map template available to the pan map button for display.

  • Creates a new close button to dismiss the visible panning buttons on the map.

    Declaration

    Swift

    @discardableResult
    public func panningInterfaceDismissalButton(for mapTemplate: CPMapTemplate) -> CPMapButton

    Parameters

    mapTemplate

    The map template available to the pan map button for display.