HERE Maps API - How to create a Context Menu
This article explains how to enable right click on Nokia maps and add components to it - making the map tiles more interactive.
Article Metadata
Compatibility
Article
Contents |
Introduction
When the user clicks the mouse right button, a RightClick event takes place. The Nokia Maps API there is certain functionality that can be attached to it and the opening menu.
In this example we will add Routing Component and the Search component.
map.components.add(myRightClick); map.components.add(myRoutingComponent); map.components.add(mySearchComponent);
These can be then bound to further parts of your program to provide additional functionality.
Prerequisites
Nokia Maps API supported web browser (basically any modern web browser)
Important about Maps credentials
With Nokia Maps API you can start without having any credentials given, but you might face a performance gap. In order to get the full potential out of the offering, you must get the credentials that authenticate your application against the Services. Please read through the Location API.
For more information on how to obtain the credentials, please start with the Nokiai Maps API Developers Guide section "Acquiring API credentials"
Implementation
In the example we will add a RightClick() component to the map, then populate it with Routing and Search.
Example code
<html>
<head>
<script type="text/javascript"
src="http://api.maps.nokia.com/2.0.0/jsl.js" charset="utf-8">
</script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="map" style="width:100%; height:100%;"></div>
</body>
<script type="text/javascript">
myRightClick = new nokia.maps.map.component.RightClick () ;
myRoutingComponent = new nokia.maps.routing.component.RightClick();
mySearchComponent = new nokia.maps.search.component.RightClick();
var map = new nokia.maps.map.Display(document.getElementById("map"), // new instance of Nokia Maps
{
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': 8,
'center':[19.119, 72.8957]
});
map.set("baseMapType", map.NORMAL);
map.components.add(myRightClick);
map.components.add(myRoutingComponent);
map.components.add(mySearchComponent);
</script>
</body>
</html>
For more on Nokia Maps API
Please check out the Nokia Maps API full documentation and API reference here:
You may also access the interactive Nokia Maps API playground,
Tested with
- Google Chrome 11.0x
- Mozilla Firefox 5.0b

