-
Notifications
You must be signed in to change notification settings - Fork 0
/
carte.html
281 lines (265 loc) · 10.1 KB
/
carte.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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<html class="no-js" lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-Ua-Compatible" content="IE=edge" />
<meta name="charset" content="utf-8" />
<meta name="content-language" content="fr-FR" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Carte des dénominations de la commune</title>
<script type="text/javascript" src="web/js/lib/leaflet/leaflet.js"></script>
<script type="text/javascript" src="web/js/lib/jquery/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="web/js/colors.js"></script>
<script type="text/javascript" src="web/js/bootstrap.bundle.5.3.0-alpha3.min.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="web/css/bootstrap.5.3.0-alpha3.min.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="web/js/lib/leaflet/leaflet.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="web/js/lib/leaflet/marker.css"/>
</head>
<body role="document">
<div class="container">
<h1>Dénomination AOC sur la commune <span id="commune_nom"></span></h1>
<div class="row">
<div id="loader">
<pre id="loadermessage"></pre>
</div>
<div id="pagecontainer" class="col-8">
<h2>La carte</h2>
<div id="map" style="height:800px; width:100%; margin-bottom: 20px;">
</div>
</div>
<div class="col" id="sidebar" style="display: none;">
<div id="vos_parcelles" style="display: none;">
<h2>Parcelles sélectionnées</h2>
<ul id="list_vos_parcelles" style="max-height: 200px; overflow-x: scroll">
</ul>
</div>
<div id="les_parcelles">
<h2>Parcelles de la commune</h2>
<ul id="list_les_parcelles" style="max-height: 600px; overflow-x: scroll">
</ul>
</div>
</div>
</div>
<div>
<h2>Téléchargement</h2>
<div id="download_list">
</div>
</div>
</div>
<style>
.sectionlabel, .parcellelabel {
text-shadow: 1px 1px #fff,-1px 1px #fff,1px -1px #fff,-1px -1px #fff,1px 1px 5px #555;
}
</style>
<script type="text/javascript">
let searchParams = new URLSearchParams(window.location.search)
var communes = searchParams.get('insee').split(',');
var dep = communes[0].substring(0, 2);
var denomid = searchParams.get('denomid');
var base_opendata = 'https://data.opendatawine.fr';
var parcelle_layers = {};
var map;
(function() {
$('#loadermessage').html("Préparation de la carte");
map = L.map('map', {center:[47.1113,2.6038],zoom:7});
L.tileLayer('https://wxs.ign.fr/{ignApiKey}/geoportail/wmts?'+
'&REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&TILEMATRIXSET=PM'+
'&LAYER={ignLayer}&STYLE={style}&FORMAT={format}'+
'&TILECOL={x}&TILEROW={y}&TILEMATRIX={z}',
{
ignApiKey: 'pratique',
ignLayer: 'ORTHOIMAGERY.ORTHOPHOTOS',
style: 'normal',
format: 'image/jpeg',
service: 'WMTS',
maxZoom: 19,
attribution: 'Map data ©' +
'<a href="https://www.24eme.fr/">24eme Société coopérative</a>, ' +
'<a href="https://cadastre.data.gouv.fr/">Cadastre</a>, ' +
'Imagery © <a href="https://www.ign.fr/">IGN</a>',
id: 'mapbox.light'
}).addTo(map);
var layers = {};
var downloads = {};
var noms_cadastre = [];
async function loadFeatures() {
let bounds = null;
let noms_communes = [];
for(c in communes) {
let commune = communes[c];
$('#loadermessage').html("Récupération des dénominations de "+commune);
const url = base_opendata +'/delimitation_aoc/'+dep+'/'+commune+'/delimitations.json';
const denoms = await fetch(url);
const json = await denoms.json();
const base = denoms.url.replace(/[^\/]+$/, '')
let i = 0;
let mycommune;
for(nom in json) {
$('#loadermessage').html("Récupération des délimitations "+nom+" dans "+commune);
const geojson_content = await fetch(base+json[nom]);
const htmlname = '<span style="display:inline-block;width:25px;opacity:0.75;background-color:'+colors[i]+'"> </span> '+nom;
const geojson = await geojson_content.json();
mycommune = geojson.features[0].properties.nomcom;
downloads["Délimitation de "+nom+" - "+mycommune] = geojson_content.url;
layers[htmlname] = L.geoJSON(geojson,{style:{fillColor:colors[i],weight:0,opacity:0.75,dashArray:'5',color:'black',fillOpacity:0.4}});
if (denomid) {
if (denomid == geojson.features[0].properties.id_denom) {
bounds = layers[htmlname].getBounds();
layers[htmlname].addTo(map);
}
} else {
layers[htmlname].addTo(map);
if (!bounds) {
bounds = layers[htmlname].getBounds();
}else{
bounds = bounds.extend(layers[htmlname].getBounds());
}
}
$('#loadermessage').html("Récupération des délimitations "+nom+" dans "+commune+" terminée");
i++;
}
noms_communes.push(mycommune);
const urlCadastre = base+'/cadastre-parcelles.json';
$('#loadermessage').html("Récupération du cadastre de "+commune);
const cadastreContent = await fetch(urlCadastre);
downloads["Parcelles cadastrales - "+mycommune] = cadastreContent.url;
const parcelle_nom = '<span style="display:inline-block;width:23px;border:1px solid black;opacity:0.75;"> </span> Parcelles cadastrales - '+mycommune;
$('#loadermessage').html("Récupération du cadastre de "+commune+" : chargement des données géographique<blink>...</blink> (peut être un peu long)");
layers[parcelle_nom] = L.geoJSON(await cadastreContent.json(),{style:{weight:1,opacity:0.75,color:'black'}});
$('#loadermessage').html("Récupération du cadastre de "+commune+" : ajout des parcelles dans la carte");
layers[parcelle_nom].addTo(map);
$('#loadermessage').html("Récupération du cadastre de "+commune+" terminée");
noms_cadastre.push(parcelle_nom);
}
$('#commune_nom').html(noms_communes.join(', '));
map.fitBounds(bounds);
$('#loadermessage').html("Création des liens vers les données Open Data");
L.control.layers({},layers,{position:'bottomleft',collapsed:false}).addTo(map);
let html_download = '<ul>';
for(id in downloads){
html_download += '<li><a href="'+downloads[id]+'">'+id+'</a></li>';
}
html_download += "</ul>";
$('#download_list').html(html_download);
$('#loadermessage').html("Affichage de toutes les parcelles et leur contenances");
var parcelles_id = [];
noms_cadastre.forEach(function(parcelle_nom) {
layers[parcelle_nom].eachLayer(layer => {
parcelles_id.push(layer.feature.properties['id']);
parcelle_layers[layer.feature.properties['id']] = layer;
});
});
parcelles_id.sort();
parcelles_id.forEach(function(pid) {
layer = parcelle_layers[pid]
layer.feature.properties['human_contenance'] = parseFloat(layer.feature.properties['contenance'] / 1000).toFixed(4)+' ha';
$('#list_les_parcelles').append(properties2row(layer.feature.properties));
});
$('#sidebar').show();
console.log(window.location.hash)
if (window.location.hash) {
parcelles = window.location.hash.substring(1).split(',').filter((item, i, ar) => ar.indexOf(item) === i);;
selectParcelles(parcelles);
}
setTimeout( () => {$('#loadermessage').html("");}, 500);
map.on('click', function(e) {
for(uid in parcelle_layers) {
if (parcelle_layers[uid].getBounds().contains(e.latlng)) {
openParcelle(uid);
}
}
});
map.on('zoomend', function() {
if (map.getZoom() > 16){
$('.parcellelabel').show();
} else {
$('.parcellelabel').hide();
}
});
}
loadFeatures();
})();
var current_parcelles = [];
function selectParcelles(uid_parcelles) {
current_parcelles.forEach(function(cuid) {
if (parcelle_layers[cuid]) {
parcelle_layers[cuid].setStyle({'color': 'black', 'weight': '1'});
}
});
current_parcelles = parcelles;
let selected_bound = null;
current_parcelles.forEach(function(cuid) {
if (parcelle_layers[cuid]) {
parcelle_layers[cuid].setStyle({'color': 'red', 'fillColor': 'black', 'weight': '3'});
$('#list_vos_parcelles').append(properties2row(parcelle_layers[cuid].feature.properties, false));
markParcelle(cuid);
if (!selected_bound) {
selected_bound = parcelle_layers[cuid].getBounds();
}else{
selected_bound = selected_bound.extend(parcelle_layers[cuid].getBounds())
}
}else{
$('#list_vos_parcelles').append('<li>'+cuid+' non trouvée</li>');
}
});
$('#vos_parcelles').show();
if (selected_bound) {
map.fitBounds(selected_bound);
}
}
function markParcelle(uid) {
if (!uid || !parcelle_layers[uid]) {
return;
}
map.addLayer( new L.Marker(
parcelle_layers[uid].getBounds().getCenter(),
{
title: "MyLocation",
icon: L.divIcon( iconOptions = { iconSize : [15, 15], className : 'parcellelabel', html: '<b>' + properties2title(parcelle_layers[uid].feature.properties) + '</b>' })
}
));
}
function openParcelle(uid) {
if (!uid || !parcelle_layers[uid]) {
return;
}
markParcelle(uid);
properties = parcelle_layers[uid].feature.properties;
parcelle_id = properties["id"];
content = '<h3>'+properties2title(properties)+'</h3>';
content += '<ul>';
contenance = '';
for(var i in properties) {
if (i == 'contenance') {
properties[i] = parseFloat(properties['contenance'] / 1000).toFixed(4)+' ha';
}else if (i == 'id') {
content += '<li>'+i+' : <a href="#'+properties[i]+'">'+properties[i]+'</a></li>';
continue;
}
content += "<li>"+i+" : "+properties[i]+"</li>";
}
content += '</ul>';
parcelle_layers[uid].bindPopup(content);
parcelle_layers[uid].openPopup();
current_parcelles.push(uid);
map.fitBounds(parcelle_layers[uid].getBounds());
return false;
}
function properties2title(properties) {
var parcelle_title = '';
if (properties['prefixe'] != '000') {
parcelle_title = properties['prefixe']+' ';
}
parcelle_title += properties['section']+' '+properties['numero'];
return parcelle_title;
}
function properties2row(properties, with_id = true) {
html = '<li ';
if (with_id) {
html += ' id="'+properties['id']+'"';
}
html += ' data-uid="'+properties['id']+'" class="parcelle"><span style="min-width: 100px;display:inline-block;"><a href="#'+properties['id']+'" onclick="openParcelle($(this).parent().parent()[0].dataset.uid); return false;">'+properties2title(properties)+'</a> : </span><span class="text-right" style="width: 100px;display: inline-block;text-align: right;">'+properties['human_contenance']+'</span></li>';
return html;
}
</script>
</body>
</html>