<html>
<head>
<title>Map Simple Event</title>
<script type="text/javascript" src="http://js.sapo.pt/Bundles/SAPOMapsAPI.js"></script>
<script type='text/javascript'>
function init() {
var map = new SAPO.Maps.Map('mapDiv');
var marker = new SAPO.Maps.Marker(new OpenLayers.LonLat(-9, 38), {draggable: true});
map.addOverlay(marker);
}
</script>
</head>
<body onload='init();'>
<div id='mapDiv' style='width:980px; height:400px;'></div>
</body>
</html>