-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (61 loc) · 2.03 KB
/
index.html
File metadata and controls
64 lines (61 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Taliban In Afghanistan</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v2.5.1/mapbox-gl.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-Z0JVXY3TZV"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-Z0JVXY3TZV");
</script>
<link
href="https://api.tiles.mapbox.com/mapbox-gl-js/v2.5.1/mapbox-gl.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="map"></div>
<div class="map-overlay" id="features">
<div class="heading">
<h2 class="features-head">
Taliban Influence In Afghanistan Provinces
</h2>
<div id="layer-toggles" class="button-grp"></div>
<hr class="features-head" />
</div>
<div class="province-info-box">
<div class="features-details" id="province-name">
<p style="text-align: center; margin-top: 3.5em">
Touch or hover over province to view details
</p>
</div>
<div class="features-details" id="province-details"></div>
</div>
</div>
<div class="map-overlay" id="legend">
<div id="legend-title"><b>Level of Influence</b></div>
<div id="legend-items"></div>
<div id="legend-data-source">Source: FDD's Long War Journal</div>
</div>
<div class="map-overlay" id="footer">
<p>
Interactive map built by Akshar and Pritish for
<strong>ECO-3650: Health Economics</strong> taught by
<strong>Professor Aparajita Dasgupta</strong> (2021)
</p>
</div>
</body>
<script src="script.js"></script>
</html>