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

Types

Link copied to clipboard
enum ForkDirection : Enum<ForkDirection>

Indicates the direction to follow at a fork relative to the direction of travel.

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

Instruction indicating an upcoming fork in the road.