HERE Maps API - How to draw a polygon
hamishwillee
(Talk | contribs) m (Hamishwillee - Automated change of category from Ovi Maps to Nokia Maps) |
(Avnee.nathani - Updated article for Nokia Maps Javascript API v2.0. (Released in Dec 2011)) |
||
| Line 1: | Line 1: | ||
[[Category:Web]][[Category:Browser]][[Category:Nokia Maps]] | [[Category:Web]][[Category:Browser]][[Category:Nokia Maps]] | ||
| + | {{Abstract|visible=false|This article explains how to draw a polygon on Nokia Maps}} | ||
| + | |||
| + | {{ArticleMetaData | ||
| + | |platform= Web browser | ||
| + | |update-by=[[User:avnee.nathani]] | ||
| + | |update-timestamp=20111231 | ||
| + | }} | ||
| + | |||
==Introduction== | ==Introduction== | ||
| − | In this article we will see how to draw a polygon on | + | In this article we will see how to draw a polygon on Nokia Maps. |
==Prerequisites== | ==Prerequisites== | ||
| − | + | Nokia Maps API supported web browser (basically any modern web browser) | |
==Important about Maps credentials== | ==Important about Maps credentials== | ||
| − | With | + | 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. | 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 | + | For more information on how to obtain the credentials, please start with the Nokia Maps API Developers Guide section "Acquiring API credentials" |
==Implementation== | ==Implementation== | ||
| Line 20: | Line 28: | ||
<code java> | <code java> | ||
| − | new | + | new nokia.maps.map.Polygon (path, props) |
| − | + | nokia.maps.geo.Strip | nokia.maps.geo.Coordinate[]} path The path as coordinate strip. | |
| − | + | nokia.maps.map.Polygon.Properties} props The initial values of the specified properties. | |
</code> | </code> | ||
To draw the Polygon we will create a new geo Strip with Coordinates and then a new Polygon will be instantiated using it. The Properties are defined | To draw the Polygon we will create a new geo Strip with Coordinates and then a new Polygon will be instantiated using it. The Properties are defined | ||
the same way for drawing a Circle, Polyline or a Polygon. | the same way for drawing a Circle, Polyline or a Polygon. | ||
| − | |||
==Example code== | ==Example code== | ||
| Line 36: | Line 43: | ||
<html> | <html> | ||
<head> | <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" /> | <link rel="stylesheet" href="style.css" /> | ||
</head> | </head> | ||
| Line 44: | Line 52: | ||
</body> | </body> | ||
<script type="text/javascript"> | <script type="text/javascript"> | ||
| − | + | ||
| − | + | ||
| − | myGeoStrip = new | + | myGeoStrip = new nokia.maps.geo.Strip([52,13,100,48,2,100,48,16,100,52,13,100], "values lat lng alt"); |
| − | + | ||
| − | var map = new | + | var map = new nokia.maps.map.Display(document.getElementById("map"), // new instance of Ovi Maps |
{ | { | ||
| − | + | ||
| − | components: [ new | + | components: [ new nokia.maps.map.component.Behavior(), |
| − | new | + | new nokia.maps.map.component.ZoomBar(), |
| − | new | + | new nokia.maps.map.component.Overview(), |
| − | new | + | new nokia.maps.map.component.TypeSelector(), |
| − | new | + | new nokia.maps.map.component.ScaleBar()], |
'zoomLevel': 4, | 'zoomLevel': 4, | ||
'center':[53.1, 13.1] | 'center':[53.1, 13.1] | ||
}); | }); | ||
| − | + | ||
map.set("baseMapType", map.SATELLITE); | map.set("baseMapType", map.SATELLITE); | ||
| − | + | ||
| − | //new | + | //new nokia.maps.map.Polygon (path, props) |
/* | /* | ||
| − | { | + | {nokia.maps.geo.Strip | nokia.maps.geo.Coordinate[]} path The path as coordinate strip. |
| − | { | + | {nokia.maps.map.Polygon.Properties} props The initial values of the specified properties. |
*/ | */ | ||
| − | + | ||
| − | + | ||
map.objects.add( | map.objects.add( | ||
| − | new | + | new nokia.maps.map.Polygon(myGeoStrip, |
{ | { | ||
precision: 36, | precision: 36, | ||
simplify: 16, | simplify: 16, | ||
fillColor: "FFFFCC", | fillColor: "FFFFCC", | ||
| − | color: " | + | color: "#829f", |
width: 8 | width: 8 | ||
})); | })); | ||
| − | + | ||
</script> | </script> | ||
</body> | </body> | ||
| Line 84: | Line 92: | ||
</code> | </code> | ||
| − | |||
| − | + | ==For more on Nokia Maps API== | |
| − | http://api.maps. | + | Please check out the Nokia Maps API full documentation and API reference here: |
| + | * http://api.maps.nokia.com/2.0.0 | ||
| + | You may also access the interactive Nokia Maps API playground, | ||
| + | * http://api.maps.nokia.com/playground/index.html | ||
==Tested with== | ==Tested with== | ||
| − | Google Chrome 11.0x | + | * Google Chrome 11.0x |
| − | + | * Mozilla Firefox 5.0b | |
| − | Mozilla Firefox 5.0b | + | |
Revision as of 12:45, 31 December 2011
Article Metadata
Compatibility
Article
Contents |
Introduction
In this article we will see how to draw a polygon on Nokia Maps.
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 Nokia Maps API Developers Guide section "Acquiring API credentials"
Implementation
The API definition:
new nokia.maps.map.Polygon (path, props)
nokia.maps.geo.Strip | nokia.maps.geo.Coordinate[]} path The path as coordinate strip.
nokia.maps.map.Polygon.Properties} props The initial values of the specified properties.
To draw the Polygon we will create a new geo Strip with Coordinates and then a new Polygon will be instantiated using it. The Properties are defined the same way for drawing a Circle, Polyline or a Polygon.
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:80%;"></div>
</body>
<script type="text/javascript">
myGeoStrip = new nokia.maps.geo.Strip([52,13,100,48,2,100,48,16,100,52,13,100], "values lat lng alt");
var map = new nokia.maps.map.Display(document.getElementById("map"), // new instance of Ovi 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': 4,
'center':[53.1, 13.1]
});
map.set("baseMapType", map.SATELLITE);
//new nokia.maps.map.Polygon (path, props)
/*
{nokia.maps.geo.Strip | nokia.maps.geo.Coordinate[]} path The path as coordinate strip.
{nokia.maps.map.Polygon.Properties} props The initial values of the specified properties.
*/
map.objects.add(
new nokia.maps.map.Polygon(myGeoStrip,
{
precision: 36,
simplify: 16,
fillColor: "FFFFCC",
color: "#829f",
width: 8
}));
</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

