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

Types

Link copied to clipboard
data class MandatoryTurnInstruction(    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 turnAngleInDegrees: Int,     val turnDirection: TurnDirection) : Instruction

Instruction indicating a turn which is legally required.