Package com.tomtom.sdk.common.route.instruction.merge

Types

Link copied to clipboard
data class MergeInstruction(    val id: UniqueId = UniqueId(),     val routeOffset: Distance,     val travelTime: Duration,     val maneuverPoint: GeoCoordinate,     val junctionType: JunctionType? = null,     val drivingSide: DrivingSide,     val isPossibleToCombineWithNext: Boolean,     val announcements: List<Announcement> = emptyList(),     val maneuverType: Maneuver? = null,     val previousSignificantRoad: RoadInformation? = null,     val nextSignificantRoad: RoadInformation? = null,     val routePath: List<RouteCoordinate> = emptyList(),     val intersectionName: String = "",     val signpost: Signpost? = null,     val startPointIndex: Int = 0,     val mergeSide: MergeSide? = null) : Instruction

Instruction indicating a merge onto another road.

Link copied to clipboard
enum MergeSide : Enum<MergeSide>

Indicates the side of the road of a merge.