FeedbackType
public enum FeedbackType: Int, CustomStringConvertible
                Feedback type is used to specify the type of feedback being recorded with RouteController.recordFeedback().
- 
                  
                  
Indicates general feedback. You should provide a
descriptionstring toRouteController.recordFeedback()to elaborate on the feedback if possible.Declaration
Swift
case general 
- 
                  
                  
Identifies the feedback as the location of an accident or crash
Declaration
Swift
case accident 
- 
                  
                  
Identifies the feedback as the location of a road hazard such as debris, stopped vehicles, etc.
Declaration
Swift
case hazard 
- 
                  
                  
Identifies the feedback as the location of a closed road that should not allow vehicles
Declaration
Swift
case roadClosed 
- 
                  
                  
Identifies the feedback as a turn that isn’t allowed. For example, if a user is instructed to make a left turn, but the turn isn’t allowed.
Declaration
Swift
case unallowedTurn 
- 
                  
                  
Identifies the feedback as the location of a poor instruction or route choice. This could be used to indicate an ambiguous or poorly-timed turn announcement, or a set of confusing turns.
Declaration
Swift
case routingError 
- 
                  
                  
Declaration
Swift
public var description: String 
              Install in Dash
            
        FeedbackType Enum Reference