Long distance EV routing
Long Distance EV Routing calculates routes for electric vehicles on extended journeys. When you provide an electric vehicle configuration with charging preferences, the calculateRoute method automatically calculates energy consumption, determines optimal charging stop locations, estimates charging time at each stop, and returns an extended route with additional legs for each charging stop.
Activation
Long Distance EV Routing is activated when you provide:
vehicle.preferences.chargingPreferences– Minimum charge at destination/stops
Additionally, these vehicle model parameters become required:
vehicle.model.engine.charging.batteryCurve– Battery charging characteristicsvehicle.model.engine.charging.chargingConnectors– Supported charging connectors
See Vehicle Configuration for the full EV configuration details.
Response structure
See Route Object for the base route structure details.
Routes with charging stops contain additional information:
Route Summary:
totalChargingTimeInSeconds– Total time spent charging (sum of all stops)remainingChargeAtArrivalInPCT– Battery level (in % of maxChargeKWH) when arriving at destinationremainingChargeAtArrivalInkWh– Battery level (in kWh) when arriving at destination
Each Leg Summary:
remainingChargeAtArrivalInPCT– Battery level (in % of maxChargeKWH) at end of this legremainingChargeAtArrivalInkWh– Battery level (in kWh) at end of this leg
Charging Stop Leg Summary:
chargingInformationAtEndOfLeg– Details about the charging stop (if leg ends at one):chargePointOperator– Operator of the charging station name and IDchargingConnectionInfo– Connector type, power, voltage, currentchargingParkExternalId– Unique ID of the charging parkchargingParkName– Name of the charging parkchargingParkOpeningHours– Flag indicating 24/7 operation and time zone offsetchargingParkOperatorName– Name of the charging park operatorchargingParkPowerInkW– Maximum power of the charging parkchargingParkSpeed– Speed category of the charging park (slow, regular, fast, ultra-fast)chargingParkUuid– UUID of the charging parkchargingStopType– Type of charging stop (‘Auto_Generated’ or ‘User_Defined’)chargingTimeInSeconds– Time required to charge to target leveltargetChargeInPCT– Target battery level (in % of maxChargeKWH) after chargingtargetChargeInkWh– Target battery level (in kWh) after charging
Time spent at a charging stop
Charging stops are chosen by the service, so they are not waypoints you can attach options to —
pauseDurationSeconds applies to your stops. What you can set is how much time every charging
stop takes on top of the charging itself, through the charging model:
vehicle: { engineType: 'electric', model: { engine: { charging: { // 15 minutes per stop for parking, plugging in and paying (default 60 seconds) chargingTimeOffsetInSec: 900 } } }}The offset is included in the chargingTimeInSeconds the response reports for each stop, and in
totalChargingTimeInSeconds. How long the charging part itself takes follows from the battery
curve, the connectors and minChargeAtChargingStopsInkWh — raising the minimum charge takes more
energy on board, and so more time.
A leg that ends at a charging stop reports the whole time there as stopTimeInSeconds, the same
field a leg ending at one of your own waiting stops uses. On a route where nothing waits, that value
equals the stop’s chargingTimeInSeconds.
Example
import { calculateRoute } from '@tomtom-org/maps-sdk/services';
const result = await calculateRoute({ locations: [ [4.9041, 52.3676], // Amsterdam [13.4050, 52.5200] // Berlin (long distance) ], vehicle: { engineType: 'electric', model: { engine: { charging: { maxChargeKWH: 75, batteryCurve: [ { stateOfChargeInkWh: 50, maxPowerInkW: 200 }, { stateOfChargeInkWh: 70, maxPowerInkW: 100 }, { stateOfChargeInkWh: 80, maxPowerInkW: 40 }, ], chargingConnectors: [ { currentType: 'DC', plugTypes: ['Combo_to_IEC_62196_Type_2_Base'], efficiency: 0.9, maxPowerInkW: 150 } ] }, consumption: { speedsToConsumptionsKWH: [ { speedKMH: 50, consumptionUnitsPer100KM: 15 }, { speedKMH: 90, consumptionUnitsPer100KM: 18 }, { speedKMH: 120, consumptionUnitsPer100KM: 23 } ] } } }, state: { currentChargePCT: 80 }, preferences: { chargingPreferences: { minChargeAtDestinationPCT: 20, minChargeAtChargingStopsPCT: 10 } } }});
// Route now contains charging stopsconsole.log(`Total legs: ${result.features[0].properties.sections.leg.length}`);console.log(`Total charging time: ${result.features[0].properties.summary.totalChargingTimeInSeconds}s`);Unsupported options
costModel.routeType– only ‘fast’ is supported (default)
API reference
- CalculateRouteParams – Route calculation parameters
- VehicleParameters – Vehicle configuration
- ChargingStop – Charging stop details
- Long Distance EV Routing API – API documentation
Related guides and examples
Related guides
- Route Planning Parameters – All routing options
- Vehicle Configuration – Complete guide to EV parameters
- Route Object – Understanding route structure
Related examples
- LDEVR preferences playground – Tune the charging preferences and see where the charging time goes