primaryLanguage property

LanguageCode? primaryLanguage

The code of desired primary map display language.

Implementation

static LanguageCode? get primaryLanguage => $prototype.primaryLanguage;
void primaryLanguage=(LanguageCode? languageCode)

Sets the desired primary map display language for all instances of MapView to languageCode. Applying a language change causes map to be redrawn. If null or the specified language is not supported, local language of the region will be used which is the default behaviour.

Implementation

static void set primaryLanguage(LanguageCode? languageCode) {
  $prototype.primaryLanguage = languageCode;
}