@vcmap/ui 5.0.0-rc.10 → 5.0.0-rc.13
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.
- package/README.md +12 -5
- package/build/build.js +6 -3
- package/build/buildHelpers.js +12 -4
- package/build/buildPreview.js +7 -0
- package/build/getPluginProxies.js +4 -0
- package/config/aerowest.config.json +13 -3
- package/config/base.config.json +398 -219
- package/config/codes.config.json +397 -0
- package/config/dev.config.json +375 -1
- package/config/graphFeatureInfo.config.json +100 -0
- package/config/www.config.json +1232 -0
- package/dist/assets/{cesium.eb5667.js → cesium.21663e.js} +0 -0
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/core.63242d.js +4 -0
- package/dist/assets/core.js +1 -1
- package/dist/assets/font/OFL.txt +93 -0
- package/dist/assets/font/TitilliumWeb-Regular.woff2 +0 -0
- package/dist/assets/{index.4ccd4433.js → index.44b91cfe.js} +1 -1
- package/dist/assets/{ol.ef03b1.js → ol.88ba9d.js} +0 -0
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui.3c2933.css +1 -0
- package/dist/assets/ui.3c2933.js +71 -0
- package/dist/assets/ui.js +1 -1
- package/dist/assets/vue.c897fc.js +9 -0
- package/dist/assets/vue.js +2 -1
- package/dist/assets/{vuetify.401a29.css → vuetify.147c3a.css} +1 -1
- package/dist/assets/{vuetify.401a29.js → vuetify.147c3a.js} +72 -72
- package/dist/assets/vuetify.js +2 -2
- package/dist/index.html +1 -5
- package/index.js +39 -5
- package/lib/vue.js +1 -0
- package/map.config.json +15 -6
- package/package.json +17 -8
- package/plugins/@vcmap/create-link/fallbackCreateLink.vue +71 -0
- package/plugins/@vcmap/create-link/index.js +83 -0
- package/plugins/@vcmap/create-link/package.json +6 -0
- package/plugins/@vcmap/pluginExample/index.js +2 -2
- package/plugins/@vcmap/pluginExample/pluginExampleComponent.vue +20 -3
- package/plugins/@vcmap/project-selector/ProjectSelectorComponent.vue +1 -1
- package/plugins/@vcmap/project-selector/index.js +1 -1
- package/plugins/@vcmap/project-selector/package.json +1 -2
- package/plugins/@vcmap/theme-changer/ThemeChangerComponent.vue +1 -1
- package/plugins/@vcmap/theme-changer/index.js +1 -1
- package/plugins/@vcmap/theme-changer/package.json +1 -2
- package/plugins/categoryTest/Categories.vue +89 -1
- package/plugins/categoryTest/Category.vue +1 -1
- package/plugins/example/index.js +10 -23
- package/plugins/simple-graph/README.md +51 -0
- package/plugins/simple-graph/SimpleGraphComponent.vue +70 -0
- package/plugins/simple-graph/index.js +17 -0
- package/plugins/simple-graph/package.json +11 -0
- package/plugins/simple-graph/simpleGraphView.js +76 -0
- package/plugins/test/editor.vue +1 -1
- package/plugins/test/index.js +76 -9
- package/plugins/test/toolbox-data.js +82 -57
- package/plugins/test/windowManagerExample.vue +1 -1
- package/src/actions/stateRefAction.js +2 -2
- package/src/actions/styleSelector.vue +1 -1
- package/src/application/Navbar.vue +13 -2
- package/src/application/VcsApp.vue +301 -116
- package/src/application/VcsMap.vue +1 -1
- package/src/application/VcsSettings.vue +1 -1
- package/src/application/vcsAppWrapper.vue +1 -0
- package/src/assets/font/OFL.txt +93 -0
- package/src/assets/font/TitilliumWeb-Regular.woff2 +0 -0
- package/src/components/form-inputs-controls/VcsCheckbox.vue +13 -0
- package/src/components/form-inputs-controls/VcsColorPicker.vue +1 -1
- package/src/components/form-inputs-controls/VcsRadio.vue +123 -0
- package/src/components/form-output/VcsFormattedNumber.vue +1 -1
- package/src/components/lists/VcsActionList.vue +22 -7
- package/src/components/lists/VcsTreeview.vue +4 -4
- package/src/components/lists/VcsTreeviewLeaf.vue +10 -3
- package/src/components/lists/VcsTreeviewSearchbar.vue +1 -2
- package/src/components/tables/VcsTable.vue +245 -0
- package/src/contentTree/LayerTree.vue +1 -1
- package/src/contentTree/contentTreeCollection.js +4 -4
- package/src/contentTree/contentTreeItem.js +9 -9
- package/src/contentTree/groupContentTreeItem.js +1 -1
- package/src/contentTree/layerContentTreeItem.js +15 -1
- package/src/contentTree/layerGroupContentTreeItem.js +21 -1
- package/src/contentTree/nodeContentTreeItem.js +1 -1
- package/src/featureInfo/AddressBalloonComponent.vue +47 -0
- package/src/featureInfo/BalloonComponent.vue +140 -0
- package/src/featureInfo/abstractFeatureInfoView.js +313 -0
- package/src/featureInfo/addressBalloonFeatureInfoView.js +118 -0
- package/src/featureInfo/balloonFeatureInfoView.js +151 -0
- package/src/featureInfo/balloonHelper.js +132 -0
- package/src/featureInfo/featureInfo.js +457 -0
- package/src/featureInfo/featureInfoInteraction.js +42 -0
- package/src/featureInfo/iframeFeatureInfoView.js +95 -0
- package/src/featureInfo/tableFeatureInfoView.js +106 -0
- package/src/i18n/de.js +26 -0
- package/src/i18n/en.js +26 -0
- package/src/i18n/i18nCollection.js +17 -0
- package/src/icons/+all.js +80 -0
- package/src/icons/ClippingHorizontalIcon.vue +7 -0
- package/src/icons/ClippingIcon.vue +7 -0
- package/src/icons/ClippingVerticalIcon.vue +7 -0
- package/src/icons/ColorPickerIcon.vue +7 -0
- package/src/icons/ComponentsIcon.vue +2 -2
- package/src/icons/DimensionsHouseIcon.vue +11 -9
- package/src/icons/EditIcon.vue +7 -0
- package/src/icons/GlobalTerrainIcon.vue +9 -0
- package/src/icons/GroundIcon.vue +18 -0
- package/src/icons/HideIcon.vue +12 -0
- package/src/icons/LogoutIcon.vue +7 -0
- package/src/icons/ObjectAttributeIcon.vue +2 -13
- package/src/icons/PedestrianIcon.vue +2 -3
- package/src/icons/PenIcon.vue +2 -9
- package/src/icons/PoiIcon.vue +5 -2
- package/src/icons/PointSelectIcon.vue +4 -2
- package/src/icons/QueryIcon.vue +6 -7
- package/src/icons/ScreenshotIcon.vue +16 -0
- package/src/icons/ShareIcon.vue +4 -16
- package/src/icons/SkipNextIcon.vue +3 -1
- package/src/icons/TerrainBoxIcon.vue +9 -0
- package/src/icons/ToolsIcon.vue +4 -30
- package/src/icons/UploadIcon.vue +2 -9
- package/src/icons/UserProfileIcon.vue +7 -0
- package/src/icons/UserShareIcon.vue +7 -0
- package/src/icons/VideoRecorderIcon.vue +5 -9
- package/src/icons/ViewpointFlightIcon.vue +11 -0
- package/src/icons/ViewpointIcon.vue +11 -0
- package/src/icons/Viewshed360Icon.vue +7 -0
- package/src/icons/ViewshedConeIcon.vue +7 -0
- package/src/icons/ViewshedIcon.vue +7 -0
- package/src/icons/WallIcon.vue +4 -9
- package/src/legend/legendHelper.js +193 -0
- package/src/legend/styleLegendItem.vue +129 -0
- package/src/legend/vcsLegend.vue +92 -0
- package/src/manager/buttonManager.js +7 -12
- package/src/manager/categoryManager/ComponentsManager.vue +30 -0
- package/src/manager/categoryManager/categoryManager.js +500 -0
- package/src/manager/contextMenu/contextMenuComponent.vue +43 -0
- package/src/manager/contextMenu/contextMenuInteraction.js +42 -0
- package/src/manager/contextMenu/contextMenuManager.js +197 -0
- package/src/manager/navbarManager.js +9 -9
- package/src/manager/toolbox/GroupToolboxComponent.vue +118 -0
- package/src/manager/toolbox/SelectToolboxComponent.vue +128 -0
- package/src/manager/toolbox/ToolboxManager.vue +116 -98
- package/src/manager/toolbox/toolboxManager.js +235 -86
- package/src/manager/window/WindowComponent.vue +1 -1
- package/src/manager/window/WindowManager.vue +5 -3
- package/src/manager/window/windowManager.js +118 -14
- package/src/navigation/mapNavigation.vue +3 -5
- package/src/navigation/overviewMap.js +28 -5
- package/src/navigation/vcsCompass.vue +1 -1
- package/src/pluginHelper.js +42 -10
- package/src/setup.js +0 -2
- package/src/state.js +256 -0
- package/src/styles/_theming.scss +0 -5
- package/src/styles/variables.scss +7 -0
- package/src/styles/vcsFont.scss +17 -0
- package/src/uiConfig.js +79 -0
- package/src/vcsUiApp.js +213 -22
- package/src/vuePlugins/vuetify.js +14 -4
- package/config/berlin.config.json +0 -510
- package/dist/assets/core.216494.js +0 -4
- package/dist/assets/ui.99a1a7.css +0 -1
- package/dist/assets/ui.99a1a7.js +0 -70
- package/dist/assets/vue-composition-api.c5aca1.js +0 -14
- package/dist/assets/vue-composition-api.js +0 -2
- package/dist/assets/vue.762edd.js +0 -9
- package/lib/vue-composition-api.js +0 -2
- package/src/manager/toolbox/ToolboxGroupComponent.vue +0 -128
@@ -0,0 +1,1232 @@
|
|
1
|
+
{
|
2
|
+
"startingViewPointName": "startview",
|
3
|
+
"startingMapName": "cesium",
|
4
|
+
"projection": {
|
5
|
+
"epsg": "25832",
|
6
|
+
"proj4": "+proj=utm +zone=32 +ellps=GRS80 +units=m +no_defs"
|
7
|
+
},
|
8
|
+
"i18n": [
|
9
|
+
{
|
10
|
+
"de": {
|
11
|
+
"codeLists": {
|
12
|
+
"values": {
|
13
|
+
"roofType": {
|
14
|
+
"1000": "Flachdach",
|
15
|
+
"2100": "Pultdach",
|
16
|
+
"2200": "Versetztes Pultdach",
|
17
|
+
"3100": "Satteldach",
|
18
|
+
"3200": "Walmdach",
|
19
|
+
"3300": "Krüppelwalmdach",
|
20
|
+
"3400": "Mansardendach",
|
21
|
+
"3500": "Zeltdach",
|
22
|
+
"3600": "Kegeldach",
|
23
|
+
"3700": "Kuppeldach",
|
24
|
+
"3800": "Sheddach",
|
25
|
+
"3900": "Bogendach",
|
26
|
+
"4000": "Turmdach",
|
27
|
+
"5000": "Mischform",
|
28
|
+
"9999": "Sonstiges"
|
29
|
+
},
|
30
|
+
"function": {
|
31
|
+
"31001_1000": "Wohngebäude",
|
32
|
+
"31001_1010": "Wohnhaus",
|
33
|
+
"31001_1020": "Wohnheim",
|
34
|
+
"31001_1021": "Kinderheim",
|
35
|
+
"31001_1022": "Seniorenheim",
|
36
|
+
"31001_1023": "Schwesternwohnheim",
|
37
|
+
"31001_1024": "Studenten-, Schülerwohnheim",
|
38
|
+
"31001_1025": "Schullandheim",
|
39
|
+
"31001_1100": "Gemischt genutztes Gebäude mit Wohnen",
|
40
|
+
"31001_1110": "Wohngebäude mit Gemeinbedarf",
|
41
|
+
"31001_1120": "Wohngebäude mit Handel und Dienstleistungen",
|
42
|
+
"31001_1121": "Wohn- und Verwaltungsgebäude",
|
43
|
+
"31001_1122": "Wohn- und Bürogebäude",
|
44
|
+
"31001_1123": "Wohn- und Geschäftsgebäude",
|
45
|
+
"31001_1130": "Wohngebäude mit Gewerbe und Industrie",
|
46
|
+
"31001_1131": "Wohn- und Betriebsgebäude",
|
47
|
+
"31001_1210": "Land- und forstwirtschaftliches Wohngebäude",
|
48
|
+
"31001_1220": "Land- und forstwirtschaftliches Wohn- und Betriebsgebäude",
|
49
|
+
"31001_1221": "Bauernhaus",
|
50
|
+
"31001_1222": "Wohn- und Wirtschaftsgebäude",
|
51
|
+
"31001_1223": "Forsthaus",
|
52
|
+
"31001_1310": "Gebäude zur Freizeitgestaltung",
|
53
|
+
"31001_1311": "Ferienhaus",
|
54
|
+
"31001_1312": "Wochenendhaus",
|
55
|
+
"31001_1313": "Gartenhaus",
|
56
|
+
"31001_2000": "Gebäude für Wirtschaft oder Gewerbe",
|
57
|
+
"31001_2010": "Gebäude für Handel und Dienstleistungen",
|
58
|
+
"31001_2020": "Bürogebäude",
|
59
|
+
"31001_2030": "Kreditinstitut",
|
60
|
+
"31001_2040": "Versicherung",
|
61
|
+
"31001_2050": "Geschäftsgebäude",
|
62
|
+
"31001_2051": "Kaufhaus",
|
63
|
+
"31001_2052": "Einkaufszentrum",
|
64
|
+
"31001_2053": "Markthalle",
|
65
|
+
"31001_2054": "Laden",
|
66
|
+
"31001_2055": "Kiosk",
|
67
|
+
"31001_2056": "Apotheke",
|
68
|
+
"31001_2060": "Messehalle",
|
69
|
+
"31001_2070": "Gebäude für Beherbergung",
|
70
|
+
"31001_2071": "Hotel, Motel, Pension",
|
71
|
+
"31001_2072": "Jugendherberge",
|
72
|
+
"31001_2073": "Hütte (mit Übernachtungsmöglichkeit)",
|
73
|
+
"31001_2074": "Campingplatzgebäude",
|
74
|
+
"31001_2080": "Gebäude für Bewirtung",
|
75
|
+
"31001_2081": "Gaststätte, Restaurant",
|
76
|
+
"31001_2082": "Hütte (ohne Übernachtungsmöglichkeit)",
|
77
|
+
"31001_2083": "Kantine",
|
78
|
+
"31001_2090": "Freizeit- und Vergnügungsstätte",
|
79
|
+
"31001_2091": "Festsaal",
|
80
|
+
"31001_2092": "Kino",
|
81
|
+
"31001_2093": "Kegel-, Bowlinghalle",
|
82
|
+
"31001_2094": "Spielkasino",
|
83
|
+
"31001_2100": "Gebäude für Gewerbe und Industrie",
|
84
|
+
"31001_2110": "Produktionsgebäude",
|
85
|
+
"31001_2111": "Fabrik",
|
86
|
+
"31001_2112": "Betriebsgebäude",
|
87
|
+
"31001_2113": "Brauerei",
|
88
|
+
"31001_2114": "Brennerei",
|
89
|
+
"31001_2120": "Werkstatt",
|
90
|
+
"31001_2121": "Sägewerk",
|
91
|
+
"31001_2130": "Tankstelle",
|
92
|
+
"31001_2131": "Waschstraße, Waschanlage, Waschhalle",
|
93
|
+
"31001_2140": "Gebäude für Vorratshaltung",
|
94
|
+
"31001_2141": "Kühlhaus",
|
95
|
+
"31001_2142": "Speichergebäude",
|
96
|
+
"31001_2143": "Lagerhalle, Lagerschuppen, Lagerhaus",
|
97
|
+
"31001_2150": "Speditionsgebäude",
|
98
|
+
"31001_2160": "Gebäude für Forschungszwecke",
|
99
|
+
"31001_2170": "Gebäude für Grundstoffgewinnung",
|
100
|
+
"31001_2171": "Bergwerk",
|
101
|
+
"31001_2172": "Saline",
|
102
|
+
"31001_2180": "Gebäude für betriebliche Sozialeinrichtung",
|
103
|
+
"31001_2200": "Sonstiges Gebäude für Gewerbe und Industrie",
|
104
|
+
"31001_2210": "Mühle",
|
105
|
+
"31001_2211": "Windmühle",
|
106
|
+
"31001_2212": "Wassermühle",
|
107
|
+
"31001_2213": "Schöpfwerk",
|
108
|
+
"31001_2220": "Wetterstation",
|
109
|
+
"31001_2310": "Gebäude für Handel und Dienstleistung mit Wohnen",
|
110
|
+
"31001_2320": "Gebäude für Gewerbe und Industrie mit Wohnen",
|
111
|
+
"31001_2400": "Betriebsgebäude zu Verkehrsanlagen (allgemein)",
|
112
|
+
"31001_2410": "Betriebsgebäude für Straßenverkehr",
|
113
|
+
"31001_2411": "Straßenmeisterei",
|
114
|
+
"31001_2412": "Wartehalle",
|
115
|
+
"31001_2420": "Betriebsgebäude für Schienenverkehr",
|
116
|
+
"31001_2421": "Bahnwärterhaus",
|
117
|
+
"31001_2422": "Lokschuppen, Wagenhalle",
|
118
|
+
"31001_2423": "Stellwerk, Blockstelle",
|
119
|
+
"31001_2424": "Betriebsgebäude des Güterbahnhofs",
|
120
|
+
"31001_2430": "Betriebsgebäude für Flugverkehr",
|
121
|
+
"31001_2431": "Flugzeughalle",
|
122
|
+
"31001_2440": "Betriebsgebäude für Schiffsverkehr",
|
123
|
+
"31001_2441": "Werft (Halle)",
|
124
|
+
"31001_2442": "Dock (Halle)",
|
125
|
+
"31001_2443": "Betriebsgebäude zur Schleuse",
|
126
|
+
"31001_2444": "Bootshaus",
|
127
|
+
"31001_2450": "Betriebsgebäude zur Seilbahn",
|
128
|
+
"31001_2451": "Spannwerk zur Drahtseilbahn",
|
129
|
+
"31001_2460": "Gebäude zum Parken",
|
130
|
+
"31001_2461": "Parkhaus",
|
131
|
+
"31001_2462": "Parkdeck",
|
132
|
+
"31001_2463": "Garage",
|
133
|
+
"31001_2464": "Fahrzeughalle",
|
134
|
+
"31001_2500": "Gebäude zur Versorgung",
|
135
|
+
"31001_2501": "Gebäude zur Energieversorgung",
|
136
|
+
"31001_2510": "Gebäude zur Wasserversorgung",
|
137
|
+
"31001_2511": "Wasserwerk",
|
138
|
+
"31001_2512": "Pumpstation",
|
139
|
+
"31001_2513": "Wasserbehälter",
|
140
|
+
"31001_2520": "Gebäude zur Elektrizitätsversorgung",
|
141
|
+
"31001_2521": "Elektrizitätswerk",
|
142
|
+
"31001_2522": "Umspannwerk",
|
143
|
+
"31001_2523": "Umformer",
|
144
|
+
"31001_2527": "Reaktorgebäude",
|
145
|
+
"31001_2528": "Turbinenhaus",
|
146
|
+
"31001_2529": "Kesselhaus",
|
147
|
+
"31001_2540": "Gebäude für Fernmeldewesen",
|
148
|
+
"31001_2560": "Gebäude an unterirdischen Leitungen",
|
149
|
+
"31001_2570": "Gebäude zur Gasversorgung",
|
150
|
+
"31001_2571": "Gaswerk",
|
151
|
+
"31001_2580": "Heizwerk",
|
152
|
+
"31001_2590": "Gebäude zur Versorgungsanlage",
|
153
|
+
"31001_2591": "Pumpwerk (nicht für Wasserversorgung)",
|
154
|
+
"31001_2600": "Gebäude zur Entsorgung",
|
155
|
+
"31001_2610": "Gebäude zur Abwasserbeseitigung",
|
156
|
+
"31001_2611": "Gebäude der Kläranlage",
|
157
|
+
"31001_2612": "Toilette",
|
158
|
+
"31001_2620": "Gebäude zur Abfallbehandlung",
|
159
|
+
"31001_2621": "Müllbunker",
|
160
|
+
"31001_2622": "Gebäude zur Müllverbrennung",
|
161
|
+
"31001_2623": "Gebäude der Abfalldeponie",
|
162
|
+
"31001_2700": "Gebäude für Land- und Forstwirtschaft",
|
163
|
+
"31001_2720": "Land- und forstwirtschaftliches Betriebsgebäude",
|
164
|
+
"31001_2721": "Scheune",
|
165
|
+
"31001_2723": "Schuppen",
|
166
|
+
"31001_2724": "Stall",
|
167
|
+
"31001_2726": "Scheune und Stall",
|
168
|
+
"31001_2727": "Stall für Tiergroßhaltung",
|
169
|
+
"31001_2728": "Reithalle",
|
170
|
+
"31001_2729": "Wirtschaftsgebäude",
|
171
|
+
"31001_2732": "Almhütte",
|
172
|
+
"31001_2735": "Jagdhaus, Jagdhütte",
|
173
|
+
"31001_2740": "Treibhaus, Gewächshaus",
|
174
|
+
"31001_2741": "Treibhaus",
|
175
|
+
"31001_2742": "Gewächshaus, verschiebbar",
|
176
|
+
"31001_3000": "Gebäude für öffentliche Zwecke",
|
177
|
+
"31001_3010": "Verwaltungsgebäude",
|
178
|
+
"31001_3011": "Parlament",
|
179
|
+
"31001_3012": "Rathaus",
|
180
|
+
"31001_3013": "Post",
|
181
|
+
"31001_3014": "Zollamt",
|
182
|
+
"31001_3015": "Gericht",
|
183
|
+
"31001_3016": "Botschaft, Konsulat",
|
184
|
+
"31001_3017": "Kreisverwaltung",
|
185
|
+
"31001_3018": "Bezirksregierung",
|
186
|
+
"31001_3019": "Finanzamt",
|
187
|
+
"31001_3020": "Gebäude für Bildung und Forschung",
|
188
|
+
"31001_3021": "Allgemein bildende Schule",
|
189
|
+
"31001_3022": "Berufsbildende Schule",
|
190
|
+
"31001_3023": "Hochschulgebäude (Fachhochschule, Universität)",
|
191
|
+
"31001_3024": "Forschungsinstitut",
|
192
|
+
"31001_3030": "Gebäude für kulturelle Zwecke",
|
193
|
+
"31001_3031": "Schloss",
|
194
|
+
"31001_3032": "Theater, Oper",
|
195
|
+
"31001_3033": "Konzertgebäude",
|
196
|
+
"31001_3034": "Museum",
|
197
|
+
"31001_3035": "Rundfunk, Fernsehen",
|
198
|
+
"31001_3036": "Veranstaltungsgebäude",
|
199
|
+
"31001_3037": "Bibliothek, Bücherei",
|
200
|
+
"31001_3038": "Burg, Festung",
|
201
|
+
"31001_3040": "Gebäude für religiöse Zwecke",
|
202
|
+
"31001_3041": "Kirche",
|
203
|
+
"31001_3042": "Synagoge",
|
204
|
+
"31001_3043": "Kapelle",
|
205
|
+
"31001_3044": "Gemeindehaus",
|
206
|
+
"31001_3045": "Gotteshaus",
|
207
|
+
"31001_3046": "Moschee",
|
208
|
+
"31001_3047": "Tempel",
|
209
|
+
"31001_3048": "Kloster",
|
210
|
+
"31001_3050": "Gebäude für Gesundheitswesen",
|
211
|
+
"31001_3051": "Krankenhaus",
|
212
|
+
"31001_3052": "Heilanstalt, Pflegeanstalt, Pflegestation",
|
213
|
+
"31001_3053": "Ärztehaus, Poliklinik",
|
214
|
+
"31001_3060": "Gebäude für soziale Zwecke",
|
215
|
+
"31001_3061": "Jugendfreizeitheim",
|
216
|
+
"31001_3062": "Freizeit-, Vereinsheim, Dorfgemeinschafts-, Bürgerhaus",
|
217
|
+
"31001_3063": "Seniorenfreizeitstätte",
|
218
|
+
"31001_3064": "Obdachlosenheim",
|
219
|
+
"31001_3065": "Kinderkrippe, Kindergarten, Kindertagesstätte",
|
220
|
+
"31001_3066": "Asylbewerberheim",
|
221
|
+
"31001_3070": "Gebäude für Sicherheit und Ordnung",
|
222
|
+
"31001_3071": "Polizei",
|
223
|
+
"31001_3072": "Feuerwehr",
|
224
|
+
"31001_3073": "Kaserne",
|
225
|
+
"31001_3074": "Schutzbunker",
|
226
|
+
"31001_3075": "Justizvollzugsanstalt",
|
227
|
+
"31001_3080": "Friedhofsgebäude",
|
228
|
+
"31001_3081": "Trauerhalle",
|
229
|
+
"31001_3082": "Krematorium",
|
230
|
+
"31001_3090": "Empfangsgebäude",
|
231
|
+
"31001_3091": "Bahnhofsgebäude",
|
232
|
+
"31001_3092": "Flughafengebäude",
|
233
|
+
"31001_3094": "Gebäude zum U-Bahnhof",
|
234
|
+
"31001_3095": "Gebäude zum S-Bahnhof",
|
235
|
+
"31001_3097": "Gebäude zum Busbahnhof",
|
236
|
+
"31001_3098": "Empfangsgebäude Schifffahrt",
|
237
|
+
"31001_3100": "Gebäude für öffentliche Zwecke mit Wohnen",
|
238
|
+
"31001_3200": "Gebäude für Erholungszwecke",
|
239
|
+
"31001_3210": "Gebäude für Sportzwecke",
|
240
|
+
"31001_3211": "Sport-, Turnhalle",
|
241
|
+
"31001_3212": "Gebäude zum Sportplatz",
|
242
|
+
"31001_3220": "Badegebäude",
|
243
|
+
"31001_3221": "Hallenbad",
|
244
|
+
"31001_3222": "Gebäude im Freibad",
|
245
|
+
"31001_3230": "Gebäude im Stadion",
|
246
|
+
"31001_3240": "Gebäude für Kurbetrieb",
|
247
|
+
"31001_3241": "Badegebäude für medizinische Zwecke",
|
248
|
+
"31001_3242": "Sanatorium",
|
249
|
+
"31001_3260": "Gebäude im Zoo",
|
250
|
+
"31001_3261": "Empfangsgebäude des Zoos",
|
251
|
+
"31001_3262": "Aquarium, Terrarium, Voliere",
|
252
|
+
"31001_3263": "Tierschauhaus",
|
253
|
+
"31001_3264": "Stall im Zoo",
|
254
|
+
"31001_3270": "Gebäude im botanischen Garten",
|
255
|
+
"31001_3271": "Empfangsgebäude des botanischen Gartens",
|
256
|
+
"31001_3272": "Gewächshaus (Botanik)",
|
257
|
+
"31001_3273": "Pflanzenschauhaus",
|
258
|
+
"31001_3280": "Gebäude für andere Erholungseinrichtung",
|
259
|
+
"31001_3281": "Schutzhütte",
|
260
|
+
"31001_3290": "Touristisches Informationszentrum",
|
261
|
+
"31001_9998": "Nach Quellenlage nicht zu spezifizieren",
|
262
|
+
"51001_1001": "Wasserturm",
|
263
|
+
"51001_1002": "Kirchturm",
|
264
|
+
"51001_1003": "Aussichtsturm",
|
265
|
+
"51001_1004": "Kontrollturm",
|
266
|
+
"51001_1005": "Kühlturm",
|
267
|
+
"51001_1006": "Leuchtturm",
|
268
|
+
"51001_1007": "Feuerwachturm",
|
269
|
+
"51001_1008": "Sende-,Funkturm",
|
270
|
+
"51001_1009": "Stadt-,Torturm",
|
271
|
+
"51001_1010": "Förderturm",
|
272
|
+
"51001_1011": "Bohrturm",
|
273
|
+
"51001_1012": "Schloss-, Burgturm",
|
274
|
+
"51001_9998": "Nach Quellenlage nicht zu spezifizieren",
|
275
|
+
"51001_9999": "Sonstiges",
|
276
|
+
"51002_1215": "Biogasanlage",
|
277
|
+
"51002_1220": "Windrad",
|
278
|
+
"51002_1230": "Solarzellen",
|
279
|
+
"51002_1250": "Mast",
|
280
|
+
"51002_1251": "Freileitungsmast",
|
281
|
+
"51002_1260": "Funkmast",
|
282
|
+
"51002_1280": "Radioteleskop",
|
283
|
+
"51002_1290": "Schornstein",
|
284
|
+
"51002_1330": "Kran",
|
285
|
+
"51002_1331": "Drehkran",
|
286
|
+
"51002_1332": "Portalkran",
|
287
|
+
"51002_1333": "Laufkran",
|
288
|
+
"51002_1340": "Trockendock",
|
289
|
+
"51002_1350": "Hochofen",
|
290
|
+
"51002_1400": "Umformer",
|
291
|
+
"51002_9999": "Sonstiges",
|
292
|
+
"51003_1201": "Silo",
|
293
|
+
"51003_1205": "Tank",
|
294
|
+
"51003_1206": "Gasometer",
|
295
|
+
"51003_9999": "Sonstiges",
|
296
|
+
"51006_1430": "Zuschauertribüne",
|
297
|
+
"51006_1431": "Zuschauertribüne, überdacht",
|
298
|
+
"51006_1432": "Zuschauertribüne, nicht überdacht",
|
299
|
+
"51006_1440": "Stadion",
|
300
|
+
"51006_1470": "Sprungschanze",
|
301
|
+
"51006_1490": "Gradierwerk",
|
302
|
+
"51006_9999": "Sonstiges",
|
303
|
+
"51007_1100": "Historische Wasserleitung",
|
304
|
+
"51007_1110": "Aquaedukt",
|
305
|
+
"51007_1210": "Wachturm",
|
306
|
+
"51007_1400": "Befestigung (Burgruine)",
|
307
|
+
"51007_1410": "Burg",
|
308
|
+
"51007_1500": "Historische Mauer",
|
309
|
+
"51007_1510": "Stadtmauer",
|
310
|
+
"51007_1520": "Sonstige historische Mauer",
|
311
|
+
"51007_9999": "Sonstiges",
|
312
|
+
"51009_1610": "Überdachung",
|
313
|
+
"51009_1611": "Carport",
|
314
|
+
"51009_1700": "Mauer",
|
315
|
+
"51009_1750": "Denkmal",
|
316
|
+
"51009_9999": "Sonstiges",
|
317
|
+
"52003_1010": "Schiffshebewerk",
|
318
|
+
"52003_1020": "Kammerschleuse",
|
319
|
+
"53001_1800": "Brücke",
|
320
|
+
"53001_1806": "Drehbrücke",
|
321
|
+
"53001_1807": "Hebebrücke",
|
322
|
+
"53001_1808": "Zugbrücke",
|
323
|
+
"53001_1830": "Hochbahn, Hochstraße",
|
324
|
+
"53001_1880": "Schutzgalerie, Einhausung",
|
325
|
+
"53001_1890": "Schleusenkammer",
|
326
|
+
"53009_2030": "Staumauer",
|
327
|
+
"53009_2050": "Wehr",
|
328
|
+
"53009_2060": "Sicherheitstor",
|
329
|
+
"53009_2070": "Siel",
|
330
|
+
"53009_2080": "Sperrwerk",
|
331
|
+
"53009_2090": "Schöpfwerk"
|
332
|
+
}
|
333
|
+
}
|
334
|
+
}
|
335
|
+
}
|
336
|
+
}
|
337
|
+
],
|
338
|
+
"maps": [
|
339
|
+
{
|
340
|
+
"type": "OpenlayersMap",
|
341
|
+
"name": "ol3"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"type": "CesiumMap",
|
345
|
+
"name": "cesium",
|
346
|
+
"debugging": false,
|
347
|
+
"fxaa": false,
|
348
|
+
"enableLightning": true,
|
349
|
+
"allowSoftwareRendering": false,
|
350
|
+
"maximumScreenSpaceError": 2,
|
351
|
+
"fogEnabled": true,
|
352
|
+
"fogEnabledMobile": true,
|
353
|
+
"fogDensity": 0.0002,
|
354
|
+
"fogDensityMobile": 0.0004,
|
355
|
+
"fogScreenSpaceError": 2,
|
356
|
+
"fogScreenSpaceErrorMobile": 4
|
357
|
+
},
|
358
|
+
{
|
359
|
+
"type": "ObliqueMap",
|
360
|
+
"name": "Oblique Map",
|
361
|
+
"defaultCollectionName": "Schrägluftbilder 2020"
|
362
|
+
}
|
363
|
+
],
|
364
|
+
"layers": [
|
365
|
+
{
|
366
|
+
"type": "TerrainLayer",
|
367
|
+
"name": "BerlinWaterTerrain (level15)",
|
368
|
+
"url": "https://www.virtualcitymap.de/datasource-data/000834f6-8670-49d9-a430-df5b92474985/?baseTerrain=82JNcy7Xi7FNB3WXR",
|
369
|
+
"activeOnStartup": false,
|
370
|
+
"requestVertexNormals": true,
|
371
|
+
"exclusiveGroups": [
|
372
|
+
"terrain"
|
373
|
+
],
|
374
|
+
"properties": {
|
375
|
+
"title": "Gelände Berlin Wasser"
|
376
|
+
}
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"type": "CesiumTilesetLayer",
|
380
|
+
"name": "Summer Trees",
|
381
|
+
"url": "https://www.virtualcitymap.de/datasource-data/f764ffb4-723d-429f-b797-5ca4c1061201/tileset.json",
|
382
|
+
"activeOnStartup": false,
|
383
|
+
"screenSpaceError": 16,
|
384
|
+
"screenSpaceErrorMobile": 32,
|
385
|
+
"properties": {
|
386
|
+
"title": "Sommerbäume",
|
387
|
+
"featureInfo": "tableTrees"
|
388
|
+
}
|
389
|
+
},
|
390
|
+
{
|
391
|
+
"type": "TerrainLayer",
|
392
|
+
"name": "GermanyBaseTerrain",
|
393
|
+
"url": "https://www.virtualcitymap.de/datasource-data/globalterrain_5_9",
|
394
|
+
"activeOnStartup": false,
|
395
|
+
"requestVertexNormals": true,
|
396
|
+
"exclusiveGroups": [
|
397
|
+
"terrain"
|
398
|
+
],
|
399
|
+
"properties": {
|
400
|
+
"title": "Deutschland Gelände"
|
401
|
+
}
|
402
|
+
},
|
403
|
+
{
|
404
|
+
"type": "CesiumTilesetLayer",
|
405
|
+
"name": "Berlin - LOD2",
|
406
|
+
"url": "https://www.virtualcitymap.de/datasource-data/72fa3c14-03bc-4c26-a4ac-8c6dec37e65a/tileset.json",
|
407
|
+
"activeOnStartup": false,
|
408
|
+
"screenSpaceError": 16,
|
409
|
+
"screenSpaceErrorMobile": 32,
|
410
|
+
"exclusiveGroups": [
|
411
|
+
"3D",
|
412
|
+
"classified"
|
413
|
+
],
|
414
|
+
"properties": {
|
415
|
+
"title": "Berlin - LOD2",
|
416
|
+
"featureInfo": "tableBuildings"
|
417
|
+
}
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"type": "CesiumTilesetLayer",
|
421
|
+
"name": "Niedersachsen - LOD2",
|
422
|
+
"url": "https://www.virtualcitymap.de/datasource-data/1c0a26a8-51ce-40f7-b2c4-ded6a3516c2b/tileset.json",
|
423
|
+
"activeOnStartup": false,
|
424
|
+
"screenSpaceError": 16,
|
425
|
+
"screenSpaceErrorMobile": 32,
|
426
|
+
"properties": {
|
427
|
+
"title": "Niedersachsen - LOD2",
|
428
|
+
"featureInfo": "tableBuildings"
|
429
|
+
}
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"type": "CesiumTilesetLayer",
|
433
|
+
"name": "Sachsen - LOD2",
|
434
|
+
"url": "https://www.virtualcitymap.de/datasource-data/de2ce0aa-886e-4240-8201-2f7efe30d5ba/tileset.json",
|
435
|
+
"activeOnStartup": false,
|
436
|
+
"screenSpaceError": 16,
|
437
|
+
"screenSpaceErrorMobile": 32,
|
438
|
+
"properties": {
|
439
|
+
"title": "Sachsen - LOD2",
|
440
|
+
"featureInfo": "tableBuildings"
|
441
|
+
}
|
442
|
+
},
|
443
|
+
{
|
444
|
+
"type": "CesiumTilesetLayer",
|
445
|
+
"name": "Thuringen - LOD2",
|
446
|
+
"url": "https://www.virtualcitymap.de/datasource-data/fe4bc221-5f08-4a80-bec4-18d3e3156f42/tileset.json",
|
447
|
+
"activeOnStartup": false,
|
448
|
+
"screenSpaceError": 16,
|
449
|
+
"screenSpaceErrorMobile": 32,
|
450
|
+
"properties": {
|
451
|
+
"title": "Thüringen - LOD2",
|
452
|
+
"featureInfo": "tableBuildings"
|
453
|
+
}
|
454
|
+
},
|
455
|
+
{
|
456
|
+
"type": "CesiumTilesetLayer",
|
457
|
+
"name": "Berlin LOD2 - Textured",
|
458
|
+
"url": "https://www.virtualcitymap.de/datasource-data/698513e2-a34c-4f38-bb93-629ff4c9e0c0",
|
459
|
+
"activeOnStartup": false,
|
460
|
+
"screenSpaceError": 16,
|
461
|
+
"screenSpaceErrorMobile": 32,
|
462
|
+
"exclusiveGroups": [
|
463
|
+
"3D",
|
464
|
+
"classified"
|
465
|
+
],
|
466
|
+
"properties": {
|
467
|
+
"title": "Gebäude texturiert 2013",
|
468
|
+
"featureInfo": "tableBuildings"
|
469
|
+
}
|
470
|
+
},
|
471
|
+
{
|
472
|
+
"type": "CesiumTilesetLayer",
|
473
|
+
"name": "Planwerk innere Stadt",
|
474
|
+
"url": "https://c.3d.blc.shc.eu/WAB/buildings/plannings/cesium_planwerk_innere_stadt/3444ad7c-b6a5-4623-9421-e80e37d5378c/",
|
475
|
+
"activeOnStartup": false,
|
476
|
+
"allowPicking": false,
|
477
|
+
"style": {
|
478
|
+
"type": "DeclarativeStyleItem",
|
479
|
+
"declarativeStyle": {
|
480
|
+
"show": "true",
|
481
|
+
"color": "color('#e40521', 1)"
|
482
|
+
}
|
483
|
+
},
|
484
|
+
"tilesetOptions": {
|
485
|
+
"skipLevelOfDetail": false
|
486
|
+
},
|
487
|
+
"properties": {
|
488
|
+
"title": "Planwerk Innere Stadt",
|
489
|
+
"featureInfo": "tableBuildings"
|
490
|
+
}
|
491
|
+
},
|
492
|
+
{
|
493
|
+
"type": "CesiumTilesetLayer",
|
494
|
+
"name": "Hessen - LOD2",
|
495
|
+
"url": "https://www.virtualcitymap.de/datasource-data/0b539146-1ef3-4501-9fa9-e96f8c0d7ea4/tileset.json",
|
496
|
+
"activeOnStartup": false,
|
497
|
+
"screenSpaceError": 16,
|
498
|
+
"screenSpaceErrorMobile": 32,
|
499
|
+
"properties": {
|
500
|
+
"title": "Hessen - LOD2",
|
501
|
+
"featureInfo": "tableBuildings"
|
502
|
+
}
|
503
|
+
},
|
504
|
+
{
|
505
|
+
"type": "CesiumTilesetLayer",
|
506
|
+
"name": "Hamburg - LOD2",
|
507
|
+
"url": "https://www.virtualcitymap.de/datasource-data/e52957af-1aab-4c5f-b3ad-95879c71c607/tileset.json",
|
508
|
+
"activeOnStartup": false,
|
509
|
+
"screenSpaceError": 16,
|
510
|
+
"screenSpaceErrorMobile": 32,
|
511
|
+
"properties": {
|
512
|
+
"title": "Hamburg - LOD2",
|
513
|
+
"featureInfo": "tableBuildings"
|
514
|
+
}
|
515
|
+
},
|
516
|
+
{
|
517
|
+
"type": "CesiumTilesetLayer",
|
518
|
+
"name": "Brandenburg - LOD2",
|
519
|
+
"url": "https://www.virtualcitymap.de/datasource-data/d290b81e-7483-4118-bc0f-38f1be00f418/tileset.json",
|
520
|
+
"datasourceId": "fHWWCMfb46is5zhy9",
|
521
|
+
"activeOnStartup": false,
|
522
|
+
"screenSpaceError": 16,
|
523
|
+
"screenSpaceErrorMobile": 32,
|
524
|
+
"properties": {
|
525
|
+
"title": "Brandenburg - LOD2",
|
526
|
+
"featureInfo": "tableBuildings"
|
527
|
+
}
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"type": "CesiumTilesetLayer",
|
531
|
+
"name": "Sachsen-Anhalt - LOD2",
|
532
|
+
"url": "https://www.virtualcitymap.de/datasource-data/d5591edb-ba4b-4725-9b68-9c3a69d6965c/tileset.json",
|
533
|
+
"activeOnStartup": false,
|
534
|
+
"screenSpaceError": 16,
|
535
|
+
"screenSpaceErrorMobile": 32,
|
536
|
+
"properties": {
|
537
|
+
"title": "Sachsen-Anhalt - LOD2",
|
538
|
+
"featureInfo": "tableBuildings"
|
539
|
+
}
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"type": "CesiumTilesetLayer",
|
543
|
+
"name": "NRW - LOD2",
|
544
|
+
"url": "https://www.virtualcitymap.de/datasource-data/7826ecb7-7110-4b6a-9915-7e96719290ac/tileset.json",
|
545
|
+
"activeOnStartup": false,
|
546
|
+
"screenSpaceError": 16,
|
547
|
+
"screenSpaceErrorMobile": 32,
|
548
|
+
"properties": {
|
549
|
+
"title": "NRW - LOD2",
|
550
|
+
"featureInfo": "tableBuildings"
|
551
|
+
}
|
552
|
+
},
|
553
|
+
{
|
554
|
+
"type": "CesiumTilesetLayer",
|
555
|
+
"name": "Mesh Classification Layer",
|
556
|
+
"url": "https://www.virtualcitymap.de/datasource-data/DEMO-Lindau/berlin_2D/tileset.json",
|
557
|
+
"activeOnStartup": true,
|
558
|
+
"screenSpaceError": 16,
|
559
|
+
"screenSpaceErrorMobile": 32,
|
560
|
+
"style": "dummyClassificationStyle",
|
561
|
+
"tilesetOptions": {
|
562
|
+
"classificationType": 2
|
563
|
+
},
|
564
|
+
"exclusiveGroups": [
|
565
|
+
"classified"
|
566
|
+
],
|
567
|
+
"properties": {
|
568
|
+
"title": "3D-Mesh 2020",
|
569
|
+
"featureInfo": "balloonGebInfo"
|
570
|
+
}
|
571
|
+
},
|
572
|
+
{
|
573
|
+
"type": "PointCloudLayer",
|
574
|
+
"comment": "Dieser Layer geht gerade nicht, da scheint mit Cesium irgendwas kaputt zu sein",
|
575
|
+
"name": "Punktwolke Berlin Buch",
|
576
|
+
"url": "https://www.virtualcitymap.de/datasource-data/Open-Data-Berlin/Cesium_ChangeDetection2013_uncompressed/data/",
|
577
|
+
"activeOnStartup": false,
|
578
|
+
"screenSpaceError": 16,
|
579
|
+
"screenSpaceErrorMobile": 32,
|
580
|
+
"pointSize": 2,
|
581
|
+
"properties": {
|
582
|
+
"title": "Punktwolke Berlin Buch",
|
583
|
+
"defaultViewpoint": "buch",
|
584
|
+
"availableStyles": [
|
585
|
+
"CIR",
|
586
|
+
"Tree-ID",
|
587
|
+
"Distance"
|
588
|
+
]
|
589
|
+
}
|
590
|
+
},
|
591
|
+
{
|
592
|
+
"type": "WMTSLayer",
|
593
|
+
"name": "Openstreetmap layer",
|
594
|
+
"url": "https://osm.virtualcitymap.de/mapproxy/wmts/osm/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png",
|
595
|
+
"activeOnStartup": true,
|
596
|
+
"exclusive": "base",
|
597
|
+
"layer": "osm",
|
598
|
+
"wmtsStyle": "default",
|
599
|
+
"format": "image/png",
|
600
|
+
"tileMatrixSetID": "osm_grid",
|
601
|
+
"maxLevel": 19,
|
602
|
+
"extent": {
|
603
|
+
"coordinates": [
|
604
|
+
-180,
|
605
|
+
-85,
|
606
|
+
180,
|
607
|
+
85
|
608
|
+
],
|
609
|
+
"projection": {
|
610
|
+
"epsg": "EPSG:4326"
|
611
|
+
}
|
612
|
+
},
|
613
|
+
"tilingSchema": "mercator",
|
614
|
+
"hiddenObjectIds": [],
|
615
|
+
"tileMatrixPrefix": "",
|
616
|
+
"numberOfLevelZeroTilesX": 1,
|
617
|
+
"numberOfLevelZeroTilesY": 1,
|
618
|
+
"properties": {
|
619
|
+
"title": "Openstreetmap",
|
620
|
+
"showInOverviewMap": true
|
621
|
+
}
|
622
|
+
},
|
623
|
+
{
|
624
|
+
"type": "TMSLayer",
|
625
|
+
"name": "Summer DOP 2020",
|
626
|
+
"url": "https://www.virtualcitymap.de/datasource-data/1a52cd78-33aa-45d6-a3d2-832be7000d16",
|
627
|
+
"activeOnStartup": true,
|
628
|
+
"extent": {
|
629
|
+
"coordinates": [
|
630
|
+
13.04758181842805,
|
631
|
+
52.31643877872646,
|
632
|
+
13.76741895135349,
|
633
|
+
52.68540597146242
|
634
|
+
],
|
635
|
+
"projection": {
|
636
|
+
"epsg": "EPSG:4326"
|
637
|
+
}
|
638
|
+
},
|
639
|
+
"format": "png",
|
640
|
+
"minLevel": 8,
|
641
|
+
"maxLevel": 18,
|
642
|
+
"tileSize": [
|
643
|
+
256,
|
644
|
+
256
|
645
|
+
],
|
646
|
+
"tilingSchema": "mercator",
|
647
|
+
"opacity": 0.9,
|
648
|
+
"properties": {
|
649
|
+
"title": "True Orthophoto 2020"
|
650
|
+
}
|
651
|
+
},
|
652
|
+
{
|
653
|
+
"type": "CesiumTilesetLayer",
|
654
|
+
"name": "mesh_surface",
|
655
|
+
"url": "https://a.3d.blc.shc.eu/WAB/base_layer/cesium_mesh_2020/",
|
656
|
+
"activeOnStartup": true,
|
657
|
+
"allowPicking": false,
|
658
|
+
"screenSpaceError": 16,
|
659
|
+
"screenSpaceErrorMobile": 32,
|
660
|
+
"tilesetOptions": {
|
661
|
+
"skipLevelOfDetail": true
|
662
|
+
},
|
663
|
+
"exclusiveGroups": [
|
664
|
+
"3D",
|
665
|
+
"terrain"
|
666
|
+
],
|
667
|
+
"properties": {
|
668
|
+
"title": "3D-Mesh 2020"
|
669
|
+
}
|
670
|
+
},
|
671
|
+
{
|
672
|
+
"type": "WMSLayer",
|
673
|
+
"name": "Historische Luftbilder 1928",
|
674
|
+
"url": "https://fbinter.stadt-berlin.de/fb/wms/senstadt/k_luftbild1928",
|
675
|
+
"datasourceId": "bJqnEtPvjZ33SH2H7",
|
676
|
+
"activeOnStartup": false,
|
677
|
+
"extent": {
|
678
|
+
"coordinates": [
|
679
|
+
13.213981608814816,
|
680
|
+
52.41457895062166,
|
681
|
+
13.581125179911801,
|
682
|
+
52.590806074020236
|
683
|
+
],
|
684
|
+
"projection": {
|
685
|
+
"epsg": "EPSG:4326"
|
686
|
+
}
|
687
|
+
},
|
688
|
+
"version": "1.1.1",
|
689
|
+
"layers": "0",
|
690
|
+
"parameters": "format=image/png&transparent=true",
|
691
|
+
"minLevel": 12,
|
692
|
+
"maxLevel": 20,
|
693
|
+
"tilingSchema": "geographic",
|
694
|
+
"properties": {
|
695
|
+
"title": "Historische Luftbilder 1928"
|
696
|
+
}
|
697
|
+
},
|
698
|
+
{
|
699
|
+
"type": "WMSLayer",
|
700
|
+
"name": "Fließgeschwindigkeit selten - NRW WMS",
|
701
|
+
"url": "https://sgx.geodatenzentrum.de/wms_starkregen__sess-1426bd3e-179d-49b1-b0dd-2994524ac2a8",
|
702
|
+
"activeOnStartup": false,
|
703
|
+
"extent": {
|
704
|
+
"coordinates": [
|
705
|
+
5.591229155264556,
|
706
|
+
50.335667211619835,
|
707
|
+
9.001144728260876,
|
708
|
+
52.5802231834015
|
709
|
+
],
|
710
|
+
"projection": {
|
711
|
+
"epsg": "EPSG:4326"
|
712
|
+
}
|
713
|
+
},
|
714
|
+
"version": "1.3.0",
|
715
|
+
"layers": "fliessgeschwindigkeiten_selten",
|
716
|
+
"parameters": "format=image/png&transparent=true",
|
717
|
+
"maxLevel": 21,
|
718
|
+
"featureInfo": {
|
719
|
+
"responseType": "application/geojson"
|
720
|
+
},
|
721
|
+
"tilingSchema": "geographic",
|
722
|
+
"responseType": "application/geojson",
|
723
|
+
"opacity": 0.7,
|
724
|
+
"properties": {
|
725
|
+
"title": "Fließgeschwindigkeit, seltenes Ereignis (HQ100)",
|
726
|
+
"defaultViewpoint": "soest",
|
727
|
+
"featureInfo": "waterspeed"
|
728
|
+
}
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"type": "WMSLayer",
|
732
|
+
"name": "Wasserhöhen selten - NRW WMS",
|
733
|
+
"url": "https://sgx.geodatenzentrum.de/wms_starkregen__sess-1426bd3e-179d-49b1-b0dd-2994524ac2a8",
|
734
|
+
"activeOnStartup": false,
|
735
|
+
"extent": {
|
736
|
+
"coordinates": [
|
737
|
+
5.591229155264556,
|
738
|
+
50.335667211619835,
|
739
|
+
9.001144728260876,
|
740
|
+
52.5802231834015
|
741
|
+
],
|
742
|
+
"projection": {
|
743
|
+
"epsg": "EPSG:4326"
|
744
|
+
}
|
745
|
+
},
|
746
|
+
"version": "1.3.0",
|
747
|
+
"layers": "wasserhoehen_selten",
|
748
|
+
"parameters": "format=image/png&transparent=true",
|
749
|
+
"maxLevel": 21,
|
750
|
+
"featureInfo": {
|
751
|
+
"responseType": "application/geojson"
|
752
|
+
},
|
753
|
+
"tilingSchema": "geographic",
|
754
|
+
"responseType": "application/geojson",
|
755
|
+
"opacity": 0.7,
|
756
|
+
"properties": {
|
757
|
+
"title": "Wasserhöhen, seltenes Ereignis (HQ100)",
|
758
|
+
"defaultViewpoint": "soest",
|
759
|
+
"featureInfo": "waterheight"
|
760
|
+
}
|
761
|
+
},
|
762
|
+
{
|
763
|
+
"type": "WMSLayer",
|
764
|
+
"name": "vorläufig gesicherte Überschwemmungsgebiete",
|
765
|
+
"url": "https://www.wms.nrw.de/umwelt/uesg",
|
766
|
+
"activeOnStartup": false,
|
767
|
+
"extent": {
|
768
|
+
"coordinates": [
|
769
|
+
5.591229155264556,
|
770
|
+
50.335667211619835,
|
771
|
+
9.001144728260876,
|
772
|
+
52.5802231834015
|
773
|
+
],
|
774
|
+
"projection": {
|
775
|
+
"epsg": "EPSG:4326"
|
776
|
+
}
|
777
|
+
},
|
778
|
+
"version": "1.3.0",
|
779
|
+
"layers": "4",
|
780
|
+
"parameters": "format=image/png&transparent=true",
|
781
|
+
"maxLevel": 21,
|
782
|
+
"tilingSchema": "geographic",
|
783
|
+
"properties": {
|
784
|
+
"title": "vorläufig gesicherte Überschwemmungsgebiete",
|
785
|
+
"defaultViewpoint": "soest"
|
786
|
+
}
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"type": "WMSLayer",
|
790
|
+
"name": "festgesetzte Überschwemmungsgebiete",
|
791
|
+
"url": "https://www.wms.nrw.de/umwelt/uesg",
|
792
|
+
"activeOnStartup": false,
|
793
|
+
"extent": {
|
794
|
+
"coordinates": [
|
795
|
+
5.591229155264556,
|
796
|
+
50.335667211619835,
|
797
|
+
9.001144728260876,
|
798
|
+
52.5802231834015
|
799
|
+
],
|
800
|
+
"projection": {
|
801
|
+
"epsg": "EPSG:4326"
|
802
|
+
}
|
803
|
+
},
|
804
|
+
"version": "1.3.0",
|
805
|
+
"layers": "6",
|
806
|
+
"parameters": "format=image/png&transparent=true",
|
807
|
+
"maxLevel": 21,
|
808
|
+
"featureInfo": {
|
809
|
+
"responseType": "application/geojson"
|
810
|
+
},
|
811
|
+
"tilingSchema": "geographic",
|
812
|
+
"responseType": "application/geojson",
|
813
|
+
"properties": {
|
814
|
+
"title": "festgesetzte Überschwemmungsgebiete",
|
815
|
+
"defaultViewpoint": "soest"
|
816
|
+
}
|
817
|
+
},
|
818
|
+
{
|
819
|
+
"type": "VectorTileLayer",
|
820
|
+
"name": "osmBuildingFootprints",
|
821
|
+
"minLevel": 15,
|
822
|
+
"maxLevel": 21,
|
823
|
+
"tileProvider": {
|
824
|
+
"baseLevels": [
|
825
|
+
14
|
826
|
+
],
|
827
|
+
"idProperty": "osm_id",
|
828
|
+
"useSpatialIndex": false,
|
829
|
+
"type": "MVTTileProvider",
|
830
|
+
"url": "https://www.virtualcitymap.de/datasource-data/BerlinFootprintsMVT/{z}/{x}/{y}.pbf"
|
831
|
+
},
|
832
|
+
"activeOnStartup": false,
|
833
|
+
"properties": {
|
834
|
+
"title": "OSM Gebäudegrundrisse",
|
835
|
+
"featureInfo": "tableAll"
|
836
|
+
}
|
837
|
+
}
|
838
|
+
],
|
839
|
+
"obliqueCollections": [
|
840
|
+
{
|
841
|
+
"name": "Schrägluftbilder 2020",
|
842
|
+
"activeOnStartup": true,
|
843
|
+
"dataSets": [
|
844
|
+
{
|
845
|
+
"url": "https://a.3d.blc.shc.eu/WAB/base_layer/obliques_2020/image_tiled.json",
|
846
|
+
"terrainProvider": {
|
847
|
+
"url": "https://www.virtualcitymap.de/datasource-data/globalterrain_5_9"
|
848
|
+
},
|
849
|
+
"projection": {
|
850
|
+
"epsg": "25833",
|
851
|
+
"proj4": "+proj=utm +zone=33 +ellps=GRS80 +units=m +no_defs"
|
852
|
+
}
|
853
|
+
}
|
854
|
+
],
|
855
|
+
"maxZoom": 7,
|
856
|
+
"minZoom": 0
|
857
|
+
}
|
858
|
+
],
|
859
|
+
"styles": [
|
860
|
+
{
|
861
|
+
"type": "DeclarativeStyleItem",
|
862
|
+
"name": "CIR",
|
863
|
+
"declarativeStyle": {
|
864
|
+
"show": "true",
|
865
|
+
"color": "rgb(${CIR}[0], ${CIR}[1], ${CIR}[2])",
|
866
|
+
"pointSize": 2
|
867
|
+
},
|
868
|
+
"legend": []
|
869
|
+
},
|
870
|
+
{
|
871
|
+
"type": "DeclarativeStyleItem",
|
872
|
+
"name": "Tree-ID",
|
873
|
+
"declarativeStyle": {
|
874
|
+
"show": "true",
|
875
|
+
"color": {
|
876
|
+
"conditions": [
|
877
|
+
[
|
878
|
+
"${TREE_ID} > 0",
|
879
|
+
"mix(color('#00FF00') * (${TREE_ID} % 21) / 20, ${COLOR}, 0.5)"
|
880
|
+
],
|
881
|
+
[
|
882
|
+
"true",
|
883
|
+
"${COLOR}"
|
884
|
+
]
|
885
|
+
]
|
886
|
+
},
|
887
|
+
"pointSize": 2
|
888
|
+
},
|
889
|
+
"legend": []
|
890
|
+
},
|
891
|
+
{
|
892
|
+
"type": "DeclarativeStyleItem",
|
893
|
+
"name": "Distance",
|
894
|
+
"declarativeStyle": {
|
895
|
+
"show": "true",
|
896
|
+
"color": {
|
897
|
+
"conditions": [
|
898
|
+
[
|
899
|
+
"${DISTANCE} > 4",
|
900
|
+
"mix(color('#ffff00'), color('#bd0000'), clamp(0, 1, (${DISTANCE}-4)/5))"
|
901
|
+
],
|
902
|
+
[
|
903
|
+
"true",
|
904
|
+
"${COLOR}"
|
905
|
+
]
|
906
|
+
]
|
907
|
+
},
|
908
|
+
"pointSize": 2
|
909
|
+
},
|
910
|
+
"legend": []
|
911
|
+
},
|
912
|
+
{
|
913
|
+
"type": "DeclarativeStyleItem",
|
914
|
+
"name": "dummyClassificationStyle",
|
915
|
+
"declarativeStyle": {
|
916
|
+
"show": "true",
|
917
|
+
"color": "color('#ffffff', 0.05)"
|
918
|
+
}
|
919
|
+
}
|
920
|
+
],
|
921
|
+
"featureInfo": [
|
922
|
+
{
|
923
|
+
"type": "BalloonFeatureInfoView",
|
924
|
+
"name": "balloonGebInfo",
|
925
|
+
"title": "Gebäudeinformation",
|
926
|
+
"attributeKeys": ["namlag", "bezgfk"],
|
927
|
+
"keyMapping": { "namlag": "Adresse", "bezgfk": "Funktion" }
|
928
|
+
},
|
929
|
+
{
|
930
|
+
"type": "TableFeatureInfoView",
|
931
|
+
"name": "tableBuildings",
|
932
|
+
"attributeKeys": [
|
933
|
+
"Address.PostalCode",
|
934
|
+
"Address.City",
|
935
|
+
"Address.Street",
|
936
|
+
"Address.HouseNumber",
|
937
|
+
"measuredHeight",
|
938
|
+
"roofType",
|
939
|
+
"function",
|
940
|
+
"storeyAboveGround",
|
941
|
+
"Stand_3D-Stadtmodell",
|
942
|
+
"gmlId"
|
943
|
+
],
|
944
|
+
"keyMapping": {
|
945
|
+
"Address.PostalCode": "Postleitzahl",
|
946
|
+
"Address.City": "Ort",
|
947
|
+
"Address.Street": "Straße",
|
948
|
+
"Address.HouseNumber": "Hausnummer",
|
949
|
+
"measuredHeight": "Gebäudehöhe",
|
950
|
+
"roofType": "Dachtyp",
|
951
|
+
"function": "Funktion",
|
952
|
+
"storeyAboveGround": "Stockwerke über Gelände",
|
953
|
+
"Stand_3D-Stadtmodell": "Stand 3D-Stadtmodell",
|
954
|
+
"gmlId": "gmlId"
|
955
|
+
},
|
956
|
+
"valueMapping": {
|
957
|
+
"roofType": "codeLists.values.roofType.${value}",
|
958
|
+
"function": "codeLists.values.function.${value}"
|
959
|
+
}
|
960
|
+
},
|
961
|
+
{
|
962
|
+
"type": "BalloonFeatureInfoView",
|
963
|
+
"name": "waterheight",
|
964
|
+
"title": "Wasserhöhe [m]",
|
965
|
+
"attributeKeys": ["Wasserhöhe"]
|
966
|
+
},
|
967
|
+
{
|
968
|
+
"type": "BalloonFeatureInfoView",
|
969
|
+
"name": "waterspeed",
|
970
|
+
"title": "Geschwindigkeit [m/s]",
|
971
|
+
"attributeKeys": ["Geschwindigkeit"]
|
972
|
+
},
|
973
|
+
{
|
974
|
+
"type": "TableFeatureInfoView",
|
975
|
+
"name": "tableTrees",
|
976
|
+
"attributeKeys": [
|
977
|
+
"stammumfg",
|
978
|
+
"pflanzjahr",
|
979
|
+
"kronedurch",
|
980
|
+
"standalter",
|
981
|
+
"baumhoehe",
|
982
|
+
"Kategorie",
|
983
|
+
"art_dtsch",
|
984
|
+
"gattung_de"
|
985
|
+
],
|
986
|
+
"keyMapping": {
|
987
|
+
"stammumfg": "Umfang",
|
988
|
+
"pflanzjahr": "Pflanzjahr",
|
989
|
+
"kronedurch": "Kronendurchmesser",
|
990
|
+
"standalter": "Standalter",
|
991
|
+
"baumhoehe": "Baumhöhe",
|
992
|
+
"Kategorie": "Kategorie",
|
993
|
+
"art_dtsch": "Art",
|
994
|
+
"gattung_de": "Gattung"
|
995
|
+
}
|
996
|
+
},
|
997
|
+
{
|
998
|
+
"type": "TableFeatureInfoView",
|
999
|
+
"name": "tableAll"
|
1000
|
+
}
|
1001
|
+
],
|
1002
|
+
"viewpoints": [
|
1003
|
+
{
|
1004
|
+
"type": "ViewPoint",
|
1005
|
+
"name": "Lüdenscheid",
|
1006
|
+
"cameraPosition": [
|
1007
|
+
7.628326765047903,
|
1008
|
+
51.19524414598677,
|
1009
|
+
567.4244392829526
|
1010
|
+
],
|
1011
|
+
"groundPosition": [
|
1012
|
+
7.628881118887374,
|
1013
|
+
51.19874066185536,
|
1014
|
+
327.79466475129635
|
1015
|
+
],
|
1016
|
+
"distance": 458.54351897275285,
|
1017
|
+
"heading": 5.688482507076805,
|
1018
|
+
"pitch": -31.5078138733279,
|
1019
|
+
"roll": 0.02191005047832281,
|
1020
|
+
"animate": true
|
1021
|
+
},
|
1022
|
+
{
|
1023
|
+
"type": "ViewPoint",
|
1024
|
+
"name": "buch",
|
1025
|
+
"cameraPosition": [
|
1026
|
+
13.510024049521348,
|
1027
|
+
52.61701500801688,
|
1028
|
+
963.616637428691
|
1029
|
+
],
|
1030
|
+
"groundPosition": [
|
1031
|
+
13.509501235009397,
|
1032
|
+
52.63010587662207,
|
1033
|
+
64.52947347468726
|
1034
|
+
],
|
1035
|
+
"distance": 1712.3223745287837,
|
1036
|
+
"heading": 358.6079576057926,
|
1037
|
+
"pitch": -31.679398314637186,
|
1038
|
+
"roll": 359.9946845951051,
|
1039
|
+
"animate": false
|
1040
|
+
},
|
1041
|
+
{
|
1042
|
+
"type": "ViewPoint",
|
1043
|
+
"name": "soest",
|
1044
|
+
"cameraPosition": [
|
1045
|
+
8.109298382955318,
|
1046
|
+
51.559597246671196,
|
1047
|
+
961.5073981367838
|
1048
|
+
],
|
1049
|
+
"groundPosition": [
|
1050
|
+
8.106925457830526,
|
1051
|
+
51.570398058304164,
|
1052
|
+
100.65761284152735
|
1053
|
+
],
|
1054
|
+
"distance": 1487.426133239795,
|
1055
|
+
"heading": 352.20412276200915,
|
1056
|
+
"pitch": -35.36818482526568,
|
1057
|
+
"roll": 359.9689876007259,
|
1058
|
+
"animate": true
|
1059
|
+
},
|
1060
|
+
{
|
1061
|
+
"type": "ViewPoint",
|
1062
|
+
"name": "water",
|
1063
|
+
"cameraPosition": [
|
1064
|
+
13.339344385024594,
|
1065
|
+
52.5088954811299,
|
1066
|
+
130.03569559547765
|
1067
|
+
],
|
1068
|
+
"groundPosition": [
|
1069
|
+
13.33729902776962,
|
1070
|
+
52.511465636098464,
|
1071
|
+
9.99406298444336
|
1072
|
+
],
|
1073
|
+
"distance": 339.8414978184529,
|
1074
|
+
"heading": 334.10164666457615,
|
1075
|
+
"pitch": -20.686324098743707,
|
1076
|
+
"roll": 359.91305877022717,
|
1077
|
+
"animate": false
|
1078
|
+
},
|
1079
|
+
{
|
1080
|
+
"type": "ViewPoint",
|
1081
|
+
"name": "Lindau",
|
1082
|
+
"cameraPosition": [
|
1083
|
+
9.686669428645894,
|
1084
|
+
47.54783307574758,
|
1085
|
+
470.61319069904147
|
1086
|
+
],
|
1087
|
+
"groundPosition": [
|
1088
|
+
9.680928124911006,
|
1089
|
+
47.5415384162223,
|
1090
|
+
389.84056816057506
|
1091
|
+
],
|
1092
|
+
"distance": 826.5617352083572,
|
1093
|
+
"heading": 211.7001766176285,
|
1094
|
+
"pitch": -5.611671364998787,
|
1095
|
+
"roll": 359.8987991072801,
|
1096
|
+
"animate": true
|
1097
|
+
},
|
1098
|
+
{
|
1099
|
+
"type": "ViewPoint",
|
1100
|
+
"name": "startview",
|
1101
|
+
"cameraPosition": [
|
1102
|
+
13.37411102000604,
|
1103
|
+
52.5126411114975,
|
1104
|
+
1039.4376606886788
|
1105
|
+
],
|
1106
|
+
"groundPosition": [
|
1107
|
+
13.371271496304264,
|
1108
|
+
52.52529109057904,
|
1109
|
+
31.074206921777545
|
1110
|
+
],
|
1111
|
+
"distance": 1742.3485377937602,
|
1112
|
+
"heading": 352.20412240931404,
|
1113
|
+
"pitch": -35.36818845447508,
|
1114
|
+
"roll": 359.96898821005135,
|
1115
|
+
"animate": false
|
1116
|
+
}
|
1117
|
+
],
|
1118
|
+
"contentTree": [
|
1119
|
+
{
|
1120
|
+
"type": "NodeContentTreeItem",
|
1121
|
+
"name": "germany",
|
1122
|
+
"title": "Deutschlandweit",
|
1123
|
+
"initOpen": true
|
1124
|
+
},
|
1125
|
+
{
|
1126
|
+
"type": "LayerGroupContentTreeItem",
|
1127
|
+
"name": "germany.lod2",
|
1128
|
+
"layerNames": [
|
1129
|
+
"Berlin - LOD2",
|
1130
|
+
"Brandenburg - LOD2",
|
1131
|
+
"Hamburg - LOD2",
|
1132
|
+
"Hessen - LOD2",
|
1133
|
+
"NRW - LOD2",
|
1134
|
+
"Sachsen - LOD2",
|
1135
|
+
"Sachsen-Anhalt - LOD2",
|
1136
|
+
"Thuringen - LOD2",
|
1137
|
+
"Niedersachsen - LOD2",
|
1138
|
+
"GermanyBaseTerrain"
|
1139
|
+
],
|
1140
|
+
"layerNamesToDeactivate": [
|
1141
|
+
"mesh_surface",
|
1142
|
+
"Mesh Classification Layer"
|
1143
|
+
],
|
1144
|
+
"title": "LOD2 Gebäude - Open Data 2022"
|
1145
|
+
},
|
1146
|
+
{
|
1147
|
+
"type": "NodeContentTreeItem",
|
1148
|
+
"name": "berlin",
|
1149
|
+
"title": "Berlinweit",
|
1150
|
+
"initOpen": true
|
1151
|
+
},
|
1152
|
+
{
|
1153
|
+
"type": "LayerGroupContentTreeItem",
|
1154
|
+
"name": "berlin.mesh",
|
1155
|
+
"layerNames": [
|
1156
|
+
"Mesh Classification Layer",
|
1157
|
+
"mesh_surface"
|
1158
|
+
],
|
1159
|
+
"layerNamesToDeactivate": [
|
1160
|
+
"Berlin - LOD2",
|
1161
|
+
"Brandenburg - LOD2",
|
1162
|
+
"Hamburg - LOD2",
|
1163
|
+
"Hessen - LOD2",
|
1164
|
+
"NRW - LOD2",
|
1165
|
+
"Sachsen - LOD2",
|
1166
|
+
"Sachsen-Anhalt - LOD2",
|
1167
|
+
"Thuringen - LOD2",
|
1168
|
+
"Niedersachsen - LOD2",
|
1169
|
+
"GermanyBaseTerrain"
|
1170
|
+
],
|
1171
|
+
"title": "3D-Mesh 2020"
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"type": "LayerContentTreeItem",
|
1175
|
+
"name": "berlin.texturedBuildings",
|
1176
|
+
"layerName": "Berlin LOD2 - Textured"
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"type": "LayerContentTreeItem",
|
1180
|
+
"name": "berlin.historic",
|
1181
|
+
"layerName": "Historische Luftbilder 1928"
|
1182
|
+
},
|
1183
|
+
{
|
1184
|
+
"type": "LayerContentTreeItem",
|
1185
|
+
"name": "berlin.osmfootprints",
|
1186
|
+
"layerName": "osmBuildingFootprints"
|
1187
|
+
},
|
1188
|
+
{
|
1189
|
+
"type": "LayerContentTreeItem",
|
1190
|
+
"name": "berlin.planwerk",
|
1191
|
+
"layerName": "Planwerk innere Stadt"
|
1192
|
+
},
|
1193
|
+
{
|
1194
|
+
"type": "LayerContentTreeItem",
|
1195
|
+
"name": "berlin.summertrees",
|
1196
|
+
"layerName": "Summer Trees"
|
1197
|
+
},
|
1198
|
+
{
|
1199
|
+
"type": "LayerContentTreeItem",
|
1200
|
+
"name": "berlin.summerdop2020",
|
1201
|
+
"layerName": "Summer DOP 2020",
|
1202
|
+
"infoUrl": "https://vc.systems/",
|
1203
|
+
"infoUrlTarget": "_blank"
|
1204
|
+
},
|
1205
|
+
{
|
1206
|
+
"type": "NodeContentTreeItem",
|
1207
|
+
"name": "thematic",
|
1208
|
+
"title": "Themenbezogene Daten",
|
1209
|
+
"initOpen": true
|
1210
|
+
},
|
1211
|
+
{
|
1212
|
+
"type": "LayerContentTreeItem",
|
1213
|
+
"name": "thematic.waterheight",
|
1214
|
+
"layerName": "Wasserhöhen selten - NRW WMS"
|
1215
|
+
},
|
1216
|
+
{
|
1217
|
+
"type": "LayerContentTreeItem",
|
1218
|
+
"name": "thematic.waterflow",
|
1219
|
+
"layerName": "Fließgeschwindigkeit selten - NRW WMS"
|
1220
|
+
},
|
1221
|
+
{
|
1222
|
+
"type": "LayerContentTreeItem",
|
1223
|
+
"name": "thematic.waterareas",
|
1224
|
+
"layerName": "vorläufig gesicherte Überschwemmungsgebiete"
|
1225
|
+
},
|
1226
|
+
{
|
1227
|
+
"type": "LayerContentTreeItem",
|
1228
|
+
"name": "thematic.waterareas2",
|
1229
|
+
"layerName": "festgesetzte Überschwemmungsgebiete"
|
1230
|
+
}
|
1231
|
+
]
|
1232
|
+
}
|