-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfixed-subscriptions-map.html
More file actions
56 lines (55 loc) · 1.84 KB
/
fixed-subscriptions-map.html
File metadata and controls
56 lines (55 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Animated Map: Fixed Telephone Subscriptions</title>
<meta charset="UTF-8" />
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="styles/navbar.css" />
<link rel="stylesheet" type="text/css" href="./styles/mapanimated.css" />
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"></script>
<script src="./scripts/leaflet.timeline.js"></script>
</head>
<body>
<nav id="navbar">
<ul class="horizontal">
<li>
<a href="home-network-graph.html">CSP Cloud Parternships</a>
</li>
<li>
<a href="map-geographic.html">WhatsApp Users Map</a>
</li>
<li>
<a href="secure-servers-map.html">Secure Servers Map</a>
</li>
<li>
<a href="scatter-charts.html">Original Content & Ratings</a>
</li>
<li>
<div class="dropdown">
<button class="dropbtn" style="background-color: #377eb8">
<li>Phone Subscriptions</li>
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="fixed-subscriptions-map.html"
>Fixed Telephone Subscriptions Map</a
>
<a href="cell-subscriptions-map.html">Cell Subscriptions Map</a>
<a href="line-graphs.html">Subscriptions</a>
</div>
</div>
</li>
</ul>
</nav>
<div id="map"></div>
<script src="./scripts/fixedSubscriptionsMap.js"></script>
<script src="./datasets/fixed-telephone-subscriptions-parsed.jsonp"></script>
</body>
</html>