PassiveNavigationFeedbackType
public enum PassiveNavigationFeedbackType : FeedbackType
Feedback type is used to specify the type of feedback being recorded with NavigationEventsManager.sendPassiveNavigationFeedback(_:type:description:).
-
Indicates an incorrect visual.
Declaration
Swift
case incorrectVisual(subtype: PassiveNavigationIncorrectVisualSubtype?) -
Indicates a road closure was observed.
Declaration
Swift
case roadIssue(subtype: PassiveNavigationRoadIssueSubtype?) -
Indicates a wrong traffic.
Declaration
Swift
case wrongTraffic(subtype: PassiveNavigationWrongTrafficSubtype?) -
The user’s location is not matching the real position of the vehicle.
Declaration
Swift
case badGPS -
Indicates a custom feedback type and subtype.
Declaration
Swift
case custom(type: String, subtype: String?) -
Indicates other feedback. You should provide a
descriptionstring toNavigationEventsManager.sendPassiveNavigationFeedback(_:type:description:)to elaborate on the feedback if possible.Declaration
Swift
case other -
Declaration
Swift
public var typeKey: String { get } -
Declaration
Swift
public var subtypeKey: String? { get }
Install in Dash
PassiveNavigationFeedbackType Enumeration Reference