Code (This is how the code looks like based on the configuration above. It can be copied and pasted directly into your project):
<html>
<head>
<title>SiteWatch API Example Viewer</title>
<script src='http://kort.samsyn.is/api/SiteWatch.aspx?v=2&key=your_keycode' type='text/javascript'></script>
<script type='text/javascript'>
//A map object variable.
var map;
//Routing result function.
function rResult(map, res)
{
map.addVectorLine('line',
res.data[0].points,
{ color: 'blue', size: 3 });
};
//Create a map object.
function InitMap() {
map = SWMap.create('map',
{ panButton: false, zoomButton: false,
defaultZoom: 3, defaultCenterPoint: { x: 359583, y: 406481 }
});
//Create point objects.
var point1 = SWPoint.create(359583, 406481);
var point2 = SWPoint.create(540637, 575896);
//Create a route.
map.route(point1.x, point1.y, point2.x, point2.y, 50, 0, rResult, this);
};
</script>
</head>
<body onload='InitMap()'>
<div id='map' style='height:300px; width:600px;'></div>
</body>
</html>
|