-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
625 lines (616 loc) · 31.3 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
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width" />
<link rel="stylesheet" href="css/ol.css" type="text/css" />
<link rel="stylesheet" href="css/bootstrap/css/bootstrap.min.css" type="text/css" />
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/layout.css" type="text/css" />
<link rel="stylesheet" href="css/bootstrap/css/bootstrap-responsive.min.css" type="text/css" />
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="js/lib/jquery-ui/jquery-ui.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<style type="text/css">
#layertree li > span{
cursor:pointer;
}
#over {
bottom: 580px;
z-index: 99;
}
body {
padding-top: 60px;
}
</style>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//bolegweb.geof.unizg.hr/piwik/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 9]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//bolegweb.geof.unizg.hr/piwik/piwik.php?idsite=9" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
<script type="text/javascript">
$(document).ready(function () {
//$("input[type=range]").slice( 3 ).val(0.3);
$( "#removeAll" ).first().click(function() {
$( "#visible1" ).click();
$( "#visible2" ).click();
$( "#visible3" ).click();
$( "#visible4" ).click();
$( "#visible5" ).click();
$( "#visible6" ).click();
});
$('button[title="Attributions"]').after('<a href="http://147.251.252.167:8080/geoserver/web/?wicket:bookmarkablePage=:org.geoserver.web.demo.MapPreviewPage" target="_new"><img src="http://a.fsdn.com/allura/p/geoserver/icon" width="22px" title="GeoServer Web GIS Server"></img></a><a href="http://147.251.252.167:8080/geoserver/ows?service=wms&version=1.3.0&request=GetCapabilities" target="_new"><img src="http://www.cali.gov.co/info/principal/media/img5601" height="22px" title="OGC WMS GetCapabilities"></img></a>' );
});
</script>
<!-- <script type="text/javascript">
$(document).ready(function () {
$( "#popup" ).onclick(function() {
$( "#popup" ).draggable();
});
});
</script> -->
<!-- <script>
$(document).ready(function () {
$( "#info" ).children().click(function() {
$('#leg1').show();
});
});
</script> -->
<title>SK Pilot Aplikácia Hodnotenie Ekosystémových Služieb</title>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div style="float: left; padding-left: 5px;">
<a href="http://sdi4apps.eu/" target="_blank" ><img style="padding-top: 20px; padding-left: 20px;"
src="img/sdi4apps_logo_web.png"/></a>
<!-- <a href="http://sdi4apps.eu/" target="_blank" ><img style="padding-top: 10px; padding-left: 10px;"
src="../img/sazp.png"/></a>
<a href="http://sdi4apps.eu/" target="_blank" ><img style="padding-top: 10px; padding-left: 10px;"
src="../img/epro.png"/></a>
<a href="http://sdi4apps.eu/" target="_blank" ><img style="padding-top: 10px; padding-left: 10px;"
src="../img/pronatur.png"/></a> -->
</div>
<div style="float: left; padding-left: 50px; padding-top: 12px;">
<h2 style="color: white">SK Pilot Aplikácia Hodnotenie Ekosystémových Služieb</h2>
</div>
<div style="float: right; margin-right: 15px; margin-top: 50px;"><a href="/" style="color: white">ESS PORTÁL</a></div>
<div style="float: right; margin-right: 15px; margin-top: 50px;"><a href="eng" style="color: white">ANGLICKY</a></div>
<div style="float: right; margin-right: 15px; margin-top: 50px;"><a href="index-dev.html" style="color: white">VERZIA 2</a></div>
</div>
</div>
<div id="wrapper" class="container-fluid">
<div class="row-fluid">
<div class="span6">
<div id="map" class="map"></div>
<!-- Map Overlay Div -->
<div id="over" class="col-xs-6 col-xs-offset-3">
<!-- Search Bar -->
<form id="placename-search">
<div class="form-group">
<input type="text" class="form-control" id="placename-input" placeholder="HĽADAJ LOKALITU PODĽA NÁZVU (napr. slovensky raj )">
</div>
</form>
</div> <!-- Map Overlay Div -->
<div id="popup" class="ol-popup">
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
<div id="popup-content"></div>
</div>
<button style="float: right; margin-top: 10px;" id="removeAll">ZAPNI/VYPNI TEMATICKÉ VRSTVY</button>
<br>
<br>
<h3 id="title">Ekosystémové služby (ESS)</h3>
<h4 id="title">Základné vrstvy hodnotených ESS</h4>
<p id="shortdesc">Základné vrstvy vyjadrujú objem úžitkov poskytovaných danou ekosystémovou službou vo fyzických jednotkách tak ako boli vyhodnotené. Napr. m3 drevnej hmoty alebo m3 uhlíka pri vrstve ukladania uhlika v jedntlivých typoch krajiny.</p>
<h4 id="title">Normalizované vrstvy</h4>
<p id="shortdesc">Normalizované vrstvy sú vytvorené z vrstiev 5 hodnotených ESS tak, že hodnoty v jednotlivých vrstvách boli prevedené (znormalizované) na hodnoty 0-1. Takéto normalizovanie veľmi jednoduchým spôsobom umožňuje kvalitatívne porovnávať a zlučovať rôzne vrstvy.</p>
<div id="info" class="alert alert-success" style="display: table; float: right;"></div>
<!--<div id="container" style="min-width: 310px; height: 400px; float: left;"></div>-->
<!--
<h4 id="title">Legendy</h4>
<div id="legendy" class="alert alert-success" style="display: table;">
<div id="leg1" style="float: left; padding-left: 5px; display: none " ><figcaption>1_lesy_biomasa</figcaption><img src="http://147.251.252.167:8080/geoserver/wms?REQUEST=GetLegendGraphic&VERSION=1.0.0&FORMAT=image/png&WIDTH=20&HEIGHT=20&LAYER=1_lesy_biomasa">
</div>
<div id="leg2" style="float: left; padding-left: 5px; display: none" ><figcaption>6_sluzieb_norm_final</figcaption><img src="http://147.251.252.167:8080/geoserver/wms?REQUEST=GetLegendGraphic&VERSION=1.0.0&FORMAT=image/png&WIDTH=20&HEIGHT=20&LAYER=sk_pilot_ess_rasters:6_sluzieb_norm_final">
</div>
</div> -->
</div>
<div id="layertree" class="span6">
<ul>
<ul class="chk-container">
<!-- BASE -->
<li style="padding-bottom: 15px"><span>PODKLADOVÉ VRSTVY</span>
<fieldset id="layer0">
<label class="checkbox" for="visible0">
<input id="visible0" class="visible" type="checkbox" />
visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1" step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
<ul>
<li><span>Open Street Map</span>
<fieldset id="layer00">
<label class="checkbox" for="visible00">
<input id="visible00" class="visible"
type="checkbox" />visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1"
step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
</li>
<li><span>World Borders</span>
<fieldset id="layer01">
<label class="checkbox" for="visible01">
<input id="visible01" class="visible"
type="checkbox" />visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1"
step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
</li>
</ul>
</li>
<!-- I -->
<li style="padding-bottom: 15px"><span style="text-transform: uppercase;">I. PRODUKCIA DREVNEJ HMOTY</span>
<p>Vrstva vznikala z podkladovej vrstvy Corine Landcover 2006 a boli
v nej hodnotené kategórie lesa podľa rozdelenia Corine.
(Ihličnatý les, zmiešaný les, listnatý les). Jednotlivým bunkám
vrstvy bola priradená priemerna hodnota prírastku drevnej hmoty
v danom type lesa za rok.</p>
<fieldset id="layer1">
<label class="checkbox" for="visible1">
<input id="visible1" class="visible" type="checkbox"
/>visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1" step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
<ul>
<li><span>Objem drevnej hmoty vyprodukovanej v tonách na ploche 1 ha za rok</span>
<fieldset id="layer10">
<label class="checkbox" for="visible10">
<input id="visible10" class="visible"
type="checkbox" />visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1"
step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
</li>
<li><span>Objem drevnej hmoty vyprodukovanej na ploche 1 ha za rok - normalizovaný.</span>
<fieldset id="layer11">
<label class="checkbox" for="visible11">
<input id="visible11" class="visible"
type="checkbox" />visibility</label>
<!--<label>opacity</label>-->
<input class="opacity" type="range" min="0" max="1"
step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793"
max="3.141592653589793" step="0.01" />
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5"
step="0.01" />
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2"
step="0.01" />
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1"
step="0.01" />
-->
</fieldset>
</li>
</ul>
</li>
<!-- II -->
<li style="padding-bottom: 15px"><span style="text-transform: uppercase;">II. POČET KUSOV DOBYTKA NA HEKTÁR PASIENKOV</span>
<p>Vrstva vyjadruje počet kusov dobytka na 1ha pasienkov v danom okrese. Vrstva vznikla ako kombinácia štatistických údajov o stave dobytka v jednotlivých okresoch SR a pasienkov vhodných na chov dobytka.</p>
<fieldset id="layer2">
<label class="checkbox" for="visible2">
<input id="visible2" class="visible" type="checkbox"
/>visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1" step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
<ul>
<li><span>Počet kusov dobytka na 1ha pasienkov.</span>
<fieldset id="layer20">
<label class="checkbox" for="visible20">
<input id="visible20" class="visible"
type="checkbox" />visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1"
step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
</li>
<li><span>Počet kusov dobytka na 1ha pasienkov - normalizovaný.</span>
<fieldset id="layer21">
<label class="checkbox" for="visible21">
<input id="visible21" class="visible"
type="checkbox" />visibility</label>
<!--<label>opacity</label>-->
<input class="opacity" type="range" min="0" max="1"
step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793"
max="3.141592653589793" step="0.01" />
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5"
step="0.01" />
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2"
step="0.01" />
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1"
step="0.01" />
-->
</fieldset>
</li>
</ul>
</li>
<!-- III -->
<li style="padding-bottom: 15px"><span style="text-transform: uppercase;">III. UKLADANIE UHLÍKA V JEDNOTLIVÝCH TYPOCH KRAJINY</span>
<p>Vrstva definuje objem ukladaného CO2 v krajine v tonách za rok. Vrstva vznikla ohodnotením typov krajiny podľa Corine landcover a priradenie jednotlivým typom krajiny hodnoty ukladania CO2.</p>
<fieldset id="layer3">
<label class="checkbox" for="visible3">
<input id="visible3" class="visible" type="checkbox"
/>visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1" step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
<ul>
<li><span>Objem ukladaného CO2 v krajine v tonách za rok</span>
<fieldset id="layer30">
<label class="checkbox" for="visible30">
<input id="visible30" class="visible"
type="checkbox" />visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1"
step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
</li>
<li><span>Objem ukladaného CO2 v krajine v tonách za rok - normalizovaný.</span>
<fieldset id="layer31">
<label class="checkbox" for="visible31">
<input id="visible31" class="visible"
type="checkbox" />visibility</label>
<!--<label>opacity</label>-->
<input class="opacity" type="range" min="0" max="1"
step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793"
max="3.141592653589793" step="0.01" />
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5"
step="0.01" />
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2"
step="0.01" />
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1"
step="0.01" />
-->
</fieldset>
</li>
</ul>
</li>
<!-- IV -->
<li style="padding-bottom: 15px"><span style="text-transform: uppercase;">IV. KVALITA ÚZEMIA Z HĽADISKA CESTOVNÉHO RUCHU</span>
<p>Vrstva vyjadruje potenciál územia na využitie z hľadiska cestovného ruchu. Vrstva bola hodnotená ako sumár ohodnotených plôch a bodov potenciálne zaujámavých pre využitie pre cestovný ruch. Ako vstupy boli do vrstvy zapojené chránené územia ohodnotené podľa významnosti pričom boli zohľadnené legislatívne obmedzenia prístupu (napr. Obmedzenie prístupu do niektorých maloplošných chránených území s najvyšším stupňom ochrany). Do vrstvy boli taktiež zapojené územia vhodné na rekreáciu ako napr. veľké vodné nádrže a lokálne významné objekty pre cestovný ruch ako napr. hrady, jaskyne a ďalšie významné kultúrne, krajinné a prírodné lokality. Územia s najvyšším hodnotením majú najlepšiu kvalitu územia z hľadiska cestovného ruchu.</p>
<fieldset id="layer4">
<label class="checkbox" for="visible4">
<input id="visible4" class="visible" type="checkbox"
/>visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1" step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
<ul>
<li><span>Potenciál územia na využitie z hľadiska cestovného ruchu (Min: 1; Max: 10)</span>
<fieldset id="layer40">
<label class="checkbox" for="visible40">
<input id="visible40" class="visible"
type="checkbox" />visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1"
step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
</li>
<li><span>Potenciál územia na využitie z hľadiska cestovného ruchu - normalizovaný.</span>
<fieldset id="layer41">
<label class="checkbox" for="visible41">
<input id="visible41" class="visible"
type="checkbox" />visibility</label>
<!--<label>opacity</label>-->
<input class="opacity" type="range" min="0" max="1"
step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793"
max="3.141592653589793" step="0.01" />
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5"
step="0.01" />
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2"
step="0.01" />
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1"
step="0.01" />
-->
</fieldset>
</li>
</ul>
</li>
<!-- V -->
<li style="padding-bottom: 15px"><span style="text-transform: uppercase;">V. Biodiverzita</span>
<p>Vrstva vyjadruje kvalitu územia z hľadiska biologickej diverzity. Vrstva vznikla z vrstiev kvalitatívneho ohodnotenia výskytu cca. 250 vybraných chránených druhov a ich vzájomným preložením. Územia s najvyšším hodnotením majú najlepšiu biodiverzitu.</p>
<fieldset id="layer5">
<label class="checkbox" for="visible5">
<input id="visible5" class="visible" type="checkbox"
/>visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1" step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
<ul>
<li><span>Kvalita územia z hľadiska biologickej diverizity (Min: 0; Max: 6000)</span>
<fieldset id="layer50">
<label class="checkbox" for="visible50">
<input id="visible50" class="visible"
type="checkbox" />visibility</label>
<!-- <label>opacity</label> -->
<input class="opacity" type="range" value="0" min="0"
max="1" step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
</li>
<li><span>Biodiverzita - normovaná</span>
<fieldset id="layer51">
<label class="checkbox" for="visible51">
<input id="visible51" class="visible"
type="checkbox" />visibility</label>
<!-- <label>opacity</label> -->
<input class="opacity" type="range" value="0" min="0"
max="1" step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
</li>
</ul>
</li>
<!-- VI -->
<li style="padding-bottom: 15px"><span style="text-transform: uppercase;">VI. CELKOVÉ HODNOTENIE EKOSYSTÉMOVÝCH SLUŽIEB</span>
<p>Preložením čiastkových normalizovaných vrstiev cez seba vznikla výsledná vrstva, ktorá definuje kvalitu územia z hľadiska poskytovania týchto ekosystémových služieb.</p>
<fieldset id="layer6">
<label class="checkbox" for="visible6">
<input id="visible6" class="visible" type="checkbox"
/>visibility</label>
<!--
<label>opacity</label>
-->
<input class="opacity" type="range" min="0" max="1" step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
<ul>
<li><span>Celková hodnota ekosystémových služieb</span>
<fieldset id="layer60">
<label class="checkbox" for="visible60">
<input id="visible60" class="visible"
type="checkbox" />visibility</label>
<!-- <label>opacity</label> -->
<input class="opacity" type="range" value="0" min="0"
max="1" step="0.01" />
<!--
<label>hue</label>
<input class="hue" type="range" min="-3.141592653589793" max="3.141592653589793" step="0.01"/>
<label>saturation</label>
<input class="saturation" type="range" min="0" max="5" step="0.01"/>
<label>contrast</label>
<input class="contrast" type="range" min="0" max="2" step="0.01"/>
<label>brightness</label>
<input class="brightness" type="range" min="-1" max="1" step="0.01"/>
-->
</fieldset>
</li>
</ul>
</li>
</ul>
</ul>
</div>
</div>
</div>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/example-behaviour.js" type="text/javascript"></script>
<script src="js/loader.js?id=ess_v1" type="text/javascript"></script>
<!--
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>-->
<script src="js/search.js"></script>
<script src="//cdn.rawgit.com/fgnass/spin.js/2.3.0/spin.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</body>
</html>