RoadType
public enum RoadType
Classifies roads according to their purpose and function. The road-type classification can be used for efficient traffic flow management, avoidance of specific routes based on selected criteria, and visual differentiation of road segments on the map.
-
Value representing a normal road.
Declaration
Swift
case noSpecial -
Value representing a road that connects two roads at different grades, or an entrance or exit between controlled access and non-controlled access network.
Declaration
Swift
case ramp -
Value representing a road that is located within the closed loop of a roundabout.
Declaration
Swift
case roundabout -
Value representing a road that is parallel to one part of a controlled access road.
Declaration
Swift
case parallel -
Value representing a road for local urban access in parallel to a main road, usually of a higher class.
Declaration
Swift
case serviceRoad -
Value representing a main road relative to a service road.
Declaration
Swift
case mainRoad -
Value representing a road that is a part of a square. A square is a paved area where a car can travel but there are no legally defined traffic paths.
Declaration
Swift
case square -
Value indicating that a road is an entry, a part, or an exit of a service facility like motorway rest area, parking facility or golf course.
Declaration
Swift
case serviceAccess -
Value representing a road that is a part of pedestrian zone.
Declaration
Swift
case pedestrianZone -
Value representing a pedestrian road.
Declaration
Swift
case pedestrian -
Value representing a road that is inside a roundabout.
Declaration
Swift
case roundaboutInterior -
Value representing a road that is a slip road or crossing at grade.
Declaration
Swift
case slipRoad -
Value representing a road that is a part of constructions with similar exit behavior to the exit behavior of a roundabout. However, it can be a closed circular or elongated or even rectangular construction of roads which is not recognized as a roundabout.
Declaration
Swift
case specialTrafficFigure -
Value representing a road that is a boundary of an area e.g. a Country.
Declaration
Swift
case boundary
RoadType Enumeration Reference