Package-level declarations

Types

Link copied to clipboard
data class ActiveRoute(val routePlan: RoutePlan, val proposedRoute: <Error class: unknown class>?)

ActiveRoute class contains an active RoutePlan and an optional Route proposal.

Link copied to clipboard
data class ConfigurationSnapshot(val unitSystem: <Error class: unknown class> = UnitSystem.Metric, val language: Locale = Locale.ENGLISH)

Snapshot of the current navigation configuration.

Link copied to clipboard
data class DrivingHistorySnapshot(val drivenPath: List<<Error class: unknown class>> = emptyList())

A structure containing information about things in the route that the driver has already passed, such as visited locations and driven distance.

Link copied to clipboard
data class LocationSnapshot(val rawLocation: <Error class: unknown class>, val mapMatchingResult: MapMatchingResult, val locationContext: LocationContext)

Snapshot of current location information during navigation.

Link copied to clipboard
data class NavigationSnapshot(val locationSnapshot: LocationSnapshot, val historySnapshot: DrivingHistorySnapshot, val configurationSnapshot: ConfigurationSnapshot, val vehicleProfile: <Error class: unknown class> = Vehicle.Car(), val tripSnapshot: TripSnapshot? = null)

Snapshot of the current navigation session.

Link copied to clipboard
data class RoutePlan(val route: <Error class: unknown class>, val routePlanningOptions: <Error class: unknown class>)

Options to specify all required parameters for a single navigation session.

Link copied to clipboard
data class RouteSnapshot(val routePlan: RoutePlan, val projection: ProjectedRoute? = null, val numberOfVisitedWaypoints: Int = 0, val nextWaypoint: <Error class: unknown class>? = null, val routeProgress: RouteProgress = RouteProgress(), val isFollowed: Boolean = true, val waypointArrivalHistory: List<WaypointArrivalStatus> = emptyList())

Snapshot of the current route.

Link copied to clipboard
data class TripSnapshot(val activeRoute: RouteSnapshot, val betterProposal: RouteSnapshot? = null, val hasDeviated: Boolean = false, val hasReachedDestination: Boolean = false)

A structure containing information about the route.