Package-level declarations

Types

Link copied to clipboard

Interface to a Map Matcher Engine.

Link copied to clipboard
class MapMatchingResult(val matchedLocation: MatchedLocation, val rawLocation: GeoLocation, val alternativeMatchedLocations: List<MatchedLocation> = emptyList(), val followedRouteIds: List<RouteId> = emptyList())

Output of the map matching engine that represents accurate (map matched) location. This is used in driving mode to snap the chevron shown on the map to the road network. MapMatchingEngine provides an individual map matching result for each raw location.

Link copied to clipboard
class MatchedLocation(val location: GeoLocation, val id: Int, val probability: Probability, val isOnRoad: Boolean, val direction: Angle)

Part of the map matching result that represents a single matched position candidate.