27 lines
707 B
HTML
27 lines
707 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>OL3 Hello World</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
|
|
<link rel="stylesheet" href="../css/ol.css" type="text/css">
|
|
<script src="../api.js"></script>
|
|
<style type="text/css" media="screen">
|
|
html, body, #map { width: 100%; height: 100%; border: 0; margin:0; }
|
|
</style>
|
|
<script type="text/javascript" charset="utf-8">
|
|
var map;
|
|
function init() {
|
|
map = ol.map()
|
|
.renderTo('map')
|
|
.layers([ol.layer.osm()])
|
|
.center([45, 5])
|
|
.zoom(10);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="init()">
|
|
<div id="map"></div>
|
|
</body>
|
|
</html>
|