LocationContext
public struct LocationContext : Equatable
LocationContext provides information about the driver’s location, which has been matched against the road network.
Important
This is a Public Preview API. It may be changed or removed at any time.-
Initializes the
LocationContext
instance with the speed, speed limit and street name.- speed: Current speed with
UnitSpeed
set tokilometersPerHour
. - speedLimit: Speed limit of the current road segment.
- road: Road of the current segment.
- address: Address of the current road segment.
Declaration
Swift
public init(speed: Measurement<UnitSpeed>, speedLimit: SpeedLimit?, road: Road?, address: Address)
- speed: Current speed with
-
Current speed of the vehicle with
UnitSpeed
set tokilometersPerHour
.Declaration
Swift
public let speed: Measurement<UnitSpeed>
-
Speed limit at the current location. The value is
nil
when the speed limit is unknownDeclaration
Swift
public let speedLimit: SpeedLimit?
-
Road type of the current location.
Declaration
Swift
public let road: Road?
-
Address of current location.
Declaration
Swift
public let address: Address