-
Notifications
You must be signed in to change notification settings - Fork 2
/
frame_fr.html
102 lines (86 loc) · 2.66 KB
/
frame_fr.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
101
102
<!DOCTYPE html>
<html>
<head>
<title>Stasi versus NSA</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="leaflet/leaflet.css" />
<link rel="stylesheet" href="leaflet/leaflet.label.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="leaflet/leaflet.ie.css" /><![endif]-->
<style type="text/css">
html {
height: 100%;
}
body {
margin: 0;
height: 100%;
}
#map {
width: 100%;
height: 100%;
}
.leaflet-label {
border:none;
font-weight: normal;
line-height: 16px;
font-size: 12px;
}
.leaflet-label {
border: 1px solid rgba(0,0,0,0.1);
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
font-weight: normal;
line-height: 16px;
font-size: 12px;
padding: 5px 8px;
}
.leaflet-label h3 {
font-weight: bold;
line-height: 16px;
font-size: 15px;
margin: 0 0 5px 0;
padding: 0;
}
.leaflet-label.left {
right: 5px;
text-align: right;
}
.leaflet-label.right {
left: 5px;
}
.leaflet-label:before {
border: none;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="leaflet/leaflet.js"></script>
<script src="leaflet/leaflet.label.js"></script>
<script src="frame.js"></script>
<script>
var polygon1 = {
a: {y:48.8557526277952, x:2.29560415004493},
b: {y:48.857, x:2.2975},
title: '<h3>Surface des armoires<br>de classement de la Stasi</h3>200 kilomètres de dossiers,<br>soit environ 48 000 armoires de classement<br>nécessitant une surface de 0,019 km².',
title2: '<h3>Surface des armoires<br>de classement de la Stasi</h3>200 kilomètres de dossiers,<br>soit environ 48 000 armoires de classement<br>nécessitant une surface de 0,019 km².<br><br><u>Zoom avant</u>'
};
var polygon2 = {
a: {y:11.8202145973935, x:2.2985},
b: {y:48.857, x:45.2120670371846},
title: '<h3>Surface des armoires<br>de dossiers de la NSA</h3>5 zetta­octets de données imprimées<br>correspondent à environ 42 billions d’armoires,<br>ce qui représenterait une surface de 17 millions de km².<br><br><u>Zoom arrière</u>'
};
var startCoordinates = [48.857,2.298];
init();
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38022006-8']);
_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>
</body>
</html>