forked from letmaik/webworldwind-covjson
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (47 loc) · 1.83 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Web World Wind CovJSON Example</title>
<script src="https://cdn.jsdelivr.net/xndarray/0.3/xndarray.min.js"></script>
<script src="https://npmcdn.com/[email protected]/covutils-lite.min.js"></script>
<script src="https://cdn.jsdelivr.net/covjson-reader/0.14/covjson-reader.min.js"></script>
<script src=" https://reading-escience-centre.github.io/webworldwind-releases/worldwindlib.js" type="text/javascript"></script>
<script src="https://google.github.io/palette.js/palette.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/categoricalLegendStyle.css">
<link rel="stylesheet" type="text/css" href="css/continousLegendStyle.css">
<link rel="stylesheet" type="text/css" href="css/popup.css">
</head>
<body>
<div id ="canvas">
<canvas id="worldwind">
Your browser does not support HTML5 Canvas.
</canvas>
<div id="popup"></div>
</div>
<div id='my-legend' class='my-legend'>
</div>
<div id="timeUI" class="timeUI">
</div>
<br>
<div id="depthUI" class="depthUI">
</div>
<div id="paramUI">
<ul id="paramList">
</ul>
</div>
<script src="src/utils/EventMixin.js"></script>
<script src="src/controls/ParamSelector.js"></script>
<script src="src/controls/TimeSelector.js"></script>
<script src="src/controls/DepthSelector.js"></script>
<script src="src/controls/UIManager.js"></script>
<script src="src/controls/Popup.js"></script>
<script src="src/controls/Utils.js"></script>
<script src="src/layers/TiledCanvasLayer.js"></script>
<script src="src/layers/CoverageLayer.js"></script>
<script src="src/controls/CategoricalLegend.js"></script>
<script src="src/controls/ContinousLegend.js"></script>
<script src="src/main.js"></script>
</body>
</html>