HereSDKFeatureStyle

@interface HereSDKFeatureStyle : NSObject <NSCopying>

An object that stores the style for map features

  • Fill color of the feature. Default is UIColor.blueColor.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) UIColor *_Nonnull color;

    Swift

    var color: UIColor { get set }
  • Feature outline color. Default is nil.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic, nullable) UIColor *borderColor;

    Swift

    var borderColor: UIColor? { get set }
  • Width in points of the feature outline. Default is 0.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) NSUInteger borderWidth;

    Swift

    var borderWidth: UInt { get set }