HighlightOption
Objective-C
enum HighlightOption : NSInteger {}
Swift
enum HighlightOption : Int, @unchecked Sendable
Constants indicating the landmark highlight option.
-
Shows landmark icon & text ( default ).
Declaration
Objective-C
HighlightOptionShowLandmark = 0x01
Swift
case showLandmark = 1
-
Shows landmark impact area contour ( when available ). @details By default, the option is true.
Declaration
Objective-C
HighlightOptionShowContour = 0x2
Swift
case showContour = 2
-
Groups landmarks. @details This option is available only in conjunction with HighlightOptionsShowLandmark. @details By default, the option is false.
Declaration
Objective-C
HighlightOptionGroup = 0x4
Swift
case group = 4
-
Overlap highlight over existing map data @details This option is available only in conjunction with HighlightOptionsShowLandmark. @details By default, the option is false.
Declaration
Objective-C
HighlightOptionOverlap = 0x8
Swift
case overlap = 8
-
Disable highlight fading in / out. @details This option is available only in conjunction with HighlightOptionsShowLandmark. @details By default, the option is false.
Declaration
Objective-C
HighlightOptionNoFading = 0x10
Swift
case noFading = 16
-
Bubble display @details The highlights are displayed in a bubble with custom icon placement inside the text. @details This option is available only in conjunction with HighlightOptionsShowLandmark. @details This option will automatically invalidate the HighlightOptionsGroup. @details By default, the option is false.
Declaration
Objective-C
HighlightOptionBubble = 0x20
Swift
case bubble = 32
-
Selectable @details This option is available only in conjunction with ShowLandmark. @details By default, the option is false.
Declaration
Objective-C
HighlightOptionSelectable = 0x40
Swift
case selectable = 64