BlueDot
public struct BlueDot : Codable
BlueDot
holds the properties of values to be set when enabling blue dot
-
Whether blue dot is allowed to have implicit floor level
Declaration
Swift
public var allowImplicitFloorLevel: Bool?
-
Whether blue dot should be smoothing
Declaration
Swift
public var smoothing: Bool?
-
Whether blue dot should show bearing
Declaration
Swift
public var showBearing: Bool?
-
Set the color of the blue dot
Declaration
Swift
public var baseColor: String?
-
Construct a
MPIOptions.BlueDot
object with the given propertiesDeclaration
Swift
public init( allowImplicitFloorLevel: Bool? = nil, smoothing: Bool? = nil, showBearing: Bool? = nil, baseColor: String? = nil )
Parameters
allowImplicitFloorLevel
whether allows for implicit floor level
smoothing
whether the blue dot should be smoothing
showBearing
whether the blue dot should show bearing
baseColor
set the base color of blue dot in hex string (example: “0x2266ff”) or color string (example: “red”)