BorderCrossingGuidanceInstruction
data class BorderCrossingGuidanceInstruction(val borderCrossing: BorderCrossing, 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 that a border between two countries will be crossed.
Constructors
Link copied to clipboard
constructor(borderCrossing: BorderCrossing, 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)
Properties
Link copied to clipboard
Border crossing information.
Link copied to clipboard
Indicates if the instruction should be combined with the next one.
Link copied to clipboard
Indicates left-hand vs. right-hand side driving at the point of the maneuver.
Link copied to clipboard
Name of the intersection at the maneuver point, if present for this instruction.
Link copied to clipboard
Location of the maneuver expressed as a GeoPoint.
Link copied to clipboard
Information about the road the driver will be on immediately after completing the maneuver, if available for this instruction.
Link copied to clipboard
Information about the road the driver will be on immediately before starting the maneuver, if available for this instruction.
Link copied to clipboard
Distance from the start of the route to the instruction point.
Link copied to clipboard
A List of RoutePoints that represents a route path.