-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (64 loc) · 3.12 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
<!DOCTYPE html>
<html>
<head>
<title>Élections municipales de Montréal 2013</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.js"></script>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="chosen.jquery.min.js"></script>
<script src="election2013.js"></script>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
<link rel="stylesheet" href="chosen.min.css" />
<link rel="stylesheet" href="election2013.css" />
</head>
<body>
<div id="sidebar">
<h3 align="center">Élections municipales de Montréal 2013</h3>
<div id="legend" align="center">
<div id="legendinner">
<table>
<h3>Partis</h3>
<tbody>
<tr>
<td valign="top">
<div style="width: 10px; height: 15px; background-color: rgb(228, 26, 28);"> </div>
</td>
<td>Équipe Coderre</td>
<td align="right">Groupe Mélanie Joly</td>
<td valign="top">
<div style="width: 10px; height: 15px; background-color: rgb(55, 126, 184);"> </div>
</td>
</tr>
<tr>
<td valign="top">
<div style="width: 10px; height: 15px; background-color: rgb(77, 175, 74);"> </div>
</td>
<td>Projet Montréal</td>
<td align="right">Coalition Montréal</td>
<td valign="top">
<div style="width: 10px; height: 15px; background-color: rgb(255, 127, 0);"> </div>
</td>
</tr>
<tr>
<td valign="top">
<div style="width: 10px; height: 15px; background-color: rgb(152, 78, 163);"> </div>
</td>
<td>partis d'arrondissement</td>
<td align="right">autres partis et indépendants</td>
<td valign="top">
<div style="width: 10px; height: 15px; background-color: rgb(153, 153, 153);"> </div>
</td>
</tr>
</tbody></table>
<h3>À propos</h3>
<p><a href="http://nicolas.kruchten.com/content/2014/01/mtlelection-zoomable-map/" target="_blank" style="font-weight: bold;">Nicolas Kruchten</a> a créé cette carte avec des <a href="http://donnees.ville.montreal.qc.ca/" target="_blank">données ouvertes de la Ville de Montréal</a>.</p>
</div>
</div>
</div>
<div id="map"></div>
</body>
</html>