ExitRoundaboutGuidanceInstruction
data class ExitRoundaboutGuidanceInstruction( val id: UniqueId, val routeOffset: Distance, val travelTime: Duration, val maneuverPoint: GeoCoordinate, val drivingSide: DrivingSide, val combineWithNext: Boolean, val previousSignificantRoad: RoadInformation? = null, val nextSignificantRoad: RoadInformation? = null, val routePath: List<RouteCoordinate> = emptyList(), val intersectionName: String = "", val signpost: Signpost? = null, val turnAngleInDegrees: Int, val exitNumber: Int? = null, val roundaboutDirection: RoundaboutDirection, val quantizedTurnAngle: QuantizedTurnAngle? = null) : GuidanceInstruction
Content copied to clipboard
Guidance Instruction indicating an exit from a roundabout.
Important: This is a Public Preview API. It may be changed or removed at any time.
See also
Parameters
turnAngleInDegrees
turn angle relative to the driving direction on the entry road to the roundabout, in the range -180...180 degrees.
exitNumber
exit number where the driver should leave the roundabout, counted from the entry point to the roundabout. If the route starts on the roundabout, counting starts from the departure point.
roundaboutDirection
classification of the main direction to take at the roundabout.
quantizedTurnAngle
classification of the turn angle relative to the driving direction on the entry road to the roundabout, if available.
Constructors
Link copied to clipboard
fun ExitRoundaboutGuidanceInstruction( id: UniqueId, routeOffset: Distance, travelTime: Duration, maneuverPoint: GeoCoordinate, drivingSide: DrivingSide, combineWithNext: Boolean, previousSignificantRoad: RoadInformation? = null, nextSignificantRoad: RoadInformation? = null, routePath: List<RouteCoordinate> = emptyList(), intersectionName: String = "", signpost: Signpost? = null, turnAngleInDegrees: Int, exitNumber: Int? = null, roundaboutDirection: RoundaboutDirection, quantizedTurnAngle: QuantizedTurnAngle? = null)
Content copied to clipboard
Properties
Link copied to clipboard
Location of the maneuver expressed as a GeoCoordinate.
Link copied to clipboard
A List of RouteCoordinates that represents a route path.