Files
openlayers/demo/map.html
ahocevar 0420d2efb9 Adding Zoom control.
Tests still missing.
2012-06-22 17:14:22 +02:00

23 lines
633 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>OL3 Map</title>
<script type="text/javascript" src="loader.js"></script>
<link rel="stylesheet" href="../css/ol.css" type="text/css">
<style type="text/css">
#map {width: 512px; height: 512px;}
.ol-viewport {border: 1px solid gray;}
</style>
</head>
<body>
</body>
<div id="map"></div>
<script type="text/javascript">
ol.map({
renderTo: 'map',
layers: [ol.layer.osm()],
center: [45, 5],
zoom: 10
}).getEvents().register("click", function() {console.log("mapclick")})
</script>
</html>