@vcmap/ui 5.0.0-rc.10 → 5.0.0-rc.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/README.md +11 -4
  2. package/build/build.js +0 -3
  3. package/build/buildHelpers.js +0 -1
  4. package/build/buildPreview.js +7 -0
  5. package/config/aerowest.config.json +13 -3
  6. package/config/base.config.json +89 -64
  7. package/config/codes.config.json +397 -0
  8. package/config/dev.config.json +169 -0
  9. package/config/graphFeatureInfo.config.json +100 -0
  10. package/config/www.config.json +1232 -0
  11. package/dist/assets/{cesium.eb5667.js → cesium.e67536.js} +0 -0
  12. package/dist/assets/cesium.js +1 -1
  13. package/dist/assets/core.ebf665.js +4 -0
  14. package/dist/assets/core.js +1 -1
  15. package/dist/assets/{index.4ccd4433.js → index.9b213929.js} +1 -1
  16. package/dist/assets/{ol.ef03b1.js → ol.8bbd50.js} +0 -0
  17. package/dist/assets/ol.js +1 -1
  18. package/dist/assets/ui.fdfe0d.css +1 -0
  19. package/dist/assets/ui.fdfe0d.js +68 -0
  20. package/dist/assets/ui.js +1 -1
  21. package/dist/assets/vue.0bb7c6.js +9 -0
  22. package/dist/assets/vue.js +2 -1
  23. package/dist/assets/{vuetify.401a29.css → vuetify.53300f.css} +1 -1
  24. package/dist/assets/{vuetify.401a29.js → vuetify.53300f.js} +71 -71
  25. package/dist/assets/vuetify.js +2 -2
  26. package/dist/index.html +1 -1
  27. package/index.js +36 -5
  28. package/lib/vue.js +1 -0
  29. package/map.config.json +15 -6
  30. package/package.json +6 -7
  31. package/plugins/@vcmap/create-link/fallbackCreateLink.vue +71 -0
  32. package/plugins/@vcmap/create-link/index.js +83 -0
  33. package/plugins/@vcmap/create-link/package.json +6 -0
  34. package/plugins/@vcmap/pluginExample/index.js +1 -1
  35. package/plugins/@vcmap/pluginExample/pluginExampleComponent.vue +20 -3
  36. package/plugins/@vcmap/project-selector/ProjectSelectorComponent.vue +1 -1
  37. package/plugins/@vcmap/project-selector/index.js +1 -1
  38. package/plugins/@vcmap/project-selector/package.json +1 -2
  39. package/plugins/@vcmap/theme-changer/ThemeChangerComponent.vue +1 -1
  40. package/plugins/@vcmap/theme-changer/index.js +1 -1
  41. package/plugins/@vcmap/theme-changer/package.json +1 -2
  42. package/plugins/categoryTest/Categories.vue +89 -1
  43. package/plugins/categoryTest/Category.vue +1 -1
  44. package/plugins/simple-graph/README.md +51 -0
  45. package/plugins/simple-graph/SimpleGraphComponent.vue +70 -0
  46. package/plugins/simple-graph/index.js +17 -0
  47. package/plugins/simple-graph/package.json +11 -0
  48. package/plugins/simple-graph/simpleGraphView.js +76 -0
  49. package/plugins/test/editor.vue +1 -1
  50. package/plugins/test/index.js +63 -2
  51. package/plugins/test/windowManagerExample.vue +1 -1
  52. package/src/actions/stateRefAction.js +2 -2
  53. package/src/actions/styleSelector.vue +1 -1
  54. package/src/application/Navbar.vue +13 -2
  55. package/src/application/VcsApp.vue +201 -92
  56. package/src/application/VcsMap.vue +1 -1
  57. package/src/application/VcsSettings.vue +1 -1
  58. package/src/application/vcsAppWrapper.vue +1 -0
  59. package/src/components/form-inputs-controls/VcsCheckbox.vue +13 -0
  60. package/src/components/form-inputs-controls/VcsColorPicker.vue +1 -1
  61. package/src/components/form-inputs-controls/VcsRadio.vue +123 -0
  62. package/src/components/form-output/VcsFormattedNumber.vue +1 -1
  63. package/src/components/lists/VcsActionList.vue +13 -4
  64. package/src/components/lists/VcsTreeview.vue +4 -4
  65. package/src/components/lists/VcsTreeviewLeaf.vue +9 -2
  66. package/src/components/lists/VcsTreeviewSearchbar.vue +1 -2
  67. package/src/components/tables/VcsTable.vue +245 -0
  68. package/src/contentTree/LayerTree.vue +1 -1
  69. package/src/contentTree/contentTreeCollection.js +4 -4
  70. package/src/contentTree/contentTreeItem.js +9 -9
  71. package/src/contentTree/groupContentTreeItem.js +1 -1
  72. package/src/contentTree/layerContentTreeItem.js +15 -1
  73. package/src/contentTree/layerGroupContentTreeItem.js +21 -1
  74. package/src/contentTree/nodeContentTreeItem.js +1 -1
  75. package/src/featureInfo/AddressBalloonComponent.vue +47 -0
  76. package/src/featureInfo/BalloonComponent.vue +138 -0
  77. package/src/featureInfo/abstractFeatureInfoView.js +313 -0
  78. package/src/featureInfo/addressBalloonFeatureInfoView.js +118 -0
  79. package/src/featureInfo/balloonFeatureInfoView.js +151 -0
  80. package/src/featureInfo/balloonHelper.js +132 -0
  81. package/src/featureInfo/featureInfo.js +455 -0
  82. package/src/featureInfo/featureInfoInteraction.js +42 -0
  83. package/src/featureInfo/iframeFeatureInfoView.js +95 -0
  84. package/src/featureInfo/tableFeatureInfoView.js +106 -0
  85. package/src/i18n/de.js +16 -0
  86. package/src/i18n/en.js +16 -0
  87. package/src/i18n/i18nCollection.js +17 -0
  88. package/src/manager/buttonManager.js +5 -5
  89. package/src/manager/categoryManager/ComponentsManager.vue +30 -0
  90. package/src/manager/categoryManager/categoryManager.js +500 -0
  91. package/src/manager/contextMenu/contextMenuComponent.vue +43 -0
  92. package/src/manager/contextMenu/contextMenuInteraction.js +42 -0
  93. package/src/manager/contextMenu/contextMenuManager.js +197 -0
  94. package/src/manager/navbarManager.js +8 -8
  95. package/src/manager/toolbox/ToolboxManager.vue +2 -2
  96. package/src/manager/toolbox/toolboxManager.js +7 -3
  97. package/src/manager/window/WindowComponent.vue +1 -1
  98. package/src/manager/window/WindowManager.vue +5 -3
  99. package/src/manager/window/windowManager.js +118 -14
  100. package/src/navigation/mapNavigation.vue +3 -5
  101. package/src/navigation/overviewMap.js +28 -5
  102. package/src/navigation/vcsCompass.vue +1 -1
  103. package/src/setup.js +0 -2
  104. package/src/state.js +256 -0
  105. package/src/styles/_theming.scss +0 -5
  106. package/src/uiConfig.js +79 -0
  107. package/src/vcsUiApp.js +210 -20
  108. package/src/vuePlugins/vuetify.js +14 -4
  109. package/config/berlin.config.json +0 -510
  110. package/dist/assets/core.216494.js +0 -4
  111. package/dist/assets/ui.99a1a7.css +0 -1
  112. package/dist/assets/ui.99a1a7.js +0 -70
  113. package/dist/assets/vue-composition-api.c5aca1.js +0 -14
  114. package/dist/assets/vue-composition-api.js +0 -2
  115. package/dist/assets/vue.762edd.js +0 -9
  116. package/lib/vue-composition-api.js +0 -2
