-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (52 loc) · 2.21 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>
<head>
<!-- CSS Imports -->
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
<!-- Load Leaflet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.1/leaflet.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.1/leaflet.js"></script>
<link rel="stylesheet" href="css/leaflet.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="sidebar">
<div id="PctForResults" class="results">
Results
</div>
<h2>Vaccination in Nevada</h2>
<label id="race-radiobox" for="race-input"></label>
<input type="radio" name="layer-select" id="race-input" value="raceStyle" checked> Percent White Population </li>
<br>
<label id="foreign-radiobox" for="foreign-input"></label>
<input type="radio" name="layer-select" id="foreign-input" value="citizenStyle"> Percent Native-Born Population</li>
<br>
<label id="insurance-radiobox" for="insurance-input"></label>
<input type="radio" name="layer-select" id="insurance-input" value="insuranceStyle"> Percent of Population with Health Insurance </li>
<br>
<div id="results" style="display: none;"></div>
<br>
<br>
</div>
<!-- Map -->
<div id="map"></div>
<!-- Legend -->
<ul class="legend">
<li><span class="School"></span> School</li><br>
<li><span class="Clinic"></span> Clinic</li><br>
<li><span class="Ninety"></span> 90 % +</li><br>
<li><span class="Eighty"></span> 80 - 89 %</li><br>
<li><span class="Seventy"></span> 70 - 79 %</li><br>
<li><span class="Sixty"></span> 60 - 69 %</li><br>
<li><span class="Fifty"></span> 50 - 59 %</li><br>
<li><span class="Quartile2"></span> 25-49 %</li><br>
<li><span class="Quartile1"></span> < 25 % </li><br>
</ul>
<!-- Javascript Imports -->
<script src="js/leaflet.js"></script>
<script src="js/underscore.js"></script>
<script src="js/jquery-2.2.0.js"></script>
<script src="js/style.js"></script>
<script src="js/example.js"></script>
</body>
</html>