forked from CarsonPiehl/EONET-Earth-Visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
27 lines (20 loc) · 860 Bytes
/
main.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
<html>
<head>
<meta charset="utf-8">
<title>EONET How-to</title>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<!-- OpenLayers -->
<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.2.1/build/ol.js" type="text/javascript"></script>
<script src="script.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.2.1/css/ol.css" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div id="selections" class="selections">
<h2>EONET How-to<span id="eventTitle"></span></h2>
<div id="eventSelect"><dl id="eventList"></dl></div>
<div id="layerSelect"><dl id="layerList"></dl></div>
</div>
<div id="map" class="map"></div>
</body>
</html>