-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeline.html
215 lines (184 loc) · 8.76 KB
/
timeline.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TimeLine - Boîte à outils Autonomens</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Timeline - Démo">
<meta name="author" content="Autonomens">
<!-- Le styles -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/themes/type_10.css">
<link rel="stylesheet" href="css/themes/color_07.css">
<link rel="stylesheet" href="vendors/leaflet/leaflet.css" />
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:400,200,400italic,600,700,700italic" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/logo2.png">
<script type="text/javascript" src="vendors/timelinejs/lib/jquery-min.js"></script>
<script type="text/javascript" src="vendors/timelinejs/js/storyjs-embed.js"></script>
<script src="vendors/leaflet/leaflet.js"></script>
<script src="js/libs/modernizr.min.js"></script>
<script src="js/libs/jquery-1.8.3.min.js"></script>
<script src="js/libs/jquery.easing.1.3.min.js"></script>
<script src="js/libs/jquery.fitvids.js"></script>
<script src="js/script.js"></script>
<style>
#map {
width: 400px;
height: 598px;
float: left;
border: 1px solid #ccc;
margin-left: 10px;
border-radius: 10px 10px 10px 10px;
}
#timeline-embed {
float: left
}
#infos {
clear: both;
padding-top: 10px;
}
</style>
</head>
<body data-spy="scroll" data-target=".subnav" data-offset="50">
<div class="container">
<!-- Header begins ========================================================================== -->
<header class="row">
<div id="logo">
<img src="images/logo2.png" width="45" height="45" alt="Logo" />
<h1>TimeLine</h1>
<h2>Gérer des évènements ou des objets temporels à l'aide d'une TimeLine.</h2>
</div>
<nav>
<ul>
<li><a href="index.html">Retour à l'accueil</a></li>
</ul>
</nav>
<hr />
</header>
<!-- Header ends ============================================================================ -->
<div class="row">
<!-- Description
================================================== -->
<section id="description">
<div id="timeline-embed"></div>
<script type="text/javascript">
$(document).ready(function() {
window.createStoryJS({
type: 'timeline',
width: '700',
height: '600',
source: 'data/montpellier_pae.jsonp',
embed_id: 'timeline-embed',
lang: 'vendors/timelinejs/js/locale/fr.js',
maptype: 'watercolor',
css: 'vendors/timelinejs/css/timeline.css',
//js: 'vendors/timelinejs/js/timeline-min.js'
js: 'vendors/timelinejs/js/timeline.js',
mapviewer: goto
});
});
// load geometries
$.getJSON('data/PAE.json', load);
// Leaflet viewer
var map;
function load(pae_data) {
map = new L.Map('map');
var mc_tiles = new L.TileLayer('http://tilestream.makina-corpus.net/v2/osmlight-france/{z}/{x}/{y}.png', {
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://makina-corpus.com">Autonomens</a>',
maxZoom: 18
});
var center = new L.LatLng(43.605, 3.88);
map.setView(center, 13).addLayer(mc_tiles);
var style = {
color: "#444444",
weight: 2,
opacity: 0.6,
fillOpacity: 0.3,
fillColor: "#444444"
};
var highlightStyle = {
color: "#CC6222",
weight: 2,
opacity: 0.6,
fillOpacity: 0.3,
fillColor: "#CC6222"
};
pae = new L.GeoJSON(pae_data, {
style: style,
onEachFeature: function (feature, layer) {
layer.on("mouseover", function (e) {
layer.setStyle(highlightStyle);
});
layer.on("mouseout", function (e) {
layer.setStyle(style);
});
layer.on("click", function (e) {
// Center timeline on
console.log(e);
//e.target.feature.properties.Name
console.log(VMM);
VMM.smoothScrollTo(e.target.feature.properties.Name);
});
}
});
map.addLayer(pae);
var paeGroup = new L.LayerGroup();
paeGroup.addLayer(pae);
paeGroup.addTo(map);
paeGroup.eachLayer(function (layer) {
layer.bindPopup('PAE');
});
}
//function goto(x,y, zoom) {
function goto(position) {
if(position != undefined) {
var coords = position.split(",");
var center = new L.LatLng(coords[0], coords[1]);
map.panTo(center);
}
}
</script>
<div id="map"></div>
<div id="infos">
<p>
<strong>Données utilisées :</strong><br/>
"La Ville de Montpellier met en place depuis des années de nombreux Plan d'Aménagement d'Ensemble (PAE). Ainsi de nombreuses zones et de nombreux quartiers ont connu un développement de l'urbanisme afin d'améliorer la vie des ses citoyens.<br/>
Le Plan ou Programme d’Aménagement d’Ensemble (PAE) est un dispositif de participation des constructeurs au financement, en tout ou partie, d’un programme d’équipements publics qu’une commune, ou un EPCI, s’engage à réaliser, dans un secteur déterminé, pour répondre aux besoins des futurs habitants ou usagers des constructions à édifier de ce secteur.
"<br/>Source: <a href="http://opendata.montpelliernumerique.fr/Plan-d-Amenagement-d-Ensemble">http://opendata.montpelliernumerique.fr/Plan-d-Amenagement-d-Ensemble</a>
</p>
</div>
</section>
</div>
<!-- Footer begins ========================================================================== -->
<footer class="row">
<hr />
<ul id="footerLinks">
<li>© 2016 Autonomens.</li>
<li>Powered by <a href="http://www.typeandgrids.com" target="_blank">Type & Grids</a></li>
</ul>
</footer>
<!-- Footer ends ============================================================================ -->
</div><!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
<script src="vendors/bootstrap/bootstrap-transition.js"></script>
<script src="vendors/bootstrap/bootstrap-alert.js"></script>
<script src="vendors/bootstrap/bootstrap-modal.js"></script>
<script src="vendors/bootstrap/bootstrap-dropdown.js"></script>
<script src="vendors/bootstrap/bootstrap-scrollspy.js"></script>
<script src="vendors/bootstrap/bootstrap-tab.js"></script>
<script src="vendors/bootstrap/bootstrap-tooltip.js"></script>
<script src="vendors/bootstrap/bootstrap-popover.js"></script>
<script src="vendors/bootstrap/bootstrap-button.js"></script>
<script src="vendors/bootstrap/bootstrap-collapse.js"></script>
<script src="vendors/bootstrap/bootstrap-carousel.js"></script>
<script src="vendors/bootstrap/bootstrap-typeahead.js"></script>
<!-- <script src="vendors/application.js"></script> -->
</body>
</html>