-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.js
175 lines (160 loc) · 4.7 KB
/
settings.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
GeoApp.applicatieSettings = {
// baseLayers: [
// {
// title: 'OpenTopo',
// url: 'http://geodev.nieuwegein.nl/mapproxy/service',
// params: {
// layers: 'opentopo',
// format: 'image/png'
// },
// options: {
// opacity: 0.4,
// }
// },
// {
// title: 'Luchtfoto',
// url: 'http://geodev.nieuwegein.nl/mapproxy/service',
// params: {
// layers: 'basisluchtfoto',
// format: 'image/png'
// },
// options: {
// }
// },
// ],
overLays: [
// Definitie van een WFS-laag //
{
type: 'wfs',
title: 'Speellocaties Buurten wfs',
url: 'http://geodev.nieuwegein.nl/geoserver/wfs',
options: {
format: 'wfs',
version: "1.1.0",
dataProjection: "EPSG:28992",
featureNS: 'http://www.nieuwegein.nl',
// Featuretypes moet altijd een Array zijn! //
featureTypes: ['speellocaties_buurten_app'],
visible: false,
strategy: 'bboxStrategy',
// Voeg simpele style toe in de WFS-laag //
style: {
fill: {
color: 'rgba(0,255,0,1)'
},
stroke: {
width: 4,
color: 'rgba(0,0,255,1)',
}
}
}
},
{
type: 'wms',
title: 'Speellocaties Buurten',
url: 'http://geodev.nieuwegein.nl/geoserver/wms',
params: {
layers: 'nieuwegein:speellocaties_buurten_app',
format: 'image/png',
buffer: 5
},
options: {
singleTile: true,
visible: true,
displayInLayerSwitcher: false,
wmsinfoformat: 'application/vnd.ogc.gml', //'application/vnd.ogc.gml', // text/plain, application/vnd.ogc.gml, application/vnd.ogc.gml/3.1.1, text/html
fields: {
'nieuwegein:speellocaties_buurten_app': {
'TYPE': 'Type',
'SPEELBUURT': 'Speelbuurt',
'AANTAL_SPEELLOCATIES': 'Aantal Speellocaties',
}
},
legend: true,
// hideInLayerManager: true,
//dowloadformat: 'excel',
/*styles: [
{name:'Meldingen', style:'mor_data_2018_style'},
{name:'Heatmap', style:'mor_data_2018_heatmap_style'},
],*/
filter: [{
'SPEELBUURT': {
'TITLE': 'Speelbuurt',
'TYPE':'TEXT',
}
}],
},
// attribution: 'Test attribution',
},
{
type: 'wms',
title: 'Speellocaties',
url: 'http://geodev.nieuwegein.nl/geoserver/wms',
params: {
layers: 'nieuwegein:speellocaties_locaties_app',
format: 'image/png',
buffer: 10
},
options: {
// wmsinfoformat: 'application/vnd.ogc.gml', // text/plain, application/vnd.ogc.gml, application/vnd.ogc.gml/3.1.1, text/html
singleTile: true,
fields: {
'nieuwegein:speellocaties_locaties_app': {
'SPNR': 'Sp-nummer',
'BEHEERNUMMER': 'Beheernummer',
'LOCATIENAAM': 'Locatienaam',
'SPEELBUURT': 'Speelbuurt',
'HUIDIGE_CATEGORIE': 'Huidige categorie',
'TYPE_ONTMOETING': 'Type ontmoeting',
'WORDT_TYPE_PLEK_1': 'Wordt type plek (1)',
'WORDT_TYPE_PLEK_2': 'Wordt type plek (2)',
'WORDT_CATEGORIE': 'Wordt Categorie',
'ADVIES_MAATREGELEN': 'Advies Maatregelen',
}
},
// De URL voor de legenda voor het tonen in de layerswitcher //
legend: 'http://geodev.nieuwegein.nl/ol6/apps/projectenkaart/',
// Regelt of de legenda mee schaalt met kaartschaal //
legendScale: true,
// De schaal waarop de laag klikbaar word in de layermanager //
layerScale: 30000,
// Zet de laag visibility bij het laden van de app //
visible: true,
// Verbergt de laag in de layerswitcher //
hideInLayerManager: false,
// Maak een filter voor de laag //
filter: [{
'SPEELBUURT': {
'TITLE': 'Speelbuurt',
'TYPE':'TEXT',
}
}],
},
serverType: 'geoserver',
},
],
// Activate Layermanager //
layerManager: true,
// Activate sidebar en verberg //
sidebar: true,
sidebarHide: true,
// Set default zoom en center //
mapZoom: 7,
mapCenter: [135089.1, 448762.5],
// Maak een extra legenda en verberg//
legend: [{
title: 'test',
url: "./legenda.png"
},
{
title: 'test1',
url: "./legenda.png"
},
],
legendHide: true,
// Forceert featureinfo popup ondanks Sidebar settings //
forceInfoPopup: false,
};
// Extra uit te voeren Javascript code //
GeoApp.applicatieInit = function () {
};