-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (49 loc) · 2.07 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
56
<!DOCTYPE html>
<html>
<head>
<title>TurfJs with Leaflet Spatial Join and papaparse</title>
<!-- hint: remember to change your page title! -->
<meta charset="utf-8" />
<link rel="shortcut icon" href="#">
<link rel="stylesheet" href="styles/style.css">
<!-- Leaflet's css-->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<!-- Leaflet's JavaScript-->
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="js/papaparse.min.js"></script>
<!-- Adding the TurfJs library -->
<script src='https://unpkg.com/@turf/turf@6.3.0/turf.min.js'></script>
</head>
<body>
<header>
Covid Vaccination Stories
</header>
<div class="main">
<div id="contents">
<div id="placeForButtons"></div>
<!-- Be sure to use your own survey here!!!!!!! -->
<div id="theSurvey">
<div id="surveyButton">
<a href="https://docs.google.com/forms/d/e/1FAIpQLScD0IOr_U4r0q4HlBkZ7olkA5OJpgInePF8DQbIrIWDeTm1jw/viewform">📝Take the survey</a>
</div>
</div>
</div>
<div id="the_map">
<div id="legend">
<div id="legend">
<div id="englishFirstLegend">
English as First Language <svg height='10' width='10'><circle cx='5' cy='5' r='4' stroke='black' stroke-width='1' fill='red' /></svg>
</div>
<div id="nonEnglishFirstLegend">
Non-English as First Language <svg height='10' width='10'><circle cx='5' cy='5' r='4' stroke='black' stroke-width='1' fill='blue' /></svg>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
Copyright(2022)
</div>
<script src="js/init.js"></script>
</body>
</html>