Guided Route Profile
data class GuidedRouteProfile @JvmOverloads constructor(val polyline: List<GeoCoordinates>, val pointPrecisions: List<Int>? = null, val candidateRanges: List<Int>? = null, val pointTimestamps: List<Int>? = null, val distanceFilter: Int = 30) : Parcelable
Constructors
Properties
Link copied to clipboard
Search area radius for each point, in which road candidates are searched.
Link copied to clipboard
Filter points closer than provided distance. Value should be greater than 0. Default value is 30 meters NOTE: If pointPrecisions, candidateRanges or pointTimestamps are not the same size as polyline, they will be ignored
Link copied to clipboard
Gps precision in meters for each point in polyline.
Link copied to clipboard
Gps relative timestamp in milliseconds for each point in polyline. Used for filtering. Timestamps represent relative time sequence of positions as they have appeared (e.g from gps signal).
Link copied to clipboard
Google polyline representation of route