abstract class MatchResult
Base class that contains matcheing results.
MatchResult()
Base class that contains matcheing results. |
var isMatched: Boolean
Indicates whether the location was correctly matched or not. This flag can be used to change the chevron color to inform a user that the matched location can be considered as trusty. |
|
lateinit var matchedLocation: Location
Matched location. |
|
lateinit var originalLocation: Location
Original location, from GPS. |
abstract fun accept(visitor: MatchResultVisitor): Unit |
class MapMatchResult : MatchResult
Class that contains the map matcher result. |
|
class RouteMatchResult : MatchResult
The Route matcher result. |