-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmap.html
More file actions
107 lines (86 loc) · 3.9 KB
/
map.html
File metadata and controls
107 lines (86 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
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="authors" content="Spencer Young, Holger H-Ray Heine">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.2.0/dist/leaflet.css"
integrity="sha512-M2wvCLH6DSRazYeZRIm1JnYyh22purTM+FDB5CsyxtQJYeKq83arPe5wgbNmcFXGqiSH2XR8dT/fJISVA1r/zQ==" crossorigin=""/>
<link rel="stylesheet" href="https://unpkg.com/esri-leaflet-geocoder@2.2.6/dist/esri-leaflet-geocoder.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<br>
<div class="container">
<div class="card">
<div class="card-body">
<div class="row">
<div class="col-md-1">
<img src="./images/logo.png" alt="">
</div>
<div class="col-md-11">
<h4>State of Hawaii</h4>
<h2 class="blue"><strong>Office of Elections</strong></h2>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col text-center">
<div class="card">
<div class="card-body">
<div>Upcoming election is on</div>
<div><h5>August 11, 2018</h5></div>
</div>
</div>
</div>
<div class="col">
<div class="card text-center">
<div class="card-body">
<div>Volunteers needed:</div>
<div><h5>2738 people</h5></div>
</div>
</div>
</div>
</div>
<br>
<div class="card">
<div class="card-body">
<ul class="nav nav-pills nav-fill">
<li class="nav-item">
<a class="nav-link" href="vol_info.html">Your Information</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="trainingsignup.html">Training Signup</a>
</li>
</ul>
</div>
</div>
<br>
<!-- div wrapper for the poll location map -->
<div class="card">
<div class="card-header"><h2>Map of Polling Places with Directions</h2></div>
<div id="pollsMap"></div>
</div>
</div>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/leaflet@1.2.0/dist/leaflet.js"
integrity="sha512-lInM/apFSqyy1o6s89K4iQUKg6ppXEgsVxT35HbzUupEVRh2Eu9Wdl4tHj7dZO0s1uvplcYGmt3498TtHq+log==" crossorigin=""></script>
<!-- Load Esri Leaflet from CDN -->
<script src="https://unpkg.com/esri-leaflet@2.1.1/dist/esri-leaflet.js"
integrity="sha512-ECQqaYZke9cSdqlFG08zSkudgrdF6I1d8ViSa7I3VIszJyVqw4ng1G8sehEXlumdMnFYfzY0tMgdQa4WCs9IUw=="
crossorigin=""></script>
<!-- Esri Leaflet Geocoder -->
<script src="https://unpkg.com/esri-leaflet-geocoder@2.2.6"></script>
<!-- Optional JavaScript -->
<script src=js/map.js></script>
</body>
</html>