-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (50 loc) · 3.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html style='width: 100%; height: 100%;'>
<head>
<meta charset="utf-8">
<title> Test Elections </title>
<script src="http://localhost:8000/resBootStrap/vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core CSS -->
<link href="http://localhost:8000/resBootStrap/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<!-- Plugin CSS -->
<link href="http://localhost:8000/resBootStrap/vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<!-- Theme CSS -->
<link href="http://localhost:8000/resBootStrap/css/creative.css" rel="stylesheet">
<!-- Bootstrap Core JavaScript -->
<script src="http://localhost:8000/resBootStrap/vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="http://localhost:8000/resBootStrap/vendor/scrollreveal/scrollreveal.min.js"></script>
<script src="http://localhost:8000/resBootStrap/vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<script src="http://localhost:8000/resBootStrap/js/creative.min.js"></script>
<script src="http://localhost:8000/resPerso/js/bootboxalert/bootbox.min.js"></script>
<!-- mapbox gl js-->
<script src='https://api.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.css' rel='stylesheet' />
<!-- For Plylabel (center of polygon)-->
<script src='http://localhost:8000/node_modules/tinyqueue/index.js'></script>
<script src='http://localhost:8000/node_modules/@mapbox/polylabel/polylabel.js'></script>
<!-- myscripts-->
<link href='http://localhost:8000/map.css' rel='stylesheet'/>
<script src='http://localhost:8000/map_draw_desk.js'></script>
</head>
<body style='width: 100%; height: 100%;'>
<div id='map' style='width: 100%; height: 1000px;'>
<div id="general">Chargement...</div>
</div>
<script type="text/javascript">
createWholeMap(
'http://localhost:8000/bv_fontenilles_2017_4326.geojson',
'http://localhost:8000/suffragia.json',
'http://localhost:8000/suffragiaV2.json'
)
</script>
<!-- bootstrap scripts -->
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
</body>
</html>