RoadClass
public enum RoadClass
RoadClass is used alongside ControlPoint
, and influences the follow route camera operator behavior.
RoadClass categorizes roads by speed limit, and it controls controls the operator’s
interaction with mapping and navigation processes.
-
Value representing a road with a speed limit above 100 kmph.
Declaration
Swift
case speedLimitAbove100
-
Value representing a road with a speed limit between 70 to 99 kmph.
Declaration
Swift
case speedLimit70To99
-
Value representing a road with a speed limit between 50 to 69 kmph.
Declaration
Swift
case speedLimit50To69
-
Value representing a road with a speed limit between 20 to 49 kmph.
Declaration
Swift
case speedLimit20To49
-
Value representing a road with a speed limit between 0 to 19 kmph.
Declaration
Swift
case speedLimit0To19
-
Value representing a default value that will be applied to every road.
Declaration
Swift
case `default`