Package-level declarations

Types

Link copied to clipboard

Possible directions reachable from a lane.

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

Contains information about a lane, specifically the set of directions within the lane along which a driver may drive. If this lane leads along the route, one direction is marked as the one which the driver must follow. If the lane does not lead along the route, the follow parameter is null.

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

Represents a route section with a consistent lane configuration. If the number of lanes or the lane separators change, these will be reported as separate LaneSections.

Link copied to clipboard

Defines separators between Lanes, including road markings and barriers.