Package com.tomtom.sdk.common.route.section.lane

Types

Link copied to clipboard
enum Direction : Enum<Direction>

Possible lane directions.

Link copied to clipboard
data class Lane(val directions: List<Direction>, val follow: Direction? = null)

Contains lane information including lane direction. Where possible, indicates which lane the driver should follow.

Link copied to clipboard
data class LaneSection(    val geometry: List<GeoCoordinate>,     val routeOffset: Distance,     val length: Distance,     val lanes: List<Lane>,     val laneSeparators: List<LaneSeparator>) : Section

Represents a route section with lane section available.

Link copied to clipboard
enum LaneSeparator : Enum<LaneSeparator>

Defines separators between Lanes.