31 lines
880 B
HTML
31 lines
880 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>OpenLayers</title>
|
|
<link href='https://fonts.googleapis.com/css?family=Quattrocento+Sans:400,400italic,700' rel='stylesheet' type='text/css'>
|
|
<link href='https://openlayers.org/assets/theme/site.css' rel='stylesheet' type='text/css'>
|
|
<link href="./legacy/ol.css" rel='stylesheet' type='text/css'>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<li><a href="./apidoc/">API Docs</a></li>
|
|
<li><a href="./examples/">Examples</a></li>
|
|
</ul>
|
|
<div id="map" style="width:400px;height:400px;"></div>
|
|
<script src="./legacy/ol.js"></script>
|
|
<script>
|
|
new ol.Map({
|
|
target: 'map',
|
|
layers: [
|
|
new ol.layer.Tile({
|
|
source: new ol.source.OSM()
|
|
})
|
|
],
|
|
view: new ol.View({
|
|
center: [0, 0],
|
|
zoom: 0
|
|
})
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |