AWFMapControlStyle

@interface AWFMapControlStyle : NSObject

An AWFMapControlStyle object provides style specifications for a map control view. This class is used in conjunction with AWFBasicControlView and AWFTimelineView to control the styling of the map controls.

  • The background color to use for the view.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) UIColor *backgroundColor;

    Swift

    var backgroundColor: UIColor! { get set }
  • The fill color of the progress indicator.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) UIColor *progressFillColor;

    Swift

    var progressFillColor: UIColor! { get set }
  • The stroke color of the progress indicator.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) UIColor *progressStrokeColor;

    Swift

    var progressStrokeColor: UIColor! { get set }
  • The default text style.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWFTextStyleSpec *defaultTextStyle

    Swift

    var defaultTextStyle: UnsafeMutablePointer<Int32>! { get set }
  • The secondary text style.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWFTextStyleSpec *detailTextStyle

    Swift

    var detailTextStyle: UnsafeMutablePointer<Int32>! { get set }