CenterLane

data class CenterLane(val id: LaneIdentifier, val level: Boolean = false, val roadMarkings: List<RoadMarking> = emptyList(), val type: LaneType = LaneType.NONE, val laneMaterial: Option<LaneMaterial>, val attributes: AttributeList = AttributeList.EMPTY)

Represents the center lane of a lane section. This lane has no width and is therefore geometrically represented as line.

Parameters

id

identifier of the lane, whereby the lane id is zero

level

if true, the road markings are kept on level; if false, superelevation is applied to the lane

roadMarkings

list of road markings, which are placed in the middle of the center lane

attributes

information attributes to the lane

Constructors

Link copied to clipboard
constructor(id: LaneIdentifier, level: Boolean = false, roadMarkings: List<RoadMarking> = emptyList(), type: LaneType = LaneType.NONE, laneMaterial: Option<LaneMaterial>, attributes: AttributeList = AttributeList.EMPTY)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val level: Boolean = false
Link copied to clipboard
Link copied to clipboard