@@ -0,0 +1,397 @@
1
+ {
2
+ "i18n": [
3
+ {
4
+ "de": {
5
+ "codeLists": {
6
+ "keys": {
7
+ "roofType": "Dachtyp",
8
+ "function": "Gebäudefunktion"
9
+ },
10
+ "values": {
11
+ "roofType": {
12
+ "1000": "Flachdach",
13
+ "2100": "Pultdach",
14
+ "2200": "Versetztes Pultdach",
15
+ "3100": "Satteldach",
16
+ "3200": "Walmdach",
17
+ "3300": "Krüppelwalmdach",
18
+ "3400": "Mansardendach",
19
+ "3500": "Zeltdach",
20
+ "3600": "Kegeldach",
21
+ "3700": "Kuppeldach",
22
+ "3800": "Sheddach",
23
+ "3900": "Bogendach",
24
+ "4000": "Turmdach",
25
+ "5000": "Mischform",
26
+ "9999": "Sonstiges"
27
+ },
28
+ "function": {
29
+ "1000": "Wohngebäude",
30
+ "1010": "Mietshaus",
31
+ "1020": "Herberge",
32
+ "1030": "Wohn- und Verwaltungsgebäude",
33
+ "1040": "Wohn- und Geschäftshaus",
34
+ "1050": "Wohn- und Geschäftshaus",
35
+ "1060": "Wohn- und Betriebsgebäude",
36
+ "1070": "Land- und forstwirtschaftliches Gebäude",
37
+ "1080": "Wohn- und Geschäftshaus",
38
+ "1090": "Forsthaus",
39
+ "1100": "Ferienhaus",
40
+ "1110": "Sommerhaus",
41
+ "1120": "Bürogebäude",
42
+ "1130": "Kreditinstitut",
43
+ "1140": "Versicherung",
44
+ "1150": "Geschäftsgebäude",
45
+ "1160": "Kaufhaus",
46
+ "1170": "Einkaufszentrum",
47
+ "1180": "Kiosk",
48
+ "1190": "Apotheke",
49
+ "1200": "Pavillon",
50
+ "1210": "Hotel",
51
+ "1220": "Jugendherberge",
52
+ "1230": "Zeltplatzgebäude",
53
+ "1240": "Restaurant",
54
+ "1250": "Kantine",
55
+ "1260": "Erholungsort",
56
+ "1270": "Veranstaltungsraum",
57
+ "1280": "Kino",
58
+ "1290": "Kegelbahn",
59
+ "1300": "Kasino",
60
+ "1310": "Industriegebäude",
61
+ "1320": "Fabrik",
62
+ "1330": "Werkstatt",
63
+ "1340": "Benzin / Tankstelle",
64
+ "1350": "Waschanlage",
65
+ "1360": "Kühlhaus",
66
+ "1370": "Betriebshof",
67
+ "1380": "Gebäude für Forschungszwecke",
68
+ "1390": "Steinbruch",
69
+ "1400": "Salzwerk",
70
+ "1410": "Verschiedene Industriegebäude",
71
+ "1420": "Mühle",
72
+ "1430": "Windmühle",
73
+ "1440": "Wassermühle",
74
+ "1450": "Becherelevator",
75
+ "1460": "Wetterstation",
76
+ "1470": "Amt für Verkehrsanlagen",
77
+ "1480": "Straßenmeisterei",
78
+ "1490": "Wartehalle",
79
+ "1500": "Stellwerk",
80
+ "1510": "Lokschuppen",
81
+ "1520": "Stellwerk oder Haltesignal",
82
+ "1530": "Betriebsgebäude für den Luftverkehr",
83
+ "1540": "Hangar",
84
+ "1550": "Betriebsgebäude für die Schifffahrt",
85
+ "1560": "Werft",
86
+ "1570": "dock",
87
+ "1580": "Betriebsgebäude für Kanalschleuse",
88
+ "1590": "Bootshaus",
89
+ "1600": "Betriebsgebäude für Seilbahn",
90
+ "1610": "Parkhaus",
91
+ "1620": "Parkdeck",
92
+ "1630": "Garage",
93
+ "1640": "Fahrzeughalle",
94
+ "1650": "Tiefgarage",
95
+ "1660": "Versorgungsgebäude",
96
+ "1670": "Wasserwerk",
97
+ "1680": "Pumpwerk",
98
+ "1690": "Wasserbassin",
99
+ "1700": "Elektrizitätswerk",
100
+ "1710": "Umspannwerk",
101
+ "1720": "Umformer",
102
+ "1730": "Reaktor",
103
+ "1740": "Turbinenhaus",
104
+ "1750": "Kesselhaus",
105
+ "1760": "Gebäude für Telekommunikation",
106
+ "1770": "Gaswerk",
107
+ "1780": "Heizwerk",
108
+ "1790": "Pumpwerk",
109
+ "1800": "Gebäude für Entsorgung",
110
+ "1810": "Gebäude für die Abwasserentsorgung",
111
+ "1820": "Gebäude für Filteranlage",
112
+ "1830": "Toilette",
113
+ "1840": "Müllbunker",
114
+ "1850": "Gebäude für Müllverbrennung",
115
+ "1860": "Gebäude für die Müllbeseitigung",
116
+ "1870": "Gebäude für die Land- und Forstwirtschaft",
117
+ "1880": "Scheune",
118
+ "1890": "Stall",
119
+ "1900": "Reitsporthalle",
120
+ "1910": "Almhütte",
121
+ "1920": "Jagdhaus",
122
+ "1930": "Arboretum",
123
+ "1940": "Glashaus",
124
+ "1950": "bewegliches Glashaus",
125
+ "1960": "Öffentliches Gebäude",
126
+ "1970": "Verwaltungsgebäude",
127
+ "1980": "Parlament",
128
+ "1990": "Gildehaus",
129
+ "2000": "Postamt",
130
+ "2010": "Zollamt",
131
+ "2020": "Gericht",
132
+ "2030": "Botschaft oder Konsulat",
133
+ "2040": "Bezirksverwaltung",
134
+ "2050": "Bezirksregierung",
135
+ "2060": "Finanzamt",
136
+ "2070": "Gebäude für Bildung und Forschung",
137
+ "2080": "Gesamtschule",
138
+ "2090": "Berufsschule",
139
+ "2100": "Hochschule oder Universität",
140
+ "2110": "Forschungseinrichtung",
141
+ "2120": "Gebäude für kulturelle Zwecke",
142
+ "2130": "Schloss",
143
+ "2140": "Theater oder Oper",
144
+ "2150": "Konzertgebäude",
145
+ "2160": "Museum",
146
+ "2170": "broadcasting building",
147
+ "2180": "Aktivitätsgebäude",
148
+ "2190": "Bibliothek",
149
+ "2200": "Fort",
150
+ "2210": "religiöses Gebäude",
151
+ "2220": "Kirche",
152
+ "2230": "Synagoge",
153
+ "2240": "Kapelle",
154
+ "2250": "Gemeindezentrum",
155
+ "2260": "Ort der Anbetung",
156
+ "2270": "Moschee",
157
+ "2280": "temple",
158
+ "2290": "Kloster",
159
+ "2300": "Gebäude für Gesundheitsfürsorge",
160
+ "2310": "Krankenhaus",
161
+ "2320": "Heilzentrum oder Pflegeheim",
162
+ "2330": "Gesundheitszentrum oder Ambulanz",
163
+ "2340": "Gebäude für soziale Zwecke",
164
+ "2350": "Jugendzentrum",
165
+ "2360": "Seniorenzentrum",
166
+ "2370": "Obdachlosenheim",
167
+ "2380": "Kindergarten oder Kinderkrippe",
168
+ "2390": "Asylbewerberheim",
169
+ "2400": "Polizeistation",
170
+ "2410": "Feuerwache",
171
+ "2420": "Kaserne",
172
+ "2430": "Bunker",
173
+ "2440": "Zuchthaus oder Gefängnis",
174
+ "2450": "Friedhofsgebäude",
175
+ "2460": "Beerdigungsinstitut",
176
+ "2470": "Krematorium",
177
+ "2480": "Bahnhof",
178
+ "2490": "Flughafengebäude",
179
+ "2500": "Gebäude für U-Bahn-Station",
180
+ "2510": "Gebäude für Straßenbahn",
181
+ "2520": "Gebäude für Busbahnhof",
182
+ "2530": "Schiffsterminal",
183
+ "2540": "Gebäude für Erholungszwecke",
184
+ "2550": "Gebäude für Sportzwecke",
185
+ "2560": "Sporthalle",
186
+ "2570": "Gebäude für Sportplatz",
187
+ "2580": "Schwimmbäder",
188
+ "2590": "Hallenbad",
189
+ "2600": "Sanatorium",
190
+ "2610": "Zoohaus",
191
+ "2620": "Gewächshaus",
192
+ "2630": "Botanisches Schauhaus",
193
+ "2640": "Bothy",
194
+ "2650": "Touristeninformationszentrum",
195
+ "2700": "Sonstige"
196
+ }
197
+ }
198
+ }
199
+ },
200
+ "en": {
201
+ "codeLists": {
202
+ "keys": {
203
+ "roofType": "roof type",
204
+ "function": "building function"
205
+ },
206
+ "values": {
207
+ "roofType": {
208
+ "1000": "flat roof",
209
+ "1010": "monopitch roof",
210
+ "1020": "dual pent roof",
211
+ "1030": "gabled roof",
212
+ "1040": "hipped roof",
213
+ "1050": "half-hipped roof",
214
+ "1060": "mansard roof",
215
+ "1070": "pavilion roof",
216
+ "1080": "cone roof",
217
+ "1090": "copula roof",
218
+ "1100": "sawtooth roof ",
219
+ "1110": "arch roof",
220
+ "1120": "pyramidal broach roof",
221
+ "1130": "combination of roof forms"
222
+ },
223
+ "function": {
224
+ "1000": "residential building",
225
+ "1010": "tenement",
226
+ "1020": "hostel",
227
+ "1030": "residential- and administration building",
228
+ "1040": "residential- and office building",
229
+ "1050": "residential- and business building",
230
+ "1060": "residential- and plant building",
231
+ "1070": "agrarian- and forestry building",
232
+ "1080": "residential- and commercial building",
233
+ "1090": "forester\"s lodge",
234
+ "1100": "holiday house",
235
+ "1110": "summer house",
236
+ "1120": "office building",
237
+ "1130": "credit institution",
238
+ "1140": "insurance",
239
+ "1150": "business building",
240
+ "1160": "department store",
241
+ "1170": "shopping centre",
242
+ "1180": "kiosk",
243
+ "1190": "pharmacy",
244
+ "1200": "pavilion",
245
+ "1210": "hotel",
246
+ "1220": "youth hostel",
247
+ "1230": "campsite building",
248
+ "1240": "restaurant",
249
+ "1250": "cantine",
250
+ "1260": "recreational site",
251
+ "1270": "function room",
252
+ "1280": "cinema",
253
+ "1290": "bowling alley",
254
+ "1300": "casino",
255
+ "1310": "industrial building",
256
+ "1320": "factory",
257
+ "1330": "workshop",
258
+ "1340": "petrol / gas station",
259
+ "1350": "washing plant",
260
+ "1360": "cold store",
261
+ "1370": "depot",
262
+ "1380": "building for research purposes",
263
+ "1390": "quarry",
264
+ "1400": "salt works",
265
+ "1410": "miscellaneous industrial building",
266
+ "1420": "mill",
267
+ "1430": "windmill",
268
+ "1440": "water mill",
269
+ "1450": "bucket elevator",
270
+ "1460": "weather station",
271
+ "1470": "traffic assets office",
272
+ "1480": "street maintenance",
273
+ "1490": "waiting hall",
274
+ "1500": "signal control box",
275
+ "1510": "engine shed",
276
+ "1520": "signal box or stop signal",
277
+ "1530": "plant building for air traffic",
278
+ "1540": "hangar",
279
+ "1550": "plant building for shipping",
280
+ "1560": "shipyard",
281
+ "1570": "dock",
282
+ "1580": "plant building for canal lock",
283
+ "1590": "boathouse",
284
+ "1600": "plant building for cablecar",
285
+ "1610": "multi-storey car park",
286
+ "1620": "parking level",
287
+ "1630": "garage",
288
+ "1640": "vehicle hall",
289
+ "1650": "underground garage",
290
+ "1660": "building for supply",
291
+ "1670": "waterworks",
292
+ "1680": "pump station",
293
+ "1690": "water basin",
294
+ "1700": "electric power station",
295
+ "1710": "transformer station",
296
+ "1720": "converter",
297
+ "1730": "reactor",
298
+ "1740": "turbine house",
299
+ "1750": "boiler house",
300
+ "1760": "building for telecommunications",
301
+ "1770": "gas works",
302
+ "1780": "heat plant",
303
+ "1790": "pumping station",
304
+ "1800": "building for disposal",
305
+ "1810": "building for effluent disposal",
306
+ "1820": "building for filter plant",
307
+ "1830": "toilet",
308
+ "1840": "rubbish bunker",
309
+ "1850": "building for rubbish incineration",
310
+ "1860": "building for rubbish disposal",
311
+ "1870": "building for agrarian and forestry",
312
+ "1880": "barn",
313
+ "1890": "stall",
314
+ "1900": "equestrian hall",
315
+ "1910": "alpine cabin",
316
+ "1920": "hunting lodge",
317
+ "1930": "arboretum",
318
+ "1940": "glass house",
319
+ "1950": "moveable glass house",
320
+ "1960": "public building",
321
+ "1970": "administration building",
322
+ "1980": "parliament",
323
+ "1990": "guildhall",
324
+ "2000": "post office",
325
+ "2010": "customs office",
326
+ "2020": "court",
327
+ "2030": "embassy or consulate",
328
+ "2040": "district administration",
329
+ "2050": "district government",
330
+ "2060": "tax office",
331
+ "2070": "building for education and research",
332
+ "2080": "comprehensive school",
333
+ "2090": "vocational school",
334
+ "2100": "college or university",
335
+ "2110": "research establishment",
336
+ "2120": "building for cultural purposes",
337
+ "2130": "castle",
338
+ "2140": "theatre or opera",
339
+ "2150": "concert building",
340
+ "2160": "museum",
341
+ "2170": "broadcasting building",
342
+ "2180": "activity building",
343
+ "2190": "library",
344
+ "2200": "fort",
345
+ "2210": "religious building",
346
+ "2220": "church",
347
+ "2230": "synagogue",
348
+ "2240": "chapel",
349
+ "2250": "community center",
350
+ "2260": "place of worship",
351
+ "2270": "mosque",
352
+ "2280": "temple",
353
+ "2290": "convent",
354
+ "2300": "building for health care",
355
+ "2310": "hospital",
356
+ "2320": "healing centre or care home",
357
+ "2330": "health centre or outpatients clinic",
358
+ "2340": "building for social purposes",
359
+ "2350": "youth centre",
360
+ "2360": "seniors centre",
361
+ "2370": "homeless shelter",
362
+ "2380": "kindergarten or nursery",
363
+ "2390": "asylum seekers home",
364
+ "2400": "police station",
365
+ "2410": "fire station",
366
+ "2420": "barracks",
367
+ "2430": "bunker",
368
+ "2440": "penitentiary or prison",
369
+ "2450": "cemetery building",
370
+ "2460": "funeral parlor",
371
+ "2470": "crematorium",
372
+ "2480": "train station",
373
+ "2490": "airport building",
374
+ "2500": "building for underground station",
375
+ "2510": "building for tramway",
376
+ "2520": "building for bus station",
377
+ "2530": "shipping terminal",
378
+ "2540": "building for recuperation purposes",
379
+ "2550": "building for sport purposes",
380
+ "2560": "sports hall",
381
+ "2570": "building for sports field",
382
+ "2580": "swimming baths",
383
+ "2590": "indoor swimming pool",
384
+ "2600": "sanatorium",
385
+ "2610": "zoo building",
386
+ "2620": "green house",
387
+ "2630": "botanical show house",
388
+ "2640": "bothy",
389
+ "2650": "tourist information centre",
390
+ "2700": "others"
391
+ }
392
+ }
393
+ }
394
+ }
395
+ }
396
+ ]
397
+ }