AnnouncementPoint

data class AnnouncementPoint(    val maneuver: AnnouncementManeuver? = null,     var verbalMessage: String? = null,     var phonetics: Phonetics? = null,     var nextManeuver: AnnouncementManeuver? = null)

Represents Verbal Message AnnouncementPoint.

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

maneuver

A code identifying the maneuver (e.g., 'Turn right').

verbalMessage

A human-readable message for the maneuver.

phonetics

Phonetic transcription of the verbal message.

nextManeuver

Optional maneuver of the next instruction.

Constructors

Link copied to clipboard
fun AnnouncementPoint(    maneuver: AnnouncementManeuver? = null,     verbalMessage: String? = null,     phonetics: Phonetics? = null,     nextManeuver: AnnouncementManeuver? = null)

Properties

Link copied to clipboard
val maneuver: AnnouncementManeuver? = null
Link copied to clipboard
var nextManeuver: AnnouncementManeuver? = null
Link copied to clipboard
var phonetics: Phonetics? = null
Link copied to clipboard
var verbalMessage: String? = null