ManeuverItemView

@IBDesignable
open class ManeuverItemView : UIView

The maneuver item view.

  • The maneuver icon image.

    Declaration

    Swift

    public var icon: UIImage? { get set }
  • The maneuver icon image tint color. The default value is UIColor.colorForeground.

    Declaration

    Swift

    public var iconTintColor: UIColor? { get set }
  • The maneuver instructions.

    Declaration

    Swift

    public var instructions: String? { get set }
  • The maneuver instructions text color. The default value is UIColor.colorForeground.

    Declaration

    Swift

    public var instructionsTextColor: UIColor? { get set }
  • The maneuver address.

    Declaration

    Swift

    public var address: String? { get set }
  • The maneuver address text color. The default value is UIColor.colorForegroundSecondary.

    Declaration

    Swift

    public var addressTextColor: UIColor? { get set }
  • The maneuver distance.

    Declaration

    Swift

    public var distance: Measurement<UnitLength>? { get set }
  • The maneuver distance text color. The default value is UIColor.colorForegroundSecondary.

    Declaration

    Swift

    public var distanceTextColor: UIColor? { get set }
  • The distance formatter. The default value is MeasurementFormatter.currentMediumUnitFormatter.

    Declaration

    Swift

    public var distanceFormatter: MeasurementFormatter { get set }
  • The accessibility distance formatter. The default value is MeasurementFormatter.currentLongUnitFormatter.

    Declaration

    Swift

    public var accessibilityDistanceFormatter: MeasurementFormatter { get set }