-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (34 loc) · 1.68 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src='https://api.mapbox.com/mapbox-gl-js/v2.12.0/mapbox-gl.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v2.12.0/mapbox-gl.css' rel='stylesheet' />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<a href="https://www.streetsforall.org/initiatives/2021-2022-state-legislators"><img class="logo" src="img/logo-square.png" alt="Streets For all"></a>
<nav id="menu"></nav>
<div class='map-legend'>
<div><strong>County:</strong> <span id='county-name'></span></div>
<div><strong>County Code:</strong> <span id='county-code'></span></div>
<div><strong>County Abbreviation:</strong> <span id='county-abbr'></span></div>
<hr>
<div><strong>SenateDistrictName:</strong> <span id='senate-district-name'></span></div>
<div><strong>SenateDistrictLabel:</strong> <span id='senate-district-label'></span></div>
<div><strong>SenateAreaSqMi:</strong> <span id='senate-area-sq-mi'></span></div>
<hr>
<div><strong>AssemblyDistrictName:</strong> <span id='assembly-district-name'></span></div>
<div><strong>AssemblyDistrictLabel:</strong> <span id='assembly-district-label'></span></div>
<div><strong>AssemblyAreaSqMi:</strong> <span id='assembly-area-sq-mi'></span></div>
</div>
<div id="map"></div>
<script src='js/app.js'></script>
<script src='js/county.js'></script>
<script src='js/senate.js'></script>
<script src='js/assembly.js'></script>
</body>
</html>