HERE Maps API - How to draw a circle
m (Maveric - - →Implementation) |
m (Maveric - - →Tested with) |
||
| Line 92: | Line 92: | ||
Google Chrome 11.0x | Google Chrome 11.0x | ||
| − | Mozilla Firefox 5. | + | Mozilla Firefox 5.0 |
Revision as of 15:38, 21 June 2011
Contents |
Introduction
This article will introduce how to draw a circle on the Ovi Maps.
Prerequisites
Ovi Maps API supported web browser (basically any modern web browser)
The example assumes you have already added the Ovi Maps to your web page as explained in the previous article "Ovi Maps - add the map to any web page"
Important about Maps credentials
With Ovi 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 Ovi Maps API Developers Guide section "Acquiring API credentials"
Implementation
The API definition:
new ovi.mapsapi.map.Circle (center, radius, props)
In the example below, we will create new circles with an increasing radius and add them all one by one to the map display in a loop.
Example code
<html>
<head>
<script src="http://api.maps.ovi.com/jsl.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="map" style="width:100%; height:80%;"></div>
</body>
<script type="text/javascript">
var map= new ovi.mapsapi.map.Display(document.getElementById("map"), // new instance of Ovi Maps
{
components: [ new ovi.mapsapi.map.component.Behavior(),
new ovi.mapsapi.map.component.ZoomBar(),
new ovi.mapsapi.map.component.Overview(),
new ovi.mapsapi.map.component.TypeSelector(),
new ovi.mapsapi.map.component.ScaleBar()],
'zoomLevel': 4,
'center':[53.1, 13.1]
});
var i=0;
for (i=1;i<=7;i++)
{
draw_Circle(i);
}
function draw_Circle(loop){
map.objects.add(
new ovi.mapsapi.map.Circle(
new ovi.mapsapi.geo.Coordinate(53+loop,13+(1.5*loop)),
100+loop,
{
precision: 36,
simplify: 16,
fillColor: "#2387",
color: "#823f",
//stroke: N/A
width: 10+loop
}
));
}
</script>
</body>
</html>
For more on Ovi Maps API
Please check out the Ovi Maps API full documentation and API reference here:
Tested with
Google Chrome 11.0x
Mozilla Firefox 5.0

