SupportedLanguage

public enum SupportedLanguage : String, CaseIterable

A list of languages that our maps support for localization

  • Support for Arabic (if available)

    Declaration

    Swift

    case arabic = "ar"
  • Support for Chinese (if available)

    Declaration

    Swift

    case chinese = "zh"
  • Support for English (if available)

    Declaration

    Swift

    case english = "en"
  • Support for French (if available)

    Declaration

    Swift

    case french = "fr"
  • Support for German (if available)

    Declaration

    Swift

    case german = "de"
  • Support for Italian (if available)

    Declaration

    Swift

    case italian = "it"
  • Support for Japanese (if available)

    Declaration

    Swift

    case japanese = "ja"
  • Support for Korean (if available)

    Declaration

    Swift

    case korean = "ko"
  • Support for Portuguese (if available)

    Declaration

    Swift

    case portuguese = "pt"
  • Support for Russian (if available)

    Declaration

    Swift

    case russian = "ru"
  • Support for Simplified Chinese (if available)

    Declaration

    Swift

    case simplifiedChinese = "zh-Hans"
  • Support for Spanish (if available)

    Declaration

    Swift

    case spanish = "es"
  • Support for Traditional Chinese (if available) NOTE: note supported in v7 styles

    Declaration

    Swift

    case traditionalChinese = "zh-Hant"
  • Support for Vietnamese (if available)

    Declaration

    Swift

    case vietnamese = "vi"