-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (72 loc) · 3.27 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
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
<!DOCTYPE html>
<html>
<head>
<title>Health Facilities in Rohingya refugee camps</title>
<meta name="viewport" content="device-width; initial-scale=1.0">
<meta charset="utf-8">
<meta name="description" content="This is a webmap exploring healthcare facilities for the Rohingya population in the refugee camps of Cox's Bazar, Bangladesh." />
<meta name="title" property="og:title" content="Health Facilities in Rohingya refugee camps" />
<meta property="og:type" content="Website" />
<meta name="image" property="og:image" content="https://i.imgur.com/Xzpb9sx.png" />
<meta name="description" property="og:description" content="This is a webmap exploring healthcare facilities for the Rohingya population in the refugee camps of Cox's Bazar, Bangladesh." /><meta name="author" content="Binita Zaman"/>
<!-- Load Leaflet CSS -->
<link href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" rel="stylesheet">
<!-- Load our styles -->
<link href="./style.css" rel="stylesheet">
<!-- Load Leaflet and Carto libraries -->
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="https://libs.cartocdn.com/carto.js/v4.2.0/carto.min.js"></script>
<script src="https://unpkg.com/leaflet-responsive-popup@0.6.4/leaflet.responsive.popup.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet-responsive-popup@0.6.4/leaflet.responsive.popup.css" />
<!-- Load our JavaScript -->
<script defer src="./script.js"></script>
</head>
<div class="content-wrapper">
<header>
<h1>Mapping Health Facilities in Rohingya Refugee Camps</h1>
<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="data.html">data</a></li>
<li><a href="resources.html">resources</a></li>
</ul>
</nav>
</header>
<div class="main-content">
<body>
<div class="map-wrapper">
<div id="map"></div>
<div class="buttons">
<button class="reset-button">
reset</button>
<br><button class="KB-button">
Kutupalong-Balukhali Camps</button>
<br><button class="HakimJamBagg-button">
Hakimpara, Jamtoli and Bagghona Camps</button>
<br><button class="Chakmarkul-button">
Chakmarkul Camp</button>
<br><button class="Unchiprang-button">
Unchiprang Camp</button>
<br><button class="Shamlapur-button">
Shamlapur Camp</button>
<br><button class="Nayapara-button">
Alikhali, Leda and Nayapara Camps</button>
</div>
<div class="legend">
<div class="legend-header">
Map Legend
</div>
<div>
<span class="legend-marker1"></span> Health sites
<br>
<span class="legend-marker2"></span> Camp population
<br>
<span class="legend-marker3"></span> <a href="https://www.nytimes.com/2021/03/23/world/asia/bangladesh-rohingya-fire-refugees.html" target="_blank">Refugee camp fire (3/22/21)</a>
</div>
<br><small><em>abbreviations found <a href="about.html#abbreviations" target="_blank">here</a></em></small>
</div>
</div>
</body></div>
</div>
</html>