Demo QGis
Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing: ==> layer [in template "20155#20195#64125" at line 83, column 7] ---- Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #if layer.getSiblings()?has_content [in template "20155#20195#64125" at line 83, column 2] ----
1<#--
2Web content templates are used to lay out the fields defined in a web
3content structure.
4
5Please use the left panel to quickly add commonly used variables.
6Autocomplete is also available and can be invoked by typing "${".
7-->
8<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.4.3/css/ol.css" type="text/css">
9
10<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList"></script>
11
12<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.4.3/build/ol.js"></script>
13
14 <style>
15 #map {
16 height: 500px;
17 width: 100%;
18 border-style: solid;
19 border-width: 1px;
20 border-color: blue;
21 }
22
23 @media (max-width: 600px) {
24 .foothead,
25 #map {
26 width: 100%;
27 }
28 ;
29 }
30 </style>
31
32
33 <div id="map" class="map"></div>
34
35
36
37<script>
38
39// http://geogis.netcaring.eu/qgis/qgis_mapserv.fcgi.exe?MAP=C:\webserver\data\prod\rep1\pozzetto.qgs&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&SRS=EPSG:4326&WIDTH=665&HEIGHT=551&FORMAT=image/jpeg&layers=pozzetti
40//1511951.487864,4984054.615439,1638072.584517,5050096.207868
41
42
43// http://geo.arpacampania.it/qgis/qgis_mapserv.fcgi.exe?MAP=C:%5Cwebserver%5Cdata%5Cprod%5Crep1%5Cdataset_rqa.qgs&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&SRS=EPSG:4326&WIDTH=665&HEIGHT=551&FORMAT=image/jpeg&layers=stazioni_rqa
44//
45
46 var minX= 1511951.487864;
47 var minY= 4984054.615439;
48 var maxX= 1638072.584517;
49 var maxY= 5050096.207868;
50
51
52
53 var maxExtent = [minX, minY, maxX, maxY];
54 var scaleLineControl = new ol.control.ScaleLine();
55
56 var map = new ol.Map({
57 controls: ol.control.defaults().extend([scaleLineControl]),
58 target: 'map',
59 pixelRatio: 1,
60 view: new ol.View({
61 center: ol.proj.transform([1511951.487864, 5050096.207868], 'EPSG:4326', 'EPSG:3857'),
62 zoom: 7,
63 maxZoom: 12
64
65 })
66 });
67
68
69 var basemap1 = new ol.layer.Tile({
70 title: 'OSM',
71 type: 'base',
72 crossOrigin: 'anonymous',
73 source: new ol.source.OSM({
74 layer: 'sat'
75 })
76 });
77
78 map.addLayer(basemap1);
79
80
81
82
83 <#if layer.getSiblings()?has_content>
84 <#list layer.getSiblings() as cur_layer>
85
86 var single_layer = new ol.layer.Tile({
87 source: new ol.source.TileWMS({
88 url: 'https://geo.arpacampania.it/qgis/qgis_mapserv.fcgi.exe?MAP=C:\\webserver\\data\\prod\\rep1\\' + '${progetto.getData()}.qgs',
89 params: {
90 'SRS': 'EPSG:4326',
91 'layers': '${cur_layer.getData()}',
92 'FORMAT': 'image/png'
93
94 },
95 serverType: 'geoserver',
96 transition: 0
97
98 })
99
100 });
101
102 map.addLayer(single_layer);
103
104 </#list>
105</#if>
106
107
108
109 map.getView().fit(maxExtent, {size:map.getSize(), maxZoom:16})
110
111
112
113
114
115</script>