Generic vehicle parameters without specific engine type.
Use for vehicles where engine type doesn't matter for routing, or when you want to specify only basic restrictions.
const params: GenericVehicleParams = { model: { dimensions: { heightMeters: 2.5, weightKG: 3500 } }}; Copy
const params: GenericVehicleParams = { model: { dimensions: { heightMeters: 2.5, weightKG: 3500 } }};
Optional
Model (static properties) of the vehicle with generic/unspecified engine type.
Includes dimensions and other characteristics that don't change during travel.
Generic vehicle preferences for unspecified engine type.
Currently no generic preferences exist; this is for future extensibility.
State of the vehicle with generic/unspecified engine type.
Includes current heading and other properties that vary during travel.
Generic vehicle parameters without specific engine type.
Remarks
Use for vehicles where engine type doesn't matter for routing, or when you want to specify only basic restrictions.
Example