Preferences specific to electric vehicles.
Contains EV-specific routing preferences, primarily for long-distance trips with charging stops.
const evPrefs: ElectricVehiclePreferences = { chargingPreferences: { minChargeAtDestinationPCT: 20, minChargeAtChargingStopsPCT: 10 }}; Copy
const evPrefs: ElectricVehiclePreferences = { chargingPreferences: { minChargeAtDestinationPCT: 20, minChargeAtChargingStopsPCT: 10 }};
Optional
Charging preferences for Long Distance EV Routing.
Specifying these preferences will trigger the calculation of charging stops along your route. Requires the ElectricConsumptionModel to be set.
When Charging Stops Are Added:
Long Distance EV Routing
chargingPreferences: { minChargeAtDestinationPCT: 20, minChargeAtChargingStopsPCT: 10} Copy
chargingPreferences: { minChargeAtDestinationPCT: 20, minChargeAtChargingStopsPCT: 10}
Preferences specific to electric vehicles.
Remarks
Contains EV-specific routing preferences, primarily for long-distance trips with charging stops.
Example