-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (57 loc) · 2.47 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!doctype html>
<html>
<head>
<title>TDM BOLOCH</title>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/png" href="img/favicon.png" />
<!-- ######### ES6 DEtection -->
<script src="js/es6-feature-detection.js"></script>
<!-- ######### CDNs -->
<!-- <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ==" crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" crossorigin=""></script> -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script src="https://unpkg.com/[email protected]/dist/geotiff.bundle.js"></script>
<!-- ######### Plugins -->
<script src="js/webgl-debug.js"></script>
<script src="js/chroma.min.js"></script>
<script src="js/twgl-full.js"></script>
<script src="js/tdm-leaflet-velocity.js"></script>
<script src="js/L.TDMCanvasLayer.js"></script>
<script src="js/tdm-basic-geotiff-layer.js"></script>
<!-- ######### Mutex -->
<script>var exports = {};</script>
<script src="js/Mutex.js"></script>
<!-- ######### CSS -->
<link rel="stylesheet" href="css/tdm-boloch-viz.css" />
</head>
<body>
<div class="container">
<div id="map"></div>
<div class="info">
TDM Viewer 2.0 - 11/2021
</div>
<div id="time-overlay" class="overlay">
<input class="time-btn-left-rw" id="btn-left-rw-00" type="button" onClick="gotoHourFirst()">
<input class="time-btn-left" id="btn-left-00" type="button" onClick="decrHour()">
<span id="date_label">FIXME</span>
<input class="time-btn-right" id="btn-right-00" type="button" onClick="incrHour()">
<input class="time-btn-right-fw" id="btn-right-fw-00" type="button" onClick="gotoHourLast()">
</div>
<div>
<img class="logo" src="img/tdm_small.png" alt="" />
</div>
<div class="lens_container">
<label for="lensEnable">Lens</label>
<input type="checkbox" id="lensEnable" name="lensEnable" value="1">
<input type="range" min="1" max="100" value="50" class="slider" id="lensAlpha">
</div>
</div>
<!--demo-->
<script src="js/tdm-boloch-viz.js"></script>
</body>
</html>