-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (76 loc) · 3.9 KB
/
Copy pathindex.html
File metadata and controls
100 lines (76 loc) · 3.9 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Seismic Energy Visualization</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- bootstrap & custom bootstrap template stylesheet -->
<link href="lib/css/bootstrap.min.css" rel="stylesheet">
<link href="lib/css/bootstrap-slider.min.css" rel="stylesheet">
<link href="lib/css/bootstrap-tour.min.css" rel="stylesheet">
<link href="dist/css/bootstrap-custom-styles.css" rel="stylesheet">
<!-- leaflet stylesheet -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css" />
<!-- Esri Leaflet Geocoder -->
<link rel="stylesheet" href="https://unpkg.com/esri-leaflet-geocoder@2.2.4/dist/esri-leaflet-geocoder.css">
<!-- earthquake map stylesheet -->
<link href="dist/css/BasemapWithEarthquakes.css" rel="stylesheet">
</head>
<body>
<!-- bootstrap template -->
<div class="navbar navbar-custom navbar-fixed-top">
<div class="navbar-header" ><a class="navbar-brand" id="events-title">Current Visualization</a></div>
</div>
<!-- div to contain the leaflet map -->
<div id="map-canvas"><div id="leaflet-map"></div></div>
<!-- div to contain the force layout -->
<div id="force-canvas"></div>
<!-- sidebar -->
<div class="container-fluid" id="main">
<div class="row">
<div class="col-xs-2" id="left">
<h4>Earthquake Sequences</h4>
<!-- item list (built by index.js with the views and earthquake sequences) -->
<div id="earthquake-view-list"></div>
<!-- /item list -->
<p>
<a href="https://github.com/Ryshackleton/seismic_energy_viz" target="_ext">Source Code</a>
</p>
<hr>
<p>
<a href="https://github.com/Ryshackleton/" target="_ext" class="center-block btn btn-primary">Author Profile</a>
</p>
<hr>
</div>
<div class="col-xs-4"><!--map-canvas will be postioned here--></div>
<div class="col-xs-4"></div>
</div>
</div>
<!-- end template -->
<!-- script references -->
<!-- UI - bootstrap and jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<!-- D3.js version 4, and topojson for earthquake parsing/rendering -->
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<!-- leaflet js script to build the slippy map -->
<script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js"></script>
<!-- Load Esri Leaflet from CDN -->
<script src="https://unpkg.com/esri-leaflet@2.0.8"></script>
<!-- Esri Leaflet Geocoder -->
<script src="https://unpkg.com/esri-leaflet-geocoder@2.2.4"></script>
<!-- main scripts to load this page and build the map and earthquake views -->
<script src="dist/js/index.js"></script>
<script src="dist/data/quakeViewList.js"></script>
<script src="dist/js/LeafletBasemap.js"></script>
<script src="dist/js/BasemapWithEarthquakes.js"></script>
<script src="dist/js/usgsQuery.js"></script>
<!--force layout to show seismic energy release -->
<script src="dist/js/EarthquakeForceLayout.js"></script>
<!--bootstrap scripts and plugings -->
<script src="lib/js/bootstrap.min.js"></script>
<script src="lib/js/bootstrap-slider.js"></script>
<script src="lib/js/bootstrap-tour.min.js"></script>
</body>
</html>