AnnouncementType
public enum AnnouncementType : Int
Represents different guidance announcement types, which are used to prepare the driver for the maneuver.
It is used while creating a TomTomSDKNavigationEngines/GuidanceAnnouncement
to specify the type of the announcement.
-
Warning announcement.
Declaration
Swift
case warning = 0
-
Follow the announcement executed at any distance bigger than Far Away Instruction phase.
Declaration
Swift
case guidanceFollow = 1
-
Far away announcement executed earliest on the route and informs the driver that there is an upcoming maneuver.
Declaration
Swift
case guidanceFarAway = 2
-
Early announcement executed closer to maneuver point and informs the driver to prepare for the upcoming maneuver and plan the path.
Declaration
Swift
case guidanceEarly = 3
-
Main announcement executed at a short time before the maneuver.
Declaration
Swift
case guidanceMain = 4
-
Confirmation announcement executed at the time of the maneuver itself.
Declaration
Swift
case guidanceConfirmation = 5
-
Returns the string representation of the announcement type.
Declaration
Swift
public var stringValue: String { get }