Car
data class Car(val maxSpeed: Speed? = null, val isCommercial: Boolean = false, val electricEngine: ElectricEngine? = null, val combustionEngine: CombustionEngine? = null, val dimensions: VehicleDimensions? = null, val modelId: String? = null) : Vehicle, Motorized
A vehicle of type car.
Note: The parameters maxSpeed and dimensions are not yet supported with the Orbis map. Note: The parameter combustionEngine is not supported when chargingOptions are set in com.tomtom.sdk.routing.options.RoutePlanningOptions..
Parameters
maxSpeed 
The car's maximum speed.
isCommercial 
If true, the vehicle is used for commercial purposes and thus may not be allowed to drive on some roads.
electricEngine 
The vehicle's electric engine for route and consumption calculation.
combustionEngine 
The vehicle's combustion engine for route and consumption calculation.
dimensions
The car's dimensions.
modelId 
Specifies the Model ID of the vehicle as obtained from the TomTom Vehicle Database. It allows calculating an EV route without specifying the vehicle's consumption and charging parameters.
Constructors
Link copied to clipboard
                  constructor(maxSpeed: Speed? = null, isCommercial: Boolean = false, electricEngine: ElectricEngine? = null, combustionEngine: CombustionEngine? = null, dimensions: VehicleDimensions? = null, modelId: String? = null)