VenueScooterSpecification
public struct VenueScooterSpecification : Hashable
Contains venue scooter specific settings.
-
Speed in meters per second for venue scooter 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 scooter 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)