HERE Maps API - Reading and displaying Map Features
m (Jasfox - add monospacing.) |
m (Jasfox - update to 2.2.4) |
||
| (4 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category:Browser]][[Category:Nokia Maps]][[Category: | + | [[Category:Browser]][[Category:Nokia Maps]][[Category:JavaScript]][[Category:Code Snippet]] |
{{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= Google Chrome | + | |devices= Google Chrome 20.0 x, Firefox 13.0 |
|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= <!-- Compatible platforms - e.g. Symbian^1 and later, Qt 4.6 and later --> | |platform= <!-- Compatible platforms - e.g. Symbian^1 and later, Qt 4.6 and later --> | ||
|devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| − | |dependencies= Nokia Maps 2. | + | |dependencies= Nokia Maps 2.2.4 |
|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, features |
|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 29: | Line 29: | ||
== Introduction == | == Introduction == | ||
| − | This example uses the Nokia Maps API Feature manipulation functionality, described in the API Reference here: | + | This example uses the Nokia Maps API {{Icode|Feature}} manipulation functionality, described in the API Reference here: |
| − | http:// | + | http://developer.here.net/docs/maps_js/topics_api_pub/nokia.Features.html |
Please check it out for detailed description on the subject. | Please check it out for detailed description on the subject. | ||
| Line 52: | Line 52: | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
<script type="text/javascript" | <script type="text/javascript" | ||
| − | src="http://api.maps.nokia.com/2.2. | + | src="http://api.maps.nokia.com/2.2.4/jsl.js" charset="utf-8"> |
</script> | </script> | ||
</head> | </head> | ||
| Line 132: | Line 132: | ||
Feel free to modify the code for your own purposes. | Feel free to modify the code for your own purposes. | ||
| − | ==For more on Nokia Maps API== | + | ==For more on the Nokia Maps API== |
Please check out the Nokia Maps API full documentation and API reference here: | Please check out the Nokia Maps API full documentation and API reference here: | ||
| − | * http:// | + | * [http://developer.here.net/javascript_api Nokia Maps API] |
| − | You may also access the interactive | + | You may also access the interactive API explorer |
| − | * http:// | + | * [http://developer.here.net/javascript_api_explorer API explorer] |
== Tested with == | == Tested with == | ||
| − | * Google Chrome | + | * Google Chrome 20.0 x |
| − | + | * Firefox 13.0 | |
| − | * Firefox | + | |
Revision as of 14:34, 14 March 2013
Article Metadata
Tested with
Article
This article features an example on how to read, display and load Map Features
Contents |
Introduction
This example uses the Nokia Maps API Feature manipulation functionality, described in the API Reference here:
http://developer.here.net/docs/maps_js/topics_api_pub/nokia.Features.html
Please check it out for detailed description on the subject.
Prerequisites
Nokia Maps API supported web browser (basically any modern web browser will do).
Example code
This example loops through and displays all supported features/sets and features of the current map. It also attempts to load features and handles success and failure, and in this example the load should be a success.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Map Features</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript"
src="http://api.maps.nokia.com/2.2.4/jsl.js" charset="utf-8">
</script>
</head>
<body>
<div id="mapContainer" style="z-index: -1; left:0px; top:0px; width: 100%; height: 80%; position: absolute;"></div>
<script type="text/javascript">
/////////////////////////////////////////////////////////////////////////////////////
// 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");
//
/////////////////////////////////////////////////////////////////////////////////////
// This example will first display the full Feature Map components and then of those what
// are being used in the current map that is loaded and in use.
var map;
map = new nokia.maps.map.Display(document.getElementById("mapContainer"),
{
components: [ new nokia.maps.map.component.Behavior(),
new nokia.maps.map.component.ZoomBar(),
new nokia.maps.map.component.Overview(),
new nokia.maps.map.component.TypeSelector(),
new nokia.maps.map.component.ScaleBar() ],
zoomLevel: 4,
center: [52.51, 13.4] // default map center point (not the location retrieved)
});
//Retrieve Feature Map
var list = nokia.maps.Features.getFeatureMap();
// Loop through the features and show them in an alert
// Returns a map of implementations for each registered feature.
for( var i in list )
{ if ( list.hasOwnProperty(i) )
alert("Feature Map: "+list[i]);
}
// Retrieve Loaded Map
var list = nokia.maps.Features.getLoadedMap();
// Loop through the features and show them in an alert
// Returns a map of the names of fully loaded feature implementations per feature.
for( var i in list )
{ if ( list.hasOwnProperty(i) )
alert("Loaded Map:" +list[i]);
}
nokia.maps.Features.load({"map": "auto", "routing": "auto"}, load_Successful, load_Failed);
nokia.maps.Features.load({"map": "auto", "search": "auto"}, load_Successful, load_Failed);
function load_Successful(result){
alert("SUCCESSFUL FEATURE LOADING");
}
function load_Failed(result){
alert("FEATURE LOADING FAILED");
}
</script>
</body>
</html>
Summary
Feel free to modify the code for your own purposes.
For more on the Nokia Maps API
Please check out the Nokia Maps API full documentation and API reference here:
You may also access the interactive API explorer
Tested with
- Google Chrome 20.0 x
- Firefox 13.0

