Package-level declarations

Types

Link copied to clipboard

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<GeoPoint>, 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

Defines separators between Lanes.