Package-level declarations

Types

Link copied to clipboard
data class RoutePointProgress(val routePointId: RoutePointId, val remainingTime: Duration = Duration.ZERO, val remainingDistance: Distance = Distance.ZERO)

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

Link copied to clipboard
data class RouteProgress(val remainingTime: Duration = Duration.ZERO, val distanceAlongRoute: Distance = Distance.ZERO, val remainingRoutePointsProgress: List<RoutePointProgress> = 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