-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (35 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>USGS Earthquake Update</title>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Kosugi|Roboto+Condensed" rel="stylesheet">
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css">
<!-- Icons -->
<link rel="stylesheet" type="text/css" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="static/css/leaflet.extra-markers.min.css">
<!-- 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 -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.5.0/d3.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.5.0/d3.min.js"></script>
<!-- MomentJS -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.15.1/moment.min.js"></script>
<!-- Leaflet JavaScript -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!-- Icons -->
<script src="static/js/leaflet.extra-markers.min.js"></script>
<!-- polyfill.io is library for using newer JavaScript features in older browers (such as Object.assign) -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
<!-- API Key -->
<script type="text/javascript" src="static/js/config.js"></script>
<!-- Our JavaScript -->
<script type="text/javascript" src="static/js/logic.js"></script>
</body>
</html>