-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenlayers.html
34 lines (34 loc) · 1.27 KB
/
openlayers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html >
<html lang="en">
<head>
<title>p15_s04.tif</title>
<style type="text/css">
* {
box-sizing: border-box;
}
html, body {
overflow: hidden;
padding: 0;
height: 100%;
width: 100%;
font-family: 'Lucida Grande',Geneva,Arial,Verdana,sans-serif;
}
body {
margin: 10px;
background: #fff;
}
#map {
height: calc(100% - 20px);
width: calc(100% - 20px);
border: 1px solid #888;
}
</style>
<link rel="stylesheet" href="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/css/ol.css" type="text/css">
<script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js"></script>
<script src="../scripts/map.js"></script>
</head>
<body onload="init()" data-fisk-min-x="-92.73821874999945" data-fisk-min-y="35.15156827115307" data-fisk-max-x="-88.58807837153826" data-fisk-max-y="37.38372501845145">
<!--Generated by <a href="http://www.klokan.cz/projects/gdal2tiles/">GDAL2Tiles</a>, Copyright © 2008 <a href="http://www.klokan.cz/">Klokan Petr Pridal</a>, <a href="http://www.gdal.org/">GDAL</a> & <a href="http://www.osgeo.org/">OSGeo</a> <a href="http://code.google.com/soc/">GSoC</a>-->
<div id="map"></div>
</body>
</html>