HERE Maps API - How to change map zoom level and center point
m (Maveric - - →Introduction) |
m (Jasfox - - →Example code) |
||
| (32 intermediate revisions by 6 users not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category: | + | [[Category:Nokia Maps]][[Category:Code Snippet]][[Category:JavaScript]] |
| − | + | {{Abstract|This article explains how to change map zoom level and map center. }} | |
| − | + | {{ArticleMetaData | |
| + | |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]]) --> | ||
| + | |devices= Internet Explorer, Google Chrome, Firefox, Opera | ||
| + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
| + | |platform= Web browser | ||
| + | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| + | |dependencies=Nokia Maps 2.2.3 | ||
| + | |signing=<!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= Nokia Maps, JavaScript, Zoom, Component, Components, center, centre | ||
| + | |id= <!-- Article Id (Knowledge base articles only) --> | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by=<!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by=[[User:avnee.nathani]] | ||
| + | |update-timestamp=20111231 | ||
| + | |creationdate=20110621 | ||
| + | |author=[[User:Maveric]] | ||
| + | }} | ||
| − | |||
| − | + | {{SeeAlso| | |
| + | * [http://developer.here.net/javascript_api Nokia Maps API] | ||
| + | * [[Nokia Maps API - Add Maps To Any Web Page|Add Maps To Any Web Page]] | ||
| + | * [[Nokia Maps API - Geocoordinate system|The Geocoordinate system]] | ||
| + | * [http://developer.here.net/apiexplorer/examples/api-for-js/map/zooming-the-map.html Zooming the Map] | ||
| + | * [http://developer.here.net/apiexplorer/examples/api-for-js/map/panning-the-map.html Panning the Map] | ||
| + | }} | ||
| − | + | ==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 | |
| − | + | [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== | ||
| − | You can change the parameters for the map view by passing them to | + | You can change the parameters for the map view by passing them to your map instance (handled in the article "[[Nokia Maps API - Add Maps To Any Web Page|Add Maps To Any Web Page]]") that define the zoom level and center point for the map can be set to suit your purposes. The map will default in our example to Berlin, Germany but you can of course change the center to point to any other location on this planet. |
| − | ==Map | + | ==Map centre== |
| − | The map | + | The centre of the map is defined by the {{Icode|center}} property and is defined by a {{Icode| nokia.maps.geo.Coordinate}} |
<code java> | <code java> | ||
| − | new | + | Constructor detail: |
| + | |||
| + | The coordinate represents a geographical position. As most of the use cases currently do not consider height information, | ||
| + | the altitude is defined as optional. If a corresponding type is already provided by the platform the product must not implement this class. | ||
| + | new nokia.maps.geo.Coordinate(lat, lng, [alt, [skipValidation]]) | ||
| + | |||
| + | Parameters: | ||
| + | {Number} lat //Latitude in degrees. -90 <= latitude <= 90. Values outside of range throw an {{Icode| IllegalArgument}} error. | ||
| + | {Number} lng // Longitude in degrees. -180 <= longitude <= 180. Values outside of range throw an {{Icode| IllegalArgument}} error. | ||
| + | {Number} [alt]: undefined // Altitude in meters. | ||
| + | {Boolean} [skipValidation]: false //If true, the validation of the latitude, longitude and altitude values is skipped. | ||
| + | </code> | ||
| + | |||
| + | We will create a new {{Icode|Coordinate}}, but will leave out altitude, and we want the values to be validated, so we will leave the {{Icode|skipValidation}} | ||
| + | to it's default value. | ||
| + | |||
| + | |||
| + | <code javascript> | ||
| + | new nokia.maps.geo.Coordinate (lat, lng, [alt, [skipValidation]]) | ||
</code> | </code> | ||
The coordinate represents a geographical position. Altitude is defined as optional. (For more details on this see the Maps API reference). | The coordinate represents a geographical position. Altitude is defined as optional. (For more details on this see the Maps API reference). | ||
| − | Note: There is an article about the coordinate system and geocoordinates | + | Note: There is an article about the [[Nokia Maps API - Geocoordinate system|The coordinate system and geocoordinates]]. You may want to check it out for more detailed information on the geocoordinate system used in Nokia Maps and some generic information about the world coordinate system. |
| − | In our example we will use the latitude and longitude values for the city of | + | In our example we will use the latitude and longitude values for the city of Düsseldorf, Germany : 51.233333°N, 6.783333°E These will be passed in the form {{Icode|[51.233333, 6.783333]}}. |
| − | The latitude and longitude can be passed as a floating point number, i.e. 13.4 is just as valid as e.g. 13.456789 | + | The latitude and longitude can be passed as a floating point number, i.e. {{Icode|13.4}} is just as valid as e.g. {{Icode|13.456789}} |
| + | |||
| + | ==ZoomLevel== | ||
| + | |||
| + | The Nokia Maps {{Icode|ZoomLevel}} is a number between the minimum and maximum zoom values and can be queried with the {{Icode|minZoomLevel()}} and {{Icode|maxZoomLevel()}} methods. | ||
| + | |||
| + | At the moment, the API offers zoom levels between 0 (zero) and 20. This is reflected by the UI Zoom Bar on the Map view. The zoom levels that the UI Zoom Bar uses are: | ||
| + | |||
| + | Level Name <br /> | ||
| + | 14 Street <br /> | ||
| + | 11 City <br /> | ||
| + | 8 County <br /> | ||
| + | 3 Country <br /> | ||
| + | |||
| + | How to request the min and max zoom levels of the current map: | ||
| + | |||
| + | <code java> | ||
| + | map.minZoomLevel // Could return for example "0" (zero) | ||
| + | map.maxZoomLevel // Could return for example "20" | ||
| + | </code> | ||
| + | |||
| + | ==Example code== | ||
| + | |||
| + | We are using the same code as in the [[Nokia Maps API - Add Maps To Any Web Page|Add Maps To Any Web Page]] example, simply changing the {{Icode|zoomLevel}} and {{Icode|center}}. Remember to add in your own [[How to Obtain Your Own Nokia appID and Token| AppId and Token]]. | ||
| + | |||
| + | <code javascript> | ||
| + | <!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 of Düsseldorf</title> | ||
| + | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
| + | <script type="text/javascript" | ||
| + | src="http://api.maps.nokia.com/2.2.3/jsl.js" charset="utf-8"> | ||
| + | </script> | ||
| + | </head> | ||
| + | <body> | ||
| + | <h1>Map of Düsseldorf</h1> | ||
| + | <div id="map" 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"); | ||
| + | |||
| + | // | ||
| + | ///////////////////////////////////////////////////////////////////////////////////// | ||
| + | var map = new nokia.maps.map.Display(document.getElementById("map"),{ | ||
| + | 'zoomLevel': 8, // Country level | ||
| + | 'center': [51.233333, 6.783333] // New map center point | ||
| + | }); | ||
| + | </script> | ||
| + | </body> | ||
| + | </html> | ||
| + | </code> | ||
| + | |||
| + | When you have defined these, the map should open on Country level zoom, with the city of Düsseldorf, Germany in the middle of the map view. | ||
==Zoom level== | ==Zoom level== | ||
| − | + | {{Icode|zoomLevel}} - The map zoom level is defined by this property | |
| − | The zoomLevel is a number between minimum and maximum values and can be queried with minZoomLevel() and maxZoomLevel() methods. | + | The {{Icode|zoomLevel}} is a number between minimum and maximum values and can be queried with the {{Icode|minZoomLevel()}} and {{Icode|maxZoomLevel()}} methods. |
| − | At the moment, the API offers | + | At the moment, the API offers zoom levels between 0 (zero) and 20. This is reflected by the UI component ZoomBar on the Map view. The zoom levels |
| − | used | + | used by the UI map zoom component are: |
<code java> | <code java> | ||
| Line 54: | Line 157: | ||
</code> | </code> | ||
| − | + | How to request the min and max zoom levels of the current map: | |
<code java> | <code java> | ||
| Line 61: | Line 164: | ||
</code> | </code> | ||
| + | ==For more on the Nokia Maps API== | ||
| − | + | Please check out the Nokia Maps API full documentation and API reference here: | |
| − | + | * [http://developer.here.net/javascript_api Nokia Maps API] | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | Please check out the | + | |
| − | + | ||
| − | http:// | + | |
| − | + | ||
| − | + | ||
| − | + | You may also access the interactive API explorer | |
| − | + | * [http://developer.here.net/javascript_api_explorer API explorer] | |
Revision as of 14:22, 4 January 2013
This article explains how to change map zoom level and map center.
Article Metadata
Tested with
Compatibility
Article
Contents |
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
You can change the parameters for the map view by passing them to your map instance (handled in the article "Add Maps To Any Web Page") that define the zoom level and center point for the map can be set to suit your purposes. The map will default in our example to Berlin, Germany but you can of course change the center to point to any other location on this planet.
Map centre
The centre of the map is defined by the center property and is defined by a nokia.maps.geo.Coordinate
Constructor detail:
The coordinate represents a geographical position. As most of the use cases currently do not consider height information,
the altitude is defined as optional. If a corresponding type is already provided by the platform the product must not implement this class.
new nokia.maps.geo.Coordinate(lat, lng, [alt, [skipValidation]])
Parameters:
{Number} lat //Latitude in degrees. -90 <= latitude <= 90. Values outside of range throw an {{Icode| IllegalArgument}} error.
{Number} lng // Longitude in degrees. -180 <= longitude <= 180. Values outside of range throw an {{Icode| IllegalArgument}} error.
{Number} [alt]: undefined // Altitude in meters.
{Boolean} [skipValidation]: false //If true, the validation of the latitude, longitude and altitude values is skipped.
We will create a new Coordinate, but will leave out altitude, and we want the values to be validated, so we will leave the skipValidation to it's default value.
new nokia.maps.geo.Coordinate (lat, lng, [alt, [skipValidation]])
The coordinate represents a geographical position. Altitude is defined as optional. (For more details on this see the Maps API reference).
Note: There is an article about the The coordinate system and geocoordinates. You may want to check it out for more detailed information on the geocoordinate system used in Nokia Maps and some generic information about the world coordinate system.
In our example we will use the latitude and longitude values for the city of Düsseldorf, Germany : 51.233333°N, 6.783333°E These will be passed in the form [51.233333, 6.783333]. The latitude and longitude can be passed as a floating point number, i.e. 13.4 is just as valid as e.g. 13.456789
ZoomLevel
The Nokia Maps ZoomLevel is a number between the minimum and maximum zoom values and can be queried with the minZoomLevel() and maxZoomLevel() methods.
At the moment, the API offers zoom levels between 0 (zero) and 20. This is reflected by the UI Zoom Bar on the Map view. The zoom levels that the UI Zoom Bar uses are:
Level Name
14 Street
11 City
8 County
3 Country
How to request the min and max zoom levels of the current map:
map.minZoomLevel // Could return for example "0" (zero)
map.maxZoomLevel // Could return for example "20"
Example code
We are using the same code as in the Add Maps To Any Web Page example, simply changing the zoomLevel and center. Remember to add in your own AppId and Token.
<!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 of Düsseldorf</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript"
src="http://api.maps.nokia.com/2.2.3/jsl.js" charset="utf-8">
</script>
</head>
<body>
<h1>Map of Düsseldorf</h1>
<div id="map" 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");
//
/////////////////////////////////////////////////////////////////////////////////////
var map = new nokia.maps.map.Display(document.getElementById("map"),{
'zoomLevel': 8, // Country level
'center': [51.233333, 6.783333] // New map center point
});
</script>
</body>
</html>
When you have defined these, the map should open on Country level zoom, with the city of Düsseldorf, Germany in the middle of the map view.
Zoom level
zoomLevel - The map zoom level is defined by this property
The zoomLevel is a number between minimum and maximum values and can be queried with the minZoomLevel() and maxZoomLevel() methods.
At the moment, the API offers zoom levels between 0 (zero) and 20. This is reflected by the UI component ZoomBar on the Map view. The zoom levels used by the UI map zoom component are:
Level Name
14 Street
11 City
8 County
3 Country
How to request the min and max zoom levels of the current map:
map.minZoomLevel <- Could return example "0" (zero)
map.maxZoomLevel <- Could return example "20"
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

