HERE Maps API - getting and setting the default language in application context
hamishwillee
(Talk | contribs) m (moved Ovi Maps API - Getting and setting the default language in application context to Nokia Maps API - getting and setting the default language in application context: Rebrand of Ovi Maps to Nokia Maps) |
m (Jasfox - - →Implementation) |
||
| (12 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category: | + | [[Category:Nokia Maps]][[Category:Code Snippet]][[Category:JavaScript]] |
| + | {{Abstract|This articles shows how to get and set the default language in application context. }} | ||
{{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]] --> | ||
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| − | |devices= | + | |devices= Internet Explorer, Google Chrome, Firefox, Opera |
|sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
| − | |platform= | + | |platform= Web browsers |
|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.2.3 |
|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. --> | ||
| − | |keywords= | + | |keywords= Nokia Maps, JavaScript, default language |
|id= <!-- Article Id (Knowledge base articles only) --> | |id= <!-- Article Id (Knowledge base articles only) --> | ||
|language=<!-- Language category code for non-English topics - e.g. Lang-Chinese --> | |language=<!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| Line 20: | Line 21: | ||
|author=[[User:Maveric]] | |author=[[User:Maveric]] | ||
}} | }} | ||
| − | + | {{SeeAlso| | |
| − | + | * [http://developer.here.net/javascript_api Nokia Maps API] | |
| − | Nokia Maps API - | + | * [http://www.developer.nokia.com/Community/Wiki/Nokia_Maps_API_-_Setting_the_language Setting the Language] |
| + | * [http://developer.here.net/apiexplorer/examples/api-for-js/map/map-change-language.html Changing the language of the map] }} | ||
==Prerequisites== | ==Prerequisites== | ||
| Line 28: | Line 30: | ||
Nokia Maps API supported web browser (basically any modern web browser) | Nokia Maps API supported web browser (basically any modern web browser) | ||
| − | ==Important about | + | ==Important note about maps credentials== |
| − | + | Nokia provides several services options within the Maps API offering. The service is free to use, but you must obtain and use authentication and authorization credentials to use the services. Please read the | |
| + | [http://developer.here.net/terms_conditions Terms and Conditions] and check the [http://developer.here.net/web/guest/plans Pricing Plans page] to decide which business model best fits your needs. Authentication requires unique Maps API credentials, namely an AppId and a token. You can get these credentials free for free following the instructions [http://developer.here.net/docs/maps_js/topics/credentials.html#acquiring-credentials here] | ||
==Implementation== | ==Implementation== | ||
| − | This is a full HTML & JavaScript example. | + | This is a full HTML & JavaScript example. Add in your own [[How to Obtain Your Own Nokia appID and Token| AppId and Token]] and feel free to modify and use for your own purposes. |
| − | + | <code javascript> | |
| − | <code | + | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| − | <html> | + | <html xmlns="http://www.w3.org/1999/xhtml"> |
| − | < | + | <head> |
| − | + | <meta http-equiv="content-type" content= | |
| − | < | + | "text/html; charset=us-ascii" /> |
| + | <meta http-equiv="X-UA-Compatible" content="IE=7; IE=EmulateIE9" /> | ||
| + | <title>Setting the map language</title> | ||
| + | <!-- This file loads up a map of Europe and displays it in a variety of languages. --> | ||
| + | <!-- No additional support is required here, just load basic capabilities --> | ||
| + | <script type="text/javascript" charset="UTF-8" src="http://api.maps.nokia.com/2.2.3/jsl.js"></script> | ||
</head> | </head> | ||
| − | <div id=" | + | <body> |
| − | + | <div id="mapContainer" style= | |
| − | + | "z-index: -1; left:0px; top:0px; width: 50%; height: 50%; position: absolute;"> | |
| − | <script type="text/javascript"> | + | </div> |
| − | // | + | <script type="text/javascript"> |
| − | + | //<![CDATA[ | |
| − | + | ///////////////////////////////////////////////////////////////////////////////////// | |
| − | + | // Don't forget to set your API credentials | |
| − | + | // | |
| − | + | // Replace with your appId and token which you can obtain when you | |
| − | + | // register on http://api.developer.nokia.com/ | |
| − | + | // | |
| − | + | nokia.Settings.set( "appId", "YOUR APP ID GOES HERE"); | |
| + | nokia.Settings.set( "authenticationToken", "YOUR AUTHENTICATION TOKEN GOES HERE"); | ||
| + | // | ||
| + | ////////////////////////////// | ||
| + | /*]]>*/ | ||
| + | </script> | ||
| − | var appContext = | + | <script type="text/javascript"> |
| + | var appContext = nokia.maps.util.ApplicationContext; | ||
// Go thru all the language options | // Go thru all the language options | ||
var availableLanguages = ["en-US", "en-GB", "de-DE", "es-ES", "fr-FR", "it-IT", "ru-RU", "zh-CN"] | var availableLanguages = ["en-US", "en-GB", "de-DE", "es-ES", "fr-FR", "it-IT", "ru-RU", "zh-CN"] | ||
| Line 65: | Line 79: | ||
var currentLanguage = appContext.get("defaultLanguage"); | var currentLanguage = appContext.get("defaultLanguage"); | ||
// Display a note to the user within the document | // Display a note to the user within the document | ||
| − | document.write("The | + | document.write("The Initial Default Language is " + currentLanguage); |
// Write line break | // Write line break | ||
document.write("<br />"); | document.write("<br />"); | ||
| Line 74: | Line 88: | ||
// Write the new language | // Write the new language | ||
document.write("Now the Default Language is " + currentLanguage); | document.write("Now the Default Language is " + currentLanguage); | ||
| − | // | + | |
| + | // Get the DOM node to which we will append the map | ||
| + | var mapContainer = document.getElementById("mapContainer"); | ||
| + | |||
| + | // Define the Nokia Maps | ||
| + | var map = new nokia.maps.map.Display(mapContainer, { | ||
| + | // initial center and zoom level of the map | ||
| + | center: [53.1, 13.1], | ||
| + | zoomLevel: 4, | ||
| + | components: [ | ||
| + | new nokia.maps.map.component.ZoomBar(), | ||
| + | new nokia.maps.map.component.Behavior(), | ||
| + | new nokia.maps.map.component.TypeSelector(), | ||
| + | new nokia.maps.map.component.Traffic(), | ||
| + | new nokia.maps.map.component.PublicTransport(), | ||
| + | new nokia.maps.map.component.Overview(), | ||
| + | new nokia.maps.map.component.ScaleBar(), | ||
| + | new nokia.maps.positioning.component.Positioning() | ||
| + | ] | ||
| + | }); | ||
| + | //]]> | ||
</script> | </script> | ||
</body> | </body> | ||
</html> | </html> | ||
</code> | </code> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Revision as of 14:12, 4 January 2013
This articles shows how to get and set the default language in application context.
Prerequisites
Nokia Maps API supported web browser (basically any modern web browser)
Important note about maps credentials
Nokia provides several services options within the Maps API offering. The service is free to use, but you must obtain and use authentication and authorization credentials to use the services. Please read the Terms and Conditions and check the Pricing Plans page to decide which business model best fits your needs. Authentication requires unique Maps API credentials, namely an AppId and a token. You can get these credentials free for free following the instructions here
Implementation
This is a full HTML & JavaScript example. Add in your own AppId and Token and feel free to modify and use for your own purposes.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content=
"text/html; charset=us-ascii" />
<meta http-equiv="X-UA-Compatible" content="IE=7; IE=EmulateIE9" />
<title>Setting the map language</title>
<!-- This file loads up a map of Europe and displays it in a variety of languages. -->
<!-- No additional support is required here, just load basic capabilities -->
<script type="text/javascript" charset="UTF-8" src="http://api.maps.nokia.com/2.2.3/jsl.js"></script>
</head>
<body>
<div id="mapContainer" style=
"z-index: -1; left:0px; top:0px; width: 50%; height: 50%; position: absolute;">
</div>
<script type="text/javascript">
//<![CDATA[
/////////////////////////////////////////////////////////////////////////////////////
// Don't forget to set your API credentials
//
// Replace with your appId and token which you can obtain when you
// register on http://api.developer.nokia.com/
//
nokia.Settings.set( "appId", "YOUR APP ID GOES HERE");
nokia.Settings.set( "authenticationToken", "YOUR AUTHENTICATION TOKEN GOES HERE");
//
//////////////////////////////
/*]]>*/
</script>
<script type="text/javascript">
var appContext = nokia.maps.util.ApplicationContext;
// Go thru all the language options
var availableLanguages = ["en-US", "en-GB", "de-DE", "es-ES", "fr-FR", "it-IT", "ru-RU", "zh-CN"]
//get a random language
var randomLanguageIndex = Math.floor(Math.random() * availableLanguages.length); var randomLanguage = availableLanguages[randomLanguageIndex];
// Get and store the current map default language
var currentLanguage = appContext.get("defaultLanguage");
// Display a note to the user within the document
document.write("The Initial Default Language is " + currentLanguage);
// Write line break
document.write("<br />");
// Set the default language of the map
appContext.set("defaultLanguage", randomLanguage);
// Get the language we have just set
currentLanguage = appContext.get("defaultLanguage");
// Write the new language
document.write("Now the Default Language is " + currentLanguage);
// Get the DOM node to which we will append the map
var mapContainer = document.getElementById("mapContainer");
// Define the Nokia Maps
var map = new nokia.maps.map.Display(mapContainer, {
// initial center and zoom level of the map
center: [53.1, 13.1],
zoomLevel: 4,
components: [
new nokia.maps.map.component.ZoomBar(),
new nokia.maps.map.component.Behavior(),
new nokia.maps.map.component.TypeSelector(),
new nokia.maps.map.component.Traffic(),
new nokia.maps.map.component.PublicTransport(),
new nokia.maps.map.component.Overview(),
new nokia.maps.map.component.ScaleBar(),
new nokia.maps.positioning.component.Positioning()
]
});
//]]>
</script>
</body>
</html>

