@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.
- package/README.md +11 -4
- package/build/build.js +0 -3
- package/build/buildHelpers.js +0 -1
- package/build/buildPreview.js +7 -0
- package/config/aerowest.config.json +13 -3
- package/config/base.config.json +89 -64
- package/config/codes.config.json +397 -0
- package/config/dev.config.json +169 -0
- package/config/graphFeatureInfo.config.json +100 -0
- package/config/www.config.json +1232 -0
- package/dist/assets/{cesium.eb5667.js → cesium.e67536.js} +0 -0
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/core.ebf665.js +4 -0
- package/dist/assets/core.js +1 -1
- package/dist/assets/{index.4ccd4433.js → index.9b213929.js} +1 -1
- package/dist/assets/{ol.ef03b1.js → ol.8bbd50.js} +0 -0
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui.fdfe0d.css +1 -0
- package/dist/assets/ui.fdfe0d.js +68 -0
- package/dist/assets/ui.js +1 -1
- package/dist/assets/vue.0bb7c6.js +9 -0
- package/dist/assets/vue.js +2 -1
- package/dist/assets/{vuetify.401a29.css → vuetify.53300f.css} +1 -1
- package/dist/assets/{vuetify.401a29.js → vuetify.53300f.js} +71 -71
- package/dist/assets/vuetify.js +2 -2
- package/dist/index.html +1 -1
- package/index.js +36 -5
- package/lib/vue.js +1 -0
- package/map.config.json +15 -6
- package/package.json +6 -7
- 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 +1 -1
- 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/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 +63 -2
- 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 +201 -92
- package/src/application/VcsMap.vue +1 -1
- package/src/application/VcsSettings.vue +1 -1
- package/src/application/vcsAppWrapper.vue +1 -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 +13 -4
- package/src/components/lists/VcsTreeview.vue +4 -4
- package/src/components/lists/VcsTreeviewLeaf.vue +9 -2
- 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 +138 -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 +455 -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 +16 -0
- package/src/i18n/en.js +16 -0
- package/src/i18n/i18nCollection.js +17 -0
- package/src/manager/buttonManager.js +5 -5
- 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 +8 -8
- package/src/manager/toolbox/ToolboxManager.vue +2 -2
- package/src/manager/toolbox/toolboxManager.js +7 -3
- 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/setup.js +0 -2
- package/src/state.js +256 -0
- package/src/styles/_theming.scss +0 -5
- package/src/uiConfig.js +79 -0
- package/src/vcsUiApp.js +210 -20
- 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
@@ -5,8 +5,16 @@ import Icons from '../icons/+all.js';
|
|
5
5
|
|
6
6
|
Vue.use(Vuetify);
|
7
7
|
|
8
|
+
/**
|
9
|
+
* @type {string}
|
10
|
+
*/
|
11
|
+
export const defaultPrimaryColor = '#409D76';
|
12
|
+
|
13
|
+
/**
|
14
|
+
* @returns {import("vuetify").default}
|
15
|
+
*/
|
8
16
|
export function createVuetify() {
|
9
|
-
|
17
|
+
return new Vuetify({
|
10
18
|
treeShake: false,
|
11
19
|
defaultAssets: {
|
12
20
|
font: {
|
@@ -20,7 +28,7 @@ export function createVuetify() {
|
|
20
28
|
themes: {
|
21
29
|
light: {
|
22
30
|
basic: '#FFFFFF',
|
23
|
-
primary:
|
31
|
+
primary: defaultPrimaryColor,
|
24
32
|
accent: '#EDEDED',
|
25
33
|
warning: '#FFCE00',
|
26
34
|
'gray-200': '#DEDEDE',
|
@@ -33,7 +41,7 @@ export function createVuetify() {
|
|
33
41
|
},
|
34
42
|
dark: {
|
35
43
|
basic: '#000000',
|
36
|
-
primary:
|
44
|
+
primary: defaultPrimaryColor,
|
37
45
|
secondary: '#FFFFFF',
|
38
46
|
accent: '#757575',
|
39
47
|
warning: '#FFCE00',
|
@@ -48,7 +56,9 @@ export function createVuetify() {
|
|
48
56
|
},
|
49
57
|
},
|
50
58
|
});
|
51
|
-
return vuetify;
|
52
59
|
}
|
53
60
|
|
61
|
+
/**
|
62
|
+
* @type {import("vuetify").default}
|
63
|
+
*/
|
54
64
|
export const vuetify = createVuetify();
|
@@ -1,510 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"mapcontainer": "vcs_map_container",
|
3
|
-
"startingViewPointName": "berlin",
|
4
|
-
"startingMapName": "cesium",
|
5
|
-
"projection": {
|
6
|
-
"epsg": "25833",
|
7
|
-
"proj4": "+proj=utm +zone=33 +ellps=GRS80 +units=m +no_defs"
|
8
|
-
},
|
9
|
-
"styles": [
|
10
|
-
{
|
11
|
-
"type": "DeclarativeStyleItem",
|
12
|
-
"name": "CIR",
|
13
|
-
"title": "CIR",
|
14
|
-
"declarativeStyle": {
|
15
|
-
"show": "true",
|
16
|
-
"color": "rgb(${CIR}[0], ${CIR}[1], ${CIR}[2])",
|
17
|
-
"pointSize": 2
|
18
|
-
},
|
19
|
-
"legend": []
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"type": "DeclarativeStyleItem",
|
23
|
-
"name": "Tree-ID",
|
24
|
-
"title": "Tree-ID",
|
25
|
-
"declarativeStyle": {
|
26
|
-
"show": "true",
|
27
|
-
"color": {
|
28
|
-
"conditions": [
|
29
|
-
[
|
30
|
-
"${TREE_ID} > 0",
|
31
|
-
"mix(color('#00FF00') * (${TREE_ID} % 21) / 20, ${COLOR}, 0.5)"
|
32
|
-
],
|
33
|
-
[
|
34
|
-
"true",
|
35
|
-
"${COLOR}"
|
36
|
-
]
|
37
|
-
]
|
38
|
-
},
|
39
|
-
"pointSize": 2
|
40
|
-
},
|
41
|
-
"legend": []
|
42
|
-
},
|
43
|
-
{
|
44
|
-
"type": "DeclarativeStyleItem",
|
45
|
-
"name": "Distance",
|
46
|
-
"title": "Distance",
|
47
|
-
"declarativeStyle": {
|
48
|
-
"show": "true",
|
49
|
-
"color": {
|
50
|
-
"conditions": [
|
51
|
-
[
|
52
|
-
"${DISTANCE} > 4",
|
53
|
-
"mix(color('#ffff00'), color('#bd0000'), clamp(0, 1, (${DISTANCE}-4)/5))"
|
54
|
-
],
|
55
|
-
[
|
56
|
-
"true",
|
57
|
-
"${COLOR}"
|
58
|
-
]
|
59
|
-
]
|
60
|
-
},
|
61
|
-
"pointSize": 2
|
62
|
-
},
|
63
|
-
"legend": []
|
64
|
-
},
|
65
|
-
{
|
66
|
-
"type": "DeclarativeStyleItem",
|
67
|
-
"name": "Classification",
|
68
|
-
"title": "Classification",
|
69
|
-
"declarativeStyle": {
|
70
|
-
"show": "true",
|
71
|
-
"color": {
|
72
|
-
"conditions": [
|
73
|
-
[
|
74
|
-
"${SEMANTIC} === 1",
|
75
|
-
"mix(color('#9f9f61'), ${COLOR}, 0.3)"
|
76
|
-
],
|
77
|
-
[
|
78
|
-
"${SEMANTIC} === 3",
|
79
|
-
"mix(color('#dc0000'), ${COLOR}, 0.3)"
|
80
|
-
],
|
81
|
-
[
|
82
|
-
"${SEMANTIC} === 4",
|
83
|
-
"mix(color('#06ad16'), ${COLOR}, 0.3)"
|
84
|
-
],
|
85
|
-
[
|
86
|
-
"true",
|
87
|
-
"${COLOR}"
|
88
|
-
]
|
89
|
-
]
|
90
|
-
},
|
91
|
-
"pointSize": 2
|
92
|
-
},
|
93
|
-
"toggleOptions": [
|
94
|
-
{
|
95
|
-
"title": "Buildings",
|
96
|
-
"condition": "${SEMANTIC} === 1",
|
97
|
-
"target": "show"
|
98
|
-
}
|
99
|
-
],
|
100
|
-
"legend": [
|
101
|
-
{
|
102
|
-
"color": "#9f9f61",
|
103
|
-
"title": "Boden"
|
104
|
-
},
|
105
|
-
{
|
106
|
-
"color": "#dc0000",
|
107
|
-
"title": "Gebäude"
|
108
|
-
},
|
109
|
-
{
|
110
|
-
"color": "#06ad16",
|
111
|
-
"title": "Vegetation"
|
112
|
-
}
|
113
|
-
]
|
114
|
-
}
|
115
|
-
],
|
116
|
-
"maps": [
|
117
|
-
],
|
118
|
-
"layers": [
|
119
|
-
{
|
120
|
-
"name": "PointCloud Changedetection",
|
121
|
-
"url": "https://berlin.virtualcitymap.de/datasource-data/Open-Data-Berlin/Cesium_ChangeDetection2013_uncompressed/data/",
|
122
|
-
"type": "PointCloudLayer",
|
123
|
-
"datasourceId": "6MxMnXhaBJsz2utBD",
|
124
|
-
"activeOnStartup": false,
|
125
|
-
"screenSpaceError": 16,
|
126
|
-
"screenSpaceErrorMobile": 32,
|
127
|
-
"pointSize": 2,
|
128
|
-
"hiddenObjectIds": [],
|
129
|
-
"copyright": {
|
130
|
-
"provider": "",
|
131
|
-
"url": "",
|
132
|
-
"year": ""
|
133
|
-
},
|
134
|
-
"properties": {
|
135
|
-
"availableStyles": [
|
136
|
-
"CIR",
|
137
|
-
"Tree-ID",
|
138
|
-
"Distance",
|
139
|
-
"Classification"
|
140
|
-
],
|
141
|
-
"defaultViewpoint": "changedetection",
|
142
|
-
"title": "Berlin Buch"
|
143
|
-
}
|
144
|
-
},
|
145
|
-
{
|
146
|
-
"type": "PointCloudLayer",
|
147
|
-
"name": "pointcloud",
|
148
|
-
"activeOnStartup": false,
|
149
|
-
"datasourceId": "g9rXAY6pu2tfNmWf3",
|
150
|
-
"url": "https://berlin.virtualcitymap.de/datasource-data/Open-Data-Berlin/tiergarten/tileset.json",
|
151
|
-
"copyright": {
|
152
|
-
"provider": "Senatsverwaltung für Wirtschaft, Technologie und Forschung. Geodaten Herstellung gefördert durch den Europäischen Fonds für Regionale Entwicklung (EFRE)",
|
153
|
-
"url": "http://www.berlin.de/wirtschaftssenat"
|
154
|
-
},
|
155
|
-
"screenSpaceError": 20,
|
156
|
-
"screenSpaceErrorMobile": 32,
|
157
|
-
"pointSize": 1.6,
|
158
|
-
"exclusiveGroups": [
|
159
|
-
"pointcloud"
|
160
|
-
],
|
161
|
-
"properties": {
|
162
|
-
"defaultViewpoint": "pointcloud",
|
163
|
-
"title": "Tiergarten"
|
164
|
-
}
|
165
|
-
},
|
166
|
-
{
|
167
|
-
"name": "lod2_solar_jul",
|
168
|
-
"url": "https://berlin.virtualcitymap.de/datasource-data/ae32d27d-e75b-4339-b471-c2e4c1891bea",
|
169
|
-
"type": "CesiumTilesetLayer",
|
170
|
-
"datasourceId": "MxKRpGbBemdmvKbep",
|
171
|
-
"activeOnStartup": false,
|
172
|
-
"allowPicking": true,
|
173
|
-
"screenSpaceError": 16,
|
174
|
-
"screenSpaceErrorMobile": 32,
|
175
|
-
"hiddenObjectIds": [],
|
176
|
-
"copyright": {
|
177
|
-
"provider": "virtualcitySOLAR",
|
178
|
-
"url": "https://www.virtualcitysystems.de/citygml-solarpotenzialanalyse-3d-stadtmodell",
|
179
|
-
"year": "2018"
|
180
|
-
},
|
181
|
-
"exclusiveGroups": [
|
182
|
-
"bldg"
|
183
|
-
]
|
184
|
-
},
|
185
|
-
{
|
186
|
-
"name": "lod2_solar_apr",
|
187
|
-
"url": "https://berlin.virtualcitymap.de/datasource-data/3ece8030-9ca3-487f-8811-7d65c58b9d46",
|
188
|
-
"type": "CesiumTilesetLayer",
|
189
|
-
"datasourceId": "6F7MtLWF9Fe44W6XY",
|
190
|
-
"activeOnStartup": false,
|
191
|
-
"allowPicking": true,
|
192
|
-
"screenSpaceError": 16,
|
193
|
-
"screenSpaceErrorMobile": 32,
|
194
|
-
"hiddenObjectIds": [],
|
195
|
-
"copyright": {
|
196
|
-
"provider": "virtualcitySOLAR",
|
197
|
-
"url": "https://www.virtualcitysystems.de/citygml-solarpotenzialanalyse-3d-stadtmodell",
|
198
|
-
"year": "2018"
|
199
|
-
},
|
200
|
-
"exclusiveGroups": [
|
201
|
-
"bldg"
|
202
|
-
]
|
203
|
-
},
|
204
|
-
{
|
205
|
-
"name": "lod2_solar_jan",
|
206
|
-
"url": "https://berlin.virtualcitymap.de/datasource-data/6336aafe-96eb-4db2-b1ed-5bcc70b4ac54",
|
207
|
-
"type": "CesiumTilesetLayer",
|
208
|
-
"datasourceId": "B7ooqvwDgEKnzN6MX",
|
209
|
-
"activeOnStartup": false,
|
210
|
-
"allowPicking": true,
|
211
|
-
"screenSpaceError": 16,
|
212
|
-
"screenSpaceErrorMobile": 32,
|
213
|
-
"hiddenObjectIds": [],
|
214
|
-
"copyright": {
|
215
|
-
"provider": "virtualcitySOLAR",
|
216
|
-
"url": "https://www.virtualcitysystems.de/citygml-solarpotenzialanalyse-3d-stadtmodell",
|
217
|
-
"year": "2018"
|
218
|
-
},
|
219
|
-
"exclusiveGroups": [
|
220
|
-
"bldg"
|
221
|
-
]
|
222
|
-
},
|
223
|
-
{
|
224
|
-
"name": "lod2_solar_year",
|
225
|
-
"url": "https://berlin.virtualcitymap.de/datasource-data/0866fca1-2b8c-4ac9-b478-cdeffc8d7f38",
|
226
|
-
"type": "CesiumTilesetLayer",
|
227
|
-
"datasourceId": "amZp7Mb68MiyesBQN",
|
228
|
-
"activeOnStartup": false,
|
229
|
-
"allowPicking": true,
|
230
|
-
"screenSpaceError": 16,
|
231
|
-
"screenSpaceErrorMobile": 32,
|
232
|
-
"hiddenObjectIds": [],
|
233
|
-
"copyright": {
|
234
|
-
"provider": "virtualcitySOLAR",
|
235
|
-
"url": "https://www.virtualcitysystems.de/citygml-solarpotenzialanalyse-3d-stadtmodell",
|
236
|
-
"year": "2018"
|
237
|
-
},
|
238
|
-
"exclusiveGroups": [
|
239
|
-
"bldg"
|
240
|
-
]
|
241
|
-
},
|
242
|
-
{
|
243
|
-
"name": "lod_solar_year_shading",
|
244
|
-
"url": "https://berlin.virtualcitymap.de/datasource-data/f931caec-8003-44b1-8e9c-5b5f646f1c11",
|
245
|
-
"type": "CesiumTilesetLayer",
|
246
|
-
"datasourceId": "BZGcFpindygyuDwGq",
|
247
|
-
"activeOnStartup": false,
|
248
|
-
"allowPicking": true,
|
249
|
-
"screenSpaceError": 16,
|
250
|
-
"screenSpaceErrorMobile": 32,
|
251
|
-
"hiddenObjectIds": [],
|
252
|
-
"copyright": {
|
253
|
-
"provider": "virtualcitySOLAR",
|
254
|
-
"url": "https://www.virtualcitysystems.de/citygml-solarpotenzialanalyse-3d-stadtmodell",
|
255
|
-
"year": "2018"
|
256
|
-
},
|
257
|
-
"exclusiveGroups": [
|
258
|
-
"bldg"
|
259
|
-
]
|
260
|
-
},
|
261
|
-
{
|
262
|
-
"name": "citygml_trees_solar",
|
263
|
-
"url": "https://berlin.virtualcitymap.de/datasource-data/ac0d0ab1-1ae3-43b4-93c6-020cb37f7b2b",
|
264
|
-
"type": "CesiumTilesetLayer",
|
265
|
-
"datasourceId": "2a8i9Jra6Lm6gGQJ5",
|
266
|
-
"activeOnStartup": false,
|
267
|
-
"allowPicking": true,
|
268
|
-
"screenSpaceError": 16,
|
269
|
-
"screenSpaceErrorMobile": 32,
|
270
|
-
"hiddenObjectIds": [],
|
271
|
-
"copyright": {
|
272
|
-
"provider": "",
|
273
|
-
"url": "",
|
274
|
-
"year": ""
|
275
|
-
},
|
276
|
-
"exclusiveGroups": [
|
277
|
-
"tree"
|
278
|
-
]
|
279
|
-
}
|
280
|
-
],
|
281
|
-
"viewpoints": [
|
282
|
-
{
|
283
|
-
"groundPosition": [
|
284
|
-
13.35948,
|
285
|
-
52.51442,
|
286
|
-
33.35758
|
287
|
-
],
|
288
|
-
"pitch": -46.14,
|
289
|
-
"type": "ViewPoint",
|
290
|
-
"heading": 359.84,
|
291
|
-
"distance": 3267.86,
|
292
|
-
"name": "pointcloud",
|
293
|
-
"animate": true
|
294
|
-
},
|
295
|
-
{
|
296
|
-
"groundPosition": [
|
297
|
-
13.50914,
|
298
|
-
52.62997,
|
299
|
-
65.46385
|
300
|
-
],
|
301
|
-
"cameraPosition": [
|
302
|
-
13.5097,
|
303
|
-
52.62178,
|
304
|
-
781.65344
|
305
|
-
],
|
306
|
-
"pitch": -38.14,
|
307
|
-
"type": "ViewPoint",
|
308
|
-
"heading": 357.64,
|
309
|
-
"distance": 1159.67,
|
310
|
-
"name": "changedetection",
|
311
|
-
"animate": true
|
312
|
-
},
|
313
|
-
{
|
314
|
-
"type": "ViewPoint",
|
315
|
-
"name": "kaiser_wilhelm_gedächtniskirche",
|
316
|
-
"distance": 1403.6527954713483,
|
317
|
-
"cameraPosition": [
|
318
|
-
13.335352247346847,
|
319
|
-
52.504711542,
|
320
|
-
1439.1391871096814
|
321
|
-
],
|
322
|
-
"groundPosition": [
|
323
|
-
13.335352247390913,
|
324
|
-
52.504711544012196,
|
325
|
-
35.48639164026276
|
326
|
-
],
|
327
|
-
"heading": 360,
|
328
|
-
"pitch": -90,
|
329
|
-
"roll": 0,
|
330
|
-
"animate": true
|
331
|
-
},
|
332
|
-
{
|
333
|
-
"type": "ViewPoint",
|
334
|
-
"name": "oberbaumbrücke",
|
335
|
-
"distance": 1733.4812812488267,
|
336
|
-
"cameraPosition": [
|
337
|
-
13.446640011241168,
|
338
|
-
52.502524758282966,
|
339
|
-
1768.8521694627193
|
340
|
-
],
|
341
|
-
"groundPosition": [
|
342
|
-
13.446640014248556,
|
343
|
-
52.50252476179635,
|
344
|
-
35.370888214475826
|
345
|
-
],
|
346
|
-
"heading": 360,
|
347
|
-
"pitch": -90,
|
348
|
-
"roll": 0,
|
349
|
-
"animate": true
|
350
|
-
},
|
351
|
-
{
|
352
|
-
"type": "ViewPoint",
|
353
|
-
"name": "flughafen_ber",
|
354
|
-
"distance": 6450.326141140612,
|
355
|
-
"cameraPosition": [
|
356
|
-
13.515559210543072,
|
357
|
-
52.36279910784842,
|
358
|
-
6492.919065252887
|
359
|
-
],
|
360
|
-
"groundPosition": [
|
361
|
-
13.515558935672018,
|
362
|
-
52.3627993630547,
|
363
|
-
42.59292420206033
|
364
|
-
],
|
365
|
-
"heading": 360,
|
366
|
-
"pitch": -90,
|
367
|
-
"roll": 0,
|
368
|
-
"animate": true
|
369
|
-
},
|
370
|
-
{
|
371
|
-
"type": "ViewPoint",
|
372
|
-
"name": "euref_campus",
|
373
|
-
"distance": 463.7064949271509,
|
374
|
-
"cameraPosition": [
|
375
|
-
13.356384398240062,
|
376
|
-
52.47789793339715,
|
377
|
-
297.22260731547095
|
378
|
-
],
|
379
|
-
"groundPosition": [
|
380
|
-
13.355488770218217,
|
381
|
-
52.481330548847595,
|
382
|
-
41.46396807950598
|
383
|
-
],
|
384
|
-
"heading": 350.9487894837291,
|
385
|
-
"pitch": -33.475339640184025,
|
386
|
-
"roll": 359.9648328660937,
|
387
|
-
"animate": true
|
388
|
-
},
|
389
|
-
{
|
390
|
-
"type": "ViewPoint",
|
391
|
-
"name": "europacity",
|
392
|
-
"distance": 784.4892150356735,
|
393
|
-
"cameraPosition": [
|
394
|
-
13.37677810572692,
|
395
|
-
52.52180221431084,
|
396
|
-
422.71148045551297
|
397
|
-
],
|
398
|
-
"groundPosition": [
|
399
|
-
13.36907856919656,
|
400
|
-
52.52557724308259,
|
401
|
-
15.498146231644832
|
402
|
-
],
|
403
|
-
"heading": 308.79618691277153,
|
404
|
-
"pitch": -31.273617806373675,
|
405
|
-
"roll": 359.830023073689,
|
406
|
-
"animate": true
|
407
|
-
},
|
408
|
-
{
|
409
|
-
"type": "ViewPoint",
|
410
|
-
"name": "upper_west",
|
411
|
-
"distance": 378.9684151048121,
|
412
|
-
"cameraPosition": [
|
413
|
-
13.336209148039057,
|
414
|
-
52.50595499405514,
|
415
|
-
216.8593550798796
|
416
|
-
],
|
417
|
-
"groundPosition": [
|
418
|
-
13.331866878885652,
|
419
|
-
52.50458158159935,
|
420
|
-
34.321978261273664
|
421
|
-
],
|
422
|
-
"heading": 242.60267744079613,
|
423
|
-
"pitch": -28.795962866780794,
|
424
|
-
"roll": 359.81169632176426,
|
425
|
-
"animate": true
|
426
|
-
},
|
427
|
-
{
|
428
|
-
"type": "ViewPoint",
|
429
|
-
"name": "tegel",
|
430
|
-
"distance": 955.4595809846163,
|
431
|
-
"cameraPosition": [
|
432
|
-
13.285960945895809,
|
433
|
-
52.54673550265861,
|
434
|
-
627.6405329919243
|
435
|
-
],
|
436
|
-
"groundPosition": [
|
437
|
-
13.289252434219392,
|
438
|
-
52.55315725595927,
|
439
|
-
34.05533446379186
|
440
|
-
],
|
441
|
-
"heading": 17.349816372226854,
|
442
|
-
"pitch": -38.41127341964261,
|
443
|
-
"roll": 0.0709408893473591,
|
444
|
-
"animate": true
|
445
|
-
},
|
446
|
-
{
|
447
|
-
"type": "ViewPoint",
|
448
|
-
"name": "citywest",
|
449
|
-
"distance": 1536,
|
450
|
-
"cameraPosition": [
|
451
|
-
13.34683,
|
452
|
-
52.5001,
|
453
|
-
831.64539
|
454
|
-
],
|
455
|
-
"heading": 308.82,
|
456
|
-
"pitch": -31.28,
|
457
|
-
"roll": 359.83,
|
458
|
-
"animate": true
|
459
|
-
},
|
460
|
-
{
|
461
|
-
"type": "ViewPoint",
|
462
|
-
"name": "spreeraum",
|
463
|
-
"distance": 1810,
|
464
|
-
"cameraPosition": [
|
465
|
-
13.43302,
|
466
|
-
52.49344,
|
467
|
-
974.96324
|
468
|
-
],
|
469
|
-
"heading": 12.63,
|
470
|
-
"pitch": -31.28,
|
471
|
-
"roll": 359.83,
|
472
|
-
"animate": true
|
473
|
-
},
|
474
|
-
{
|
475
|
-
"type": "ViewPoint",
|
476
|
-
"name": "plannings2010",
|
477
|
-
"distance": 1873,
|
478
|
-
"cameraPosition": [
|
479
|
-
13.36251,
|
480
|
-
52.51218,
|
481
|
-
768.65202
|
482
|
-
],
|
483
|
-
"heading": 12.63,
|
484
|
-
"pitch": -23.1,
|
485
|
-
"roll": 359.83,
|
486
|
-
"animate": true
|
487
|
-
},
|
488
|
-
{
|
489
|
-
"type": "ViewPoint",
|
490
|
-
"name": "pp_solar",
|
491
|
-
"cameraPosition": [
|
492
|
-
13.372478299069217,
|
493
|
-
52.505740785220674,
|
494
|
-
591.188656405889
|
495
|
-
],
|
496
|
-
"groundPosition": [
|
497
|
-
13.376231541201832,
|
498
|
-
52.50901730139795,
|
499
|
-
35.18074796926147
|
500
|
-
],
|
501
|
-
"distance": 712.0686998402006,
|
502
|
-
"heading": 34.95045433027544,
|
503
|
-
"pitch": -51.33904105613322,
|
504
|
-
"roll": 0.17115067480664065,
|
505
|
-
"animate": true
|
506
|
-
}
|
507
|
-
],
|
508
|
-
"plugins": [
|
509
|
-
]
|
510
|
-
}
|