MergeGuidanceInstruction
data class MergeGuidanceInstruction(val mergeSide: MergeSide?, val id: UniqueId, val routeOffset: Distance, val maneuverPoint: GeoPoint, val drivingSide: DrivingSide, val combineWithNext: Boolean, val previousSignificantRoad: Road? = null, val nextSignificantRoad: Road? = null, val routePath: List<InstructionPoint> = emptyList(), val intersectionName: String = "", val signpost: Signpost? = null) : GuidanceInstruction
Guidance Instruction indicating a merge onto another road.
See also
Parameters
mergeSide
Indicates the side of the road ahead at which the merge takes place, if available.
Constructors
Link copied to clipboard
fun MergeGuidanceInstruction(mergeSide: MergeSide?, id: UniqueId, routeOffset: Distance, maneuverPoint: GeoPoint, drivingSide: DrivingSide, combineWithNext: Boolean, previousSignificantRoad: Road? = null, nextSignificantRoad: Road? = null, routePath: List<InstructionPoint> = emptyList(), intersectionName: String = "", signpost: Signpost? = null)