Package-level declarations

Types

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

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
class RouteStopProgress(val routeStopId: RouteStopId, val remainingTime: Duration, val remainingDistance: Distance)

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