-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
256 lines (230 loc) · 10.5 KB
/
script.js
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
// stworzenie mapy i poziomów danych
var map = L.map('mapid').setView([52.408, 16.934], 11);
map.createPane('najwyższe'); map.createPane('wysokie'); map.createPane('średnie');
map.createPane('niskie'); map.createPane('najniższe');
map.getPane('najwyższe').style.zIndex = 35;
map.getPane('wysokie').style.zIndex = 30;
map.getPane('średnie').style.zIndex = 20;
map.getPane('niskie').style.zIndex = 15;
map.getPane('najniższe').style.zIndex = 10;
// wczytanie podkładów oraz WMS
var OSM = L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 19, attribution: '©<a href="https://openstreetmap.org/copyright">OpenStreetMap contributors</a>',
pane: 'najniższe'
}).addTo(map);
var mapbox = L.tileLayer('https://api.mapbox.com/styles/v1/tommat21/cl0zeqb1b000p14pburjv7aur/tiles/256/{z}/{x}/{y}@2x?access_token=pk.eyJ1IjoidG9tbWF0MjEiLCJhIjoiY2szdmpseXljMDhsdjNkcGh0YmhhczQyeSJ9.PviNBy-Ul0xrd-L88GgRnw',
{pane: 'najniższe'});
var drzewa = L.tileLayer.wms('http://wms2.geopoz.poznan.pl/geoserver/srodowisko/wms',{
layers: 'srodowisko:mapa_wysokosci_drzew',
format: 'image/png',
transparent: true,
pane: 'najniższe'
})
// FUNKCJE
// interakcje z warstwą osiedli
function layer_hover(feature, layer) {
var popupContent = "<center><b>Osiedle:</b> " + feature.properties.NAZWA +
"<br><b>Pokrycie terenami zielonymi:</b> " + feature.properties.pokrycie_zielenia + "%";
layer.bindPopup(popupContent, {className: 'popupCustom'});
layer.on('mouseover', function (e) {
this.bringToFront();
this.setStyle({color: 'red', fillOpacity: 0});
document.getElementById('dane').innerHTML = "<b>Nazwa:</b> " + feature.properties.NAZWA +
"<br><b>Liczba mieszkańców:</b> " + feature.properties.LICZBA_MIESZKANCOW +
"<br><b>Gęstość zaludnienia:</b> " + feature.properties.GESTOSC_ZALUDNIEINA + " os./km<sup>2</sup>" +
"<br><b>Pokrycie terenami zielonymi:</b> " + feature.properties.pokrycie_zielenia + "%";
});
layer.on('mouseout', function (e) {
this.bringToBack()
this.setStyle({color: 'blue', fillOpacity: 0.1});
document.getElementById('dane').innerHTML = "Najedź kursorem na osiedle aby zobaczyć dane na jego temat";
});
}
// ikona pomników przyrody
var ikona = L.icon({
iconUrl: 'img/pomnik_przyrody.png',
iconSize: [20, 20],
iconAnchor: [12, 12],
popupAnchor: [0, 0]
});
// funkcje tworzące dwa rodzaje punktów dla pomników przyrody
function pomniki_ikony(point, latlng) {
return L.marker(latlng, {icon: ikona});
}
function pomniki_punkty(point, latlng) {
return L.circleMarker(latlng, {radius: 1, color: '#043812'});
}
// popupy pomników przyrody
function pomniki_popup(feature, layer){
var gatunek = feature.properties.gatunek;
if (gatunek == 'brak danych') {
var gatunek = "<span style='color:red'>brak danych</span>"
};
layer.bindPopup("<b><u><center>Pomnik przyrody</center></u><br>Rodzaj:</b> " + feature.properties.obiekt + "<br><b>Gatunek:</b> <i>" + gatunek, {className: 'popupCustom'})
}
// dodawanie odpowiedniej ikony pomników w zależności od zoomu
map.on('zoomend', function(ev){
if (map.getZoom() > 15) {
formy_ochrony.removeLayer(pomniki_pkt)
formy_ochrony.addLayer(pomniki_icon)
} else {
formy_ochrony.removeLayer(pomniki_icon)
formy_ochrony.addLayer(pomniki_pkt)
}
});
// kolory legendy
function getColor_zielen(x) {
return x == 'Cmentarze' ? "#a7c4a9" :
x == 'Obiekt sportowy' ? "#a4d977" :
x == 'Ogród działkowy' ? "#94e0af" :
x == 'Parki i skwery' ? "#35c841" :
x == 'Zieleń' ? "green":
x == 'Fort' ? "#909e83":
"green";
}
function getColor_formy(x) {
return x == 'Rezerwaty' ? "#4f9839" :
x == 'Obszary Natura 2000' ? "#4ac626" :
x == 'Użytki ekologiczne' ? "#bae537" :
x == 'Obszary chronionego krajobrazu' ? "#82c338" :
"green";
}
// WARSTWY
// granice
var admin = L.geoJson(poznan_admin, {color: 'blue', fillOpacity: 0.1, weight: 2,
pane: 'średnie',
onEachFeature: layer_hover
});
var poznan = L.geoJson(poznan, {color: 'black', weight: 4, pane: 'najwyższe'}).addTo(map);
// tereny zielone
var tereny_zielone = L.geoJson(tereny_zielone, {
onEachFeature: function(feature, layer) {
var nazwa = feature.properties.NAZWA;
if (nazwa == null) {
var nazwa = "<span style='color:red'>brak</span>"
};
layer.bindPopup("<b>Rodzaj: </b> " + feature.properties.RODZAJ + "<br><b>Nazwa: </b> " + nazwa, {className: 'popupCustom'});
},
style: function(feature) {
typ = feature.properties.RODZAJ;
return typ == 'Cmentarz inny' || typ == 'Cmentarz komunalny' || typ == 'Cmentarz parafialny' ? {color: '#a7c4a9', weight: 0, fillOpacity: 1, pane: 'niskie'}:
typ == 'Obiekt sportowy' ? {color: '#a4d977', weight: 0, fillOpacity: 1, pane: 'niskie'}:
typ == 'Ogród działkowy' ? {color: '#94e0af', weight: 0, fillOpacity: 1, pane: 'niskie'}:
typ == 'Park' || typ == 'Skwer' ? {color: '#35c841', weight: 0, fillOpacity: 1, pane: 'niskie'}:
typ == 'Zieleń' ? {color: 'green', weight: 0, fillOpacity: 1, pane: 'niskie'}:
typ == 'Fort' ? {color: '#909e83', weight: 0, fillOpacity: 1, pane: 'najniższe'}:
{color: 'green', weight: 0, fillOpacity: 1, pane: 'niskie'};
}
});
// formy ochrony przyrody
var pomniki_pkt = L.geoJson(pomniki, {pointToLayer: pomniki_punkty, pane: 'wysokie', onEachFeature: pomniki_popup});
var pomniki_icon = L.geoJson(pomniki, {pointToLayer: pomniki_ikony, pane: 'wysokie', onEachFeature: pomniki_popup});
var rezerwaty = L.geoJson(rezerwaty, {color: '#387a25', fillOpacity: 0.5, pane: 'wysokie',
onEachFeature: function(feature, layer) {
layer.bindPopup("<b><u><center>Rezerwat</center></u><br>Nazwa:</b> " + feature.properties.nazwa, {className: 'popupCustom'});
}
});
var natura2000 = L.geoJson(natura2000, {color: '#4ac626', fillOpacity: 0.5, pane: 'wysokie',
onEachFeature: function(feature, layer) {
layer.bindPopup("<b><u><center>Obszar Natura 2000</center></u><br>Nazwa:</b> " + feature.properties.nazwa, {className: 'popupCustom'});
}
});
var obszary_krajobrazu = L.geoJson(obszary_krajobrazu, {color: '#82c338', fillOpacity: 0.5, pane: 'wysokie',
onEachFeature: function(feature, layer) {
layer.bindPopup("<b><u><center>Obszar chronionego krajobrazu</center></u><br>Nazwa:</b> " + feature.properties.nazwa, {className: 'popupCustom'});
}
});
var uzytki_ekologiczne = L.geoJson(uzytki_ekologiczne, {color: '#bae537', fillOpacity: 0.5, pane: 'wysokie',
onEachFeature: function(feature, layer) {
layer.bindPopup("<b><u><center>Użytek ekologiczny</center></u><br>Nazwa:</b> " + feature.properties.nazwa, {className: 'popupCustom'});
}
});
var formy_ochrony = L.layerGroup([pomniki_pkt, rezerwaty, natura2000, obszary_krajobrazu, uzytki_ekologiczne]);
// CONTROLS
// geokoder OSM
var osmGeocoder = new L.Control.OSMGeocoder({text: 'Wyszukaj', placeholder: 'wpisz nazwę...', bounds: L.LatLngBounds(poznan),
collapsed: true, position: 'topleft'}).addTo(map);
// mapy podkładowe
var baseMaps = {
"OSM": OSM,
"Satelita": mapbox
};
// warstwy z danymi
var overlayMaps = {
"granica Poznania": poznan,
"osiedla": admin,
"tereny zielone": tereny_zielone,
"formy ochrony przyrody": formy_ochrony,
"zadrzewienie": drzewa
};
// przycisk zmiany widoczności warstw
var layer_control = L.control.layers(baseMaps, overlayMaps).addTo(map);
// obsługa przycisku info
var czy_info = 1;
document.getElementById("info_przycisk").addEventListener("click", function(){
if (czy_info == 1) {
document.getElementById("dane").style.display = 'none';
czy_info = 0;
} else {
document.getElementById("dane").style.display = 'block';
czy_info = 1;
}
});
// LEGENDA
// legenda warstwy terenów zielonych
var legend_zielen = L.control({position: 'bottomleft'});
legend_zielen.onAdd = function(map) {
var div = L.DomUtil.create('div', 'info legend');
labels = ["<span style='font-size:1vw;'><strong>          Typy terenów zielonych</strong>"],
categories = ['Parki i skwery', 'Zieleń','Obiekt sportowy', 'Ogród działkowy', 'Cmentarze', 'Fort'];
for (var i = 0; i < categories.length; i++) {
div.innerHTML +=
labels.push(
'<i style="height:0.9vw;width:0.9vw;background:' + getColor_zielen(categories[i]) + '"></i> ' + (categories[i] ? categories[i] : '+')
);
}
div.innerHTML = labels.join('<br>');
return div;
};
// legenda warstwy form ochrony przyrody
var legend_formy = L.control({position: 'bottomleft'});
legend_formy.onAdd = function(map) {
var div = L.DomUtil.create('div', 'info legend');
labels = ["<span style='font-size:1vw;'><strong>          Formy ochrony przyrody</strong>"],
categories = ['Rezerwaty', 'Obszary Natura 2000', 'Użytki ekologiczne', 'Obszary chronionego krajobrazu'];
for (var i = 0; i < categories.length; i++) {
div.innerHTML +=
labels.push(
'<i style="height:0.9vw;width:0.9vw;background:' + getColor_formy(categories[i]) + '"></i> ' + (categories[i] ? categories[i] : '+')
);
}
div.innerHTML = labels.join('<br>');
labels.push('<img src="img/pomnik_przyrody.png" style="height:0.9vw;width:0.9vw;">' +
'<i style="height:0.2vw;width:0.2vw;border-radius:0.2vw;background:#043812;margin-top:0.4vw;"></i>  Pomniki przyrody');
div.innerHTML = labels.join('<br>');
return div;
};
// dodawanie i usuwanie legend
map.on('overlayadd', function(ev) {
if (map.hasLayer(tereny_zielone) == true) {
legend_zielen.addTo(map);
}
if (map.hasLayer(formy_ochrony) == true) {
legend_formy.addTo(map);
}
});
map.on('overlayremove', function(eventLayer) {
if (map.hasLayer(tereny_zielone) == false) {
map.removeControl(legend_zielen);
}
if (map.hasLayer(formy_ochrony) == false) {
map.removeControl(legend_formy);
}
});
// otwieranie i zamykanie sekcji "O mapie"
document.getElementById("about_button").addEventListener("click", function(){
document.getElementById("about").style.display = 'block';
});
document.getElementById("krzyżyk").addEventListener("click", function(){
document.getElementById("about").style.display = 'none';
});