Files
openlayers/demo/map.html
2012-06-21 18:57:07 +02:00

23 lines
560 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({
el: 'map',
layers: [ol.layer.osm()],
center: [45, 5],
zoom: 10
});
</script>
</html>