Package-level declarations
Types
Link copied to clipboard
class EVRoutePlan(val departures: List<GeoPoint>, val destinations: List<GeoPoint>, val viaPoints: List<GeoPoint>, val routeOptions: EVRouteOptions) : RoutePlan
Class defining all the required information needed to calculate an EV route. If we define a route from A->B->C->D A - startPoint B,C - via-points D -> stopPoint
Link copied to clipboard
Link copied to clipboard
This class defines a Route Planner that allows you to perform route computations through an inter-connected road network.
Link copied to clipboard
data class RechargeParameters(var socMin: Double = defaultSocMin, var socMinArrival: Double = defaultSocMinAtArrival, var socMax: Double = defaultSocMaxValue, var stopFixedTime: Int = defaultStopFixedTime, var chargingPointFilter: ChargingPointFilter = ChargingPointFilter(), var useRecommendedMaxSpeed: Boolean = false)
Class containing information about recharge parameters used during an ev-routing.
Link copied to clipboard
open class RoutePlan(val departures: List<GeoPoint>, val destinations: List<GeoPoint>, val viaPoints: List<GeoPoint>, val routeOptions: RouteOptions)
Class defining all the required information needed to calculate a route. If we define a route from A->B->C->D A - startPoint B,C - via-points D -> destination