TurnGuidanceInstruction
data class TurnGuidanceInstruction( val turnAngle: Angle, val turnDirection: TurnDirection, 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 turn at a road junction.
Parameters
turnAngle
Turn angle relative to the driving direction along the route. Expressed in the range -180...180 degrees.
turnDirection
Classification of the relative angle of the turn.
See also
Constructors
Link copied to clipboard
constructor( turnAngle: Angle, turnDirection: TurnDirection, 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)