-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (41 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Quake Watch</title>
<!-- v1.5.1 Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.5.1/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin=""/>
<!-- v1.4.0 Leaflet JS -->
<script src="https://unpkg.com/leaflet@1.4.0/dist/leaflet.js"
integrity="sha512-QVftwZFqvtRNi0ZyCtsznlKSWOStnDORoefr1enyq5mVL4tmKB3S/EnC3rRJcxCPavG10IcrVGSmPh6Qw5lwrg=="
crossorigin=""></script>
<!-- v1.2.1 Leaflet.timeline CSS -->
<link rel="stylesheet" type="text/css" href="static/css/leaflet.timeline.css">
<!-- d3 JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.9.2/d3.min.js"></script>
<!-- Our CSS -->
<link rel="stylesheet" type="text/css" href="static/css/style.css">
</head>
<body>
<!-- The div that holds our map -->
<div id="map-id"></div>
<!-- d3 Version 5 -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<!-- v1.5.1 Leaflet JavaScript -->
<script src="https://unpkg.com/leaflet@1.5.1/dist/leaflet.js"
integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og=="
crossorigin=""></script>
<!-- v1.2.1 Leaflet.timeline & v0.3.2 diesal JavaScript. -->
<!-- Place IntervalTree.js before the Timeline JavaScripts. Timeline is a Leaflet Plugin. -->
<!-- IntervalTree.js (https://github.com/skeate/diesal/tree/master/src/ds) is used by Timeline. -->
<script type="text/javascript" src="static/plugins/leaflet/timeline/IntervalTree.js"></script>
<script type="text/javascript" src="static/plugins/leaflet/timeline/Timeline.js"></script>
<script type="text/javascript" src="static/plugins/leaflet/timeline/TimelineSliderControl.js"></script>
<!-- API Key -->
<script type="text/javascript" src="static/js/config.js"></script>
<!-- JavaScript -->
<script type="text/javascript" src="static/js/logic.js"></script>
</body>
</html>