Phonetics

data class Phonetics(    val street: String = "",     val streetLanguageCode: String = "",     val roadNumbers: List<String> = emptyList(),     val roadNumbersLanguageCodes: List<String> = emptyList(),     val signPostText: String = "",     val signPostTextLanguageCode: String = "")

Phonetic strings of all of the readable Instruction properties.

Parameters

street

Phonetic string for street.

streetLanguageCode

Code for the language in which street is encoded.

roadNumbers

Phonetic strings for road numbers.

roadNumbersLanguageCodes

Codes for the languages in which the roadNumbers are encoded.

signPostText

Phonetic string for signpost text.

signPostTextLanguageCode

Code for the language in which the signPostText is encoded.

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

Constructors

Link copied to clipboard
fun Phonetics(    street: String = "",     streetLanguageCode: String = "",     roadNumbers: List<String> = emptyList(),     roadNumbersLanguageCodes: List<String> = emptyList(),     signPostText: String = "",     signPostTextLanguageCode: String = "")

Properties

Link copied to clipboard
val roadNumbers: List<String>
Link copied to clipboard
val roadNumbersLanguageCodes: List<String>
Link copied to clipboard
val signPostText: String
Link copied to clipboard
val signPostTextLanguageCode: String
Link copied to clipboard
val street: String
Link copied to clipboard
val streetLanguageCode: String