-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
100 lines (84 loc) · 3.94 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="A website for visualizing country specific data">
<meta name="keywords" content="OSM, OpenStreetMap, blacklist, blacklistr">
<meta name="author" content="ENT8R">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#263238">
<meta http-equiv="Content-Security-Policy"
content="default-src 'self';
script-src 'self' https://unpkg.com;
style-src 'self' https://unpkg.com;
img-src 'self' https://*.global.ssl.fastly.net data:;
connect-src *;">
<title>blacklistr</title>
<link rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha384-sHL9NAb7lN7rfvG5lfHpm643Xkcjzp4jFvuavGOndn6pjVqS6ny56CAt3nsEVT4H"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://unpkg.com/[email protected]/lib/codemirror.css"
integrity="sha384-bsaAhvdduZPAwUb7RRLRvDgtEtOsggrgjkr/EjPO1i/vdoi+DmdLaG79UOt6M5hD"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://unpkg.com/[email protected]/theme/material.css"
integrity="sha384-ftVWQjQhEzkqErV5eVzStm3sI6m7GdcKRcg8QwhBjMY5u62CduosO64VWHzgAVCt"
crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<link rel="manifest" href="manifest.json">
<link rel="shortcut icon" type="image/x-icon" href="images/icon.png">
</head>
<body>
<main>
<noscript>
Your browser does not support JavaScript which is needed for this tool.
If you use any blocker like NoScript, disable it if you want to use this website!
If you want to convince yourself that there is no code which tracks your personal data,
you can view the souce code on <a href="https://github.com/ENT8R/blacklistr">Github</a> before visiting this site.
</noscript>
<div id="map" class="col s8"></div>
<div id="side">
<div id="countries">
<div id="codemirror-container"></div>
<div id="country-list-container">
<div id="country-list"></div>
</div>
</div>
<div id="images"></div>
</div>
<div id="settings" class="modal">
<div class="modal-content">
<span class="close">×</span>
<div>
<h3>Boundaries</h3>
<div>
<input id="boundaries-josm" type="radio" name="boundaries" value="josm">
<label for="boundaries-josm">JOSM (uglier, includes some subdivisions)</label>
<br>
<input id="boundaries-naturalearth" type="radio" name="boundaries" value="naturalearth">
<label for="boundaries-naturalearth">NaturalEarth (prettier, does not include subdivisions)</label>
<br>
<input id="boundaries-geomaps" type="radio" name="boundaries" value="geomaps">
<label for="boundaries-geomaps">GeoMaps (more detailed, does not include subdivisions)</label>
</div>
</div>
</div>
</div>
</main>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha384-cxOPjt7s7Iz04uaHJceBmS+qpjv2JkIHNVcuOrM+YHwZOmJGBXI00mdUXEq65HTH"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/leaflet-image.js"
integrity="sha384-Cl2KSaehTGkoEiw07k3L/nCCwvF6tB3BcWgb83eHZUp2oPDI3qSKJUypvhoB66Gq"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/lib/codemirror.js"
integrity="sha384-/WlgLpnUCi+5eS6SnLPKTwRY0l8X4TxBIroMKS0KpFjlFoST+ZbSMKqTpgS24m8i"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/mode/javascript/javascript.js"
integrity="sha384-UEBcG5Bts/NmkO8UcF+Jq5qLb7Z1SVsz66bvds73oF8/I6p33YGu3l9bgAs27nNj"
crossorigin="anonymous"></script>
<script src="dist/js/main.min.js"></script>
</body>
</html>