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 rawLocation: GeoLocation,     val locationPredictions: List<GeoLocation>,     val followedRouteIds: List<RouteId>,     val matchedMapPosition: MapPosition? = null)

Represents a map matcher output.

Link copied to clipboard
data class MatchedLocation(val location: GeoLocation)

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.