HighlightRenderSettings
Objective-C
@interface HighlightRenderSettings : NSObject
Swift
class HighlightRenderSettings : NSObject
An object that manages landmark highlights render settings.
-
The highlight options.
Declaration
Objective-C
@property (nonatomic) int options;
Swift
var options: Int32 { get set }
-
The highlight contour inner color.
Declaration
Objective-C
@property (nonatomic, strong) UIColor *_Nonnull contourInnerColor;
Swift
var contourInnerColor: UIColor { get set }
-
The highlight contour outer color.
Declaration
Objective-C
@property (nonatomic, strong) UIColor *_Nonnull contourOuterColor;
Swift
var contourOuterColor: UIColor { get set }
-
The highlight contour inner size in mm.
Declaration
Objective-C
@property (nonatomic) double contourInnerSize;
Swift
var contourInnerSize: Double { get set }
-
The highlight contour outer ( border ) size in mm.
Declaration
Objective-C
@property (nonatomic) double contourOuterSize;
Swift
var contourOuterSize: Double { get set }
-
The icon size in mm ( default value from current style ).
Declaration
Objective-C
@property (nonatomic) double imageSize;
Swift
var imageSize: Double { get set }
-
The image position.
Declaration
Objective-C
@property (nonatomic) ImagePosition imagePosition;
Swift
var imagePosition: ImagePosition { get set }
-
The text size in mm ( default value from current style ).
Declaration
Objective-C
@property (nonatomic) double textSize;
Swift
var textSize: Double { get set }
-
The text color ( default value from current style ).
Declaration
Objective-C
@property (nonatomic, strong) UIColor *_Nonnull textColor;
Swift
var textColor: UIColor { get set }
-
Highlight pin on the map. Default false. @details This will overwrite the landmark image.
Declaration
Objective-C
@property (nonatomic) BOOL showPin;
Swift
var showPin: Bool { get set }