This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
45 lines (44 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<title>Ebola</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.1/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.1/js/bootstrap.min.js"></script>
<link href='css/map.css' rel='stylesheet' />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<script src="data/regions.js"></script>
<script src="data/styles.js"></script>
<script src="data/data.js"></script>
<script src="data/SBTF_medical_centres.js"></script>
<script src="data/legends.js"></script>
<script type="text/javascript">var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-46399763-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<!-- Page content -->
<div id="container" class="fill">
<div class="row">
<div class="col-md-12">
<h3>Ebola Interactive Map</h3>
<p>Updated: 20 July 2015 - <a href="https://data.hdx.rwlabs.org/dataset?q=ebola" target="_blank">Source</a> - Contact: <a href="https://twitter.com/Simon_B_Johnson">@simon_b_johnson</a> - Choose layers to add and remove using the button on the top right of the map. These figures include confirmed and suspected.</p>
</div>
</div>
<div class="row">
<div id='map' class="col-md-12"></div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>