Package-level declarations

Types

Link copied to clipboard
data class RouteProgress(val remainingTime: Duration = Duration.ZERO, val distanceAlongRoute: Distance = Distance.ZERO, val remainingRouteStopsProgress: List<RouteStopsProgress> = emptyList())

Represents progress along the route.

Link copied to clipboard

Responsible for determining the progress made so far along the current route.

Link copied to clipboard
Link copied to clipboard
data class RouteStopsProgress(val routeStopId: RouteStopId, val remainingTime: Duration = Duration.ZERO, val remainingDistance: Distance = Distance.ZERO)

Represents current progress along the route till given com.tomtom.sdk.route.RouteStop.