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

Types

Link copied to clipboard
data class TurnAroundWhenPossibleInstruction(    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) : Instruction

Instruction indicating the driver should turn around when it is possible.