-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>Interactive US Choropleth Maps</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Use local versions of Leaflet-->
<!--<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.1/dist/leaflet.css" />-->
<link rel="stylesheet" href="leaflet/leaflet.css" />
<!--<script src="https://unpkg.com/leaflet@1.0.1/dist/leaflet.js"></script>-->
<!--Using Leaflet src js file instead of uglified-->
<!--<script src="leaflet/leaflet.js"></script>-->
<!--<script src="leaflet/leaflet-src.js"></script>-->
<script src="leaflet/leaflet-min.js"></script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="maps.css" type="text/css"></script>
</head>
<body>
<div id='map'></div>
<script type="text/javascript" src="quake.js"></script>
<script type="text/javascript" src="us-states.js"></script>
<script type="text/javascript" src="us-renewable.js"></script>
<script type="text/javascript" src="us-popdns.js"></script>
<script type="text/javascript" src="quake.js"></script>
<script type="text/javascript" src="mapping.js"></script>
<script type="text/javascript">
// Invoking quakeLayer to get the GeoJSON data setup prior to it being added
quakeLayer();
</script>
</body>
</html>