Package com.tomtom.sdk.navigation.matching

Types

Link copied to clipboard
interface MapMatchingEngine : Disposable

Improves the position accuracy by attempting to match it to map or route.

Link copied to clipboard
data class MapMatchingResult(val matchedLocation: MatchedLocation, val followedRouteIds: List<String> = emptyList())

Represents a map matcher output.

Link copied to clipboard
data class MatchedLocation(    val location: GeoLocation,     val locationPrediction: LocationPrediction = LocationPrediction(emptyList()),     val matchedMapPosition: MapPosition? = null)

Represents location matched to the map.

Link copied to clipboard
class TomTomMapMatchingEngine : MapMatchingEngine

MapMatchingEngine implementation which improves the position accuracy by attempting to match it to the Route or map data.