-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
29 lines (26 loc) · 1015 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>USGS Earthquakes Data Visualization</title>
<!-- Leaflet CSS & JS -->
<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"
integrity="sha512-tAGcCfR4Sc5ZP5ZoVz0quoZDYX5aCtEm/eu1KhSLj2c9eFrylXZknQYmxUssFaVJKvvc0dJQixhGjG2yXWiV9Q=="
crossorigin=""></script>
<!-- D3 CDN Javascript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.5.0/d3.min.js"></script>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="static/css/style.css">
</head>
<body>
<!-- The div to Inject Map -->
<div id="map"></div>
<!-- API Key -->
<script type="text/javascript" src="static/js/config.js"></script>
<!-- JS -->
<script type="text/javascript" src="static/js/logic.js"></script>
</body>
</html>