HERE Maps API - Setting the language
hamishwillee
(Talk | contribs) m (moved Ovi Maps API - Setting the language to Nokia Maps API - Setting the language: Rebranding) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Add dependencies field to ArticleMetaData) |
||
| Line 1: | Line 1: | ||
[[Category:Web]][[Category:Browser]][[Category:Nokia Maps]][[Category:Code Snippet]] | [[Category:Web]][[Category:Browser]][[Category:Nokia Maps]][[Category:Code Snippet]] | ||
{{Abstract|This article explains how to set the map interface language and how to display more language information }} | {{Abstract|This article explains how to set the map interface language and how to display more language information }} | ||
| + | |||
{{ArticleMetaData | {{ArticleMetaData | ||
|sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
| Line 8: | Line 9: | ||
|platform= Web browser | |platform= Web browser | ||
|devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| − | |dependencies= | + | |dependencies=Nokia Maps 2.1.0 |
|signing=<!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | |signing=<!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | ||
|capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
Revision as of 02:39, 2 January 2012
This article explains how to set the map interface language and how to display more language information
Article Metadata
Compatibility
Article
Setting the map interface language
To set the language, use the following:
nokia.maps.packages.load("language", "de-DE");
For the language, define it in format of ISO3166-1 alpha-2 country code, e.g. "en-US", "de-DE" and so on.
Getting more language information
When you want to display more information, use the class nokia.maps.language.Info.
It has a method called "getDefinition (code, [definitions]) : Object".
This will retrieve the language meta data for a given LCID. The lookup will be done in two steps: First the full LCID (ISO-639-1 AND ISO-3166-1 alpha-2) will be matched. If the full LCID cannot be found the more general form (ISO-639-1 only) will be matched.
An example of using the getDefinition:
>>> mylanguage = nokia.maps.language.Info;
Would return:
Object { definitions={...}, translations={...}, more...}
then...
>>> mylanguage.getDefinition("de-DE");
would return e.g:
Object { key="de", iso639_1="de", more...}
Summary
Please check out the chapter http://api.maps.nokia.com/2.1.0/apireference/symbols/nokia.maps.language.html for more information on languages.

