33 lines
984 B
HTML
33 lines
984 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
|
|
<style type="text/css">
|
|
html, body, #map {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="../../css/ol.css" type="text/css">
|
|
<title>ol3 full-screen demo</title>
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
<script src="../../build/ol.js" type="text/javascript"></script>
|
|
<script type="text/javascript">
|
|
|
|
var layer = new ol.layer.TileLayer({
|
|
source: new ol.source.MapQuestOpenAerial()
|
|
});
|
|
var map = new ol.Map(document.getElementById('map'), {
|
|
center: new ol.Coordinate(0, 0),
|
|
layers: new ol.Collection([layer]),
|
|
zoom: 0
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|