VenueCarSpecification
public struct VenueCarSpecification : Hashable
Contains venue car specific settings.
-
Speed in meters per second for venue car routing. The provided value must be in the range [2.0, 5.0]. Defaults to a speed of 5 meters per second.
Declaration
Swift
public var speedInMetersPerSecond: Double -
Defines where the car transport mode is enabled along the route. Defaults to
EnableOption.notSpecific.Declaration
Swift
public var enableOption: EnableOption -
Creates a new instance.
Declaration
Swift
public init(speedInMetersPerSecond: Double = 5.0, enableOption: EnableOption = EnableOption.notSpecific)