@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.
Files changed (165) hide show
  1. package/README.md +12 -5
  2. package/build/build.js +6 -3
  3. package/build/buildHelpers.js +12 -4
  4. package/build/buildPreview.js +7 -0
  5. package/build/getPluginProxies.js +4 -0
  6. package/config/aerowest.config.json +13 -3
  7. package/config/base.config.json +398 -219
  8. package/config/codes.config.json +397 -0
  9. package/config/dev.config.json +375 -1
  10. package/config/graphFeatureInfo.config.json +100 -0
  11. package/config/www.config.json +1232 -0
  12. package/dist/assets/{cesium.eb5667.js → cesium.21663e.js} +0 -0
  13. package/dist/assets/cesium.js +1 -1
  14. package/dist/assets/core.63242d.js +4 -0
  15. package/dist/assets/core.js +1 -1
  16. package/dist/assets/font/OFL.txt +93 -0
  17. package/dist/assets/font/TitilliumWeb-Regular.woff2 +0 -0
  18. package/dist/assets/{index.4ccd4433.js → index.44b91cfe.js} +1 -1
  19. package/dist/assets/{ol.ef03b1.js → ol.88ba9d.js} +0 -0
  20. package/dist/assets/ol.js +1 -1
  21. package/dist/assets/ui.3c2933.css +1 -0
  22. package/dist/assets/ui.3c2933.js +71 -0
  23. package/dist/assets/ui.js +1 -1
  24. package/dist/assets/vue.c897fc.js +9 -0
  25. package/dist/assets/vue.js +2 -1
  26. package/dist/assets/{vuetify.401a29.css → vuetify.147c3a.css} +1 -1
  27. package/dist/assets/{vuetify.401a29.js → vuetify.147c3a.js} +72 -72
  28. package/dist/assets/vuetify.js +2 -2
  29. package/dist/index.html +1 -5
  30. package/index.js +39 -5
  31. package/lib/vue.js +1 -0
  32. package/map.config.json +15 -6
  33. package/package.json +17 -8
  34. package/plugins/@vcmap/create-link/fallbackCreateLink.vue +71 -0
  35. package/plugins/@vcmap/create-link/index.js +83 -0
  36. package/plugins/@vcmap/create-link/package.json +6 -0
  37. package/plugins/@vcmap/pluginExample/index.js +2 -2
  38. package/plugins/@vcmap/pluginExample/pluginExampleComponent.vue +20 -3
  39. package/plugins/@vcmap/project-selector/ProjectSelectorComponent.vue +1 -1
  40. package/plugins/@vcmap/project-selector/index.js +1 -1
  41. package/plugins/@vcmap/project-selector/package.json +1 -2
  42. package/plugins/@vcmap/theme-changer/ThemeChangerComponent.vue +1 -1
  43. package/plugins/@vcmap/theme-changer/index.js +1 -1
  44. package/plugins/@vcmap/theme-changer/package.json +1 -2
  45. package/plugins/categoryTest/Categories.vue +89 -1
  46. package/plugins/categoryTest/Category.vue +1 -1
  47. package/plugins/example/index.js +10 -23
  48. package/plugins/simple-graph/README.md +51 -0
  49. package/plugins/simple-graph/SimpleGraphComponent.vue +70 -0
  50. package/plugins/simple-graph/index.js +17 -0
  51. package/plugins/simple-graph/package.json +11 -0
  52. package/plugins/simple-graph/simpleGraphView.js +76 -0
  53. package/plugins/test/editor.vue +1 -1
  54. package/plugins/test/index.js +76 -9
  55. package/plugins/test/toolbox-data.js +82 -57
  56. package/plugins/test/windowManagerExample.vue +1 -1
  57. package/src/actions/stateRefAction.js +2 -2
  58. package/src/actions/styleSelector.vue +1 -1
  59. package/src/application/Navbar.vue +13 -2
  60. package/src/application/VcsApp.vue +301 -116
  61. package/src/application/VcsMap.vue +1 -1
  62. package/src/application/VcsSettings.vue +1 -1
  63. package/src/application/vcsAppWrapper.vue +1 -0
  64. package/src/assets/font/OFL.txt +93 -0
  65. package/src/assets/font/TitilliumWeb-Regular.woff2 +0 -0
  66. package/src/components/form-inputs-controls/VcsCheckbox.vue +13 -0
  67. package/src/components/form-inputs-controls/VcsColorPicker.vue +1 -1
  68. package/src/components/form-inputs-controls/VcsRadio.vue +123 -0
  69. package/src/components/form-output/VcsFormattedNumber.vue +1 -1
  70. package/src/components/lists/VcsActionList.vue +22 -7
  71. package/src/components/lists/VcsTreeview.vue +4 -4
  72. package/src/components/lists/VcsTreeviewLeaf.vue +10 -3
  73. package/src/components/lists/VcsTreeviewSearchbar.vue +1 -2
  74. package/src/components/tables/VcsTable.vue +245 -0
  75. package/src/contentTree/LayerTree.vue +1 -1
  76. package/src/contentTree/contentTreeCollection.js +4 -4
  77. package/src/contentTree/contentTreeItem.js +9 -9
  78. package/src/contentTree/groupContentTreeItem.js +1 -1
  79. package/src/contentTree/layerContentTreeItem.js +15 -1
  80. package/src/contentTree/layerGroupContentTreeItem.js +21 -1
  81. package/src/contentTree/nodeContentTreeItem.js +1 -1
  82. package/src/featureInfo/AddressBalloonComponent.vue +47 -0
  83. package/src/featureInfo/BalloonComponent.vue +140 -0
  84. package/src/featureInfo/abstractFeatureInfoView.js +313 -0
  85. package/src/featureInfo/addressBalloonFeatureInfoView.js +118 -0
  86. package/src/featureInfo/balloonFeatureInfoView.js +151 -0
  87. package/src/featureInfo/balloonHelper.js +132 -0
  88. package/src/featureInfo/featureInfo.js +457 -0
  89. package/src/featureInfo/featureInfoInteraction.js +42 -0
  90. package/src/featureInfo/iframeFeatureInfoView.js +95 -0
  91. package/src/featureInfo/tableFeatureInfoView.js +106 -0
  92. package/src/i18n/de.js +26 -0
  93. package/src/i18n/en.js +26 -0
  94. package/src/i18n/i18nCollection.js +17 -0
  95. package/src/icons/+all.js +80 -0
  96. package/src/icons/ClippingHorizontalIcon.vue +7 -0
  97. package/src/icons/ClippingIcon.vue +7 -0
  98. package/src/icons/ClippingVerticalIcon.vue +7 -0
  99. package/src/icons/ColorPickerIcon.vue +7 -0
  100. package/src/icons/ComponentsIcon.vue +2 -2
  101. package/src/icons/DimensionsHouseIcon.vue +11 -9
  102. package/src/icons/EditIcon.vue +7 -0
  103. package/src/icons/GlobalTerrainIcon.vue +9 -0
  104. package/src/icons/GroundIcon.vue +18 -0
  105. package/src/icons/HideIcon.vue +12 -0
  106. package/src/icons/LogoutIcon.vue +7 -0
  107. package/src/icons/ObjectAttributeIcon.vue +2 -13
  108. package/src/icons/PedestrianIcon.vue +2 -3
  109. package/src/icons/PenIcon.vue +2 -9
  110. package/src/icons/PoiIcon.vue +5 -2
  111. package/src/icons/PointSelectIcon.vue +4 -2
  112. package/src/icons/QueryIcon.vue +6 -7
  113. package/src/icons/ScreenshotIcon.vue +16 -0
  114. package/src/icons/ShareIcon.vue +4 -16
  115. package/src/icons/SkipNextIcon.vue +3 -1
  116. package/src/icons/TerrainBoxIcon.vue +9 -0
  117. package/src/icons/ToolsIcon.vue +4 -30
  118. package/src/icons/UploadIcon.vue +2 -9
  119. package/src/icons/UserProfileIcon.vue +7 -0
  120. package/src/icons/UserShareIcon.vue +7 -0
  121. package/src/icons/VideoRecorderIcon.vue +5 -9
  122. package/src/icons/ViewpointFlightIcon.vue +11 -0
  123. package/src/icons/ViewpointIcon.vue +11 -0
  124. package/src/icons/Viewshed360Icon.vue +7 -0
  125. package/src/icons/ViewshedConeIcon.vue +7 -0
  126. package/src/icons/ViewshedIcon.vue +7 -0
  127. package/src/icons/WallIcon.vue +4 -9
  128. package/src/legend/legendHelper.js +193 -0
  129. package/src/legend/styleLegendItem.vue +129 -0
  130. package/src/legend/vcsLegend.vue +92 -0
  131. package/src/manager/buttonManager.js +7 -12
  132. package/src/manager/categoryManager/ComponentsManager.vue +30 -0
  133. package/src/manager/categoryManager/categoryManager.js +500 -0
  134. package/src/manager/contextMenu/contextMenuComponent.vue +43 -0
  135. package/src/manager/contextMenu/contextMenuInteraction.js +42 -0
  136. package/src/manager/contextMenu/contextMenuManager.js +197 -0
  137. package/src/manager/navbarManager.js +9 -9
  138. package/src/manager/toolbox/GroupToolboxComponent.vue +118 -0
  139. package/src/manager/toolbox/SelectToolboxComponent.vue +128 -0
  140. package/src/manager/toolbox/ToolboxManager.vue +116 -98
  141. package/src/manager/toolbox/toolboxManager.js +235 -86
  142. package/src/manager/window/WindowComponent.vue +1 -1
  143. package/src/manager/window/WindowManager.vue +5 -3
  144. package/src/manager/window/windowManager.js +118 -14
  145. package/src/navigation/mapNavigation.vue +3 -5
  146. package/src/navigation/overviewMap.js +28 -5
  147. package/src/navigation/vcsCompass.vue +1 -1
  148. package/src/pluginHelper.js +42 -10
  149. package/src/setup.js +0 -2
  150. package/src/state.js +256 -0
  151. package/src/styles/_theming.scss +0 -5
  152. package/src/styles/variables.scss +7 -0
  153. package/src/styles/vcsFont.scss +17 -0
  154. package/src/uiConfig.js +79 -0
  155. package/src/vcsUiApp.js +213 -22
  156. package/src/vuePlugins/vuetify.js +14 -4
  157. package/config/berlin.config.json +0 -510
  158. package/dist/assets/core.216494.js +0 -4
  159. package/dist/assets/ui.99a1a7.css +0 -1
  160. package/dist/assets/ui.99a1a7.js +0 -70
  161. package/dist/assets/vue-composition-api.c5aca1.js +0 -14
  162. package/dist/assets/vue-composition-api.js +0 -2
  163. package/dist/assets/vue.762edd.js +0 -9
  164. package/lib/vue-composition-api.js +0 -2
  165. package/src/manager/toolbox/ToolboxGroupComponent.vue +0 -128
@@ -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
- }