Skip to content

Commit c5a214f

Browse files
added test tiles and the 3dwebmapclient project v 2.0.0
1 parent 500a551 commit c5a214f

File tree

9,771 files changed

+935983
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,771 files changed

+935983
-0
lines changed

.vscode/settings.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.activeBackground": "#fa1b49",
4+
"activityBar.background": "#fa1b49",
5+
"activityBar.foreground": "#e7e7e7",
6+
"activityBar.inactiveForeground": "#e7e7e799",
7+
"activityBarBadge.background": "#155e02",
8+
"activityBarBadge.foreground": "#e7e7e7",
9+
"commandCenter.border": "#e7e7e799",
10+
"sash.hoverBorder": "#fa1b49",
11+
"statusBar.background": "#dd0531",
12+
"statusBar.foreground": "#e7e7e7",
13+
"statusBarItem.hoverBackground": "#fa1b49",
14+
"statusBarItem.remoteBackground": "#dd0531",
15+
"statusBarItem.remoteForeground": "#e7e7e7",
16+
"titleBar.activeBackground": "#dd0531",
17+
"titleBar.activeForeground": "#e7e7e7",
18+
"titleBar.inactiveBackground": "#dd053199",
19+
"titleBar.inactiveForeground": "#e7e7e799"
20+
},
21+
"peacock.color": "#dd0531"
22+
}

3dcitydb-web-map-2.0.0.zip

27.7 MB
Binary file not shown.
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* 3DCityDB-Web-Map
3+
* http://www.3dcitydb.org/
4+
*
5+
* Copyright 2015 - 2024
6+
* Chair of Geoinformatics
7+
* Technical University of Munich, Germany
8+
* https://www.gis.bgu.tum.de/
9+
*
10+
* The 3DCityDB-Web-Map is jointly developed with the following
11+
* cooperation partners:
12+
*
13+
* virtualcitySYSTEMS GmbH, Berlin <http://www.virtualcitysystems.de/>
14+
*
15+
* Licensed under the Apache License, Version 2.0 (the "License");
16+
* you may not use this file except in compliance with the License.
17+
* You may obtain a copy of the License at
18+
*
19+
* http://www.apache.org/licenses/LICENSE-2.0
20+
*
21+
* Unless required by applicable law or agreed to in writing, software
22+
* distributed under the License is distributed on an "AS IS" BASIS,
23+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24+
* See the License for the specific language governing permissions and
25+
* limitations under the License.
26+
*/
27+
28+
.gps-button-main,
29+
.gps-button-main:hover {
30+
background-image: url(../images/GPS_main.png);
31+
background-size: cover;
32+
background-position: center center;
33+
background-repeat: no-repeat;
34+
}
35+
36+
.gps-button-single,
37+
.gps-button-single:hover {
38+
background-image: url(../images/GPS_single.png);
39+
background-size: cover;
40+
background-position: center center;
41+
background-repeat: no-repeat;
42+
}
43+
44+
.gps-button-live-ori,
45+
.gps-button-live-ori:hover {
46+
background: #0074D9 url(../images/GPS_on_ori.png);
47+
background-size: cover;
48+
background-position: center center;
49+
background-repeat: no-repeat;
50+
}
51+
52+
.gps-button-live-pos-ori,
53+
.gps-button-live-pos-ori:hover {
54+
background: #0074D9 url(../images/GPS_on_pos_ori.png);
55+
background-size: cover;
56+
background-position: center center;
57+
background-repeat: no-repeat;
58+
}
59+
60+
.gps-button-off,
61+
.gps-button-off:hover {
62+
background-image: url(../images/GPS_off.png);
63+
background-size: cover;
64+
background-position: center center;
65+
background-repeat: no-repeat;
66+
}
Lines changed: 207 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,207 @@
1+
/*
2+
* 3DCityDB-Web-Map
3+
* http://www.3dcitydb.org/
4+
*
5+
* Copyright 2015 - 2017
6+
* Chair of Geoinformatics
7+
* Technical University of Munich, Germany
8+
* https://www.gis.bgu.tum.de/
9+
*
10+
* The 3DCityDB-Web-Map is jointly developed with the following
11+
* cooperation partners:
12+
*
13+
* virtualcitySYSTEMS GmbH, Berlin <http://www.virtualcitysystems.de/>
14+
*
15+
* Licensed under the Apache License, Version 2.0 (the "License");
16+
* you may not use this file except in compliance with the License.
17+
* You may obtain a copy of the License at
18+
*
19+
* http://www.apache.org/licenses/LICENSE-2.0
20+
*
21+
* Unless required by applicable law or agreed to in writing, software
22+
* distributed under the License is distributed on an "AS IS" BASIS,
23+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24+
* See the License for the specific language governing permissions and
25+
* limitations under the License.
26+
*/
27+
28+
.infobox-full {
29+
position: fixed;
30+
top: 45px;
31+
left: 0;
32+
right: 0;
33+
height: 100%;
34+
width: 100%;
35+
/* max-height: none;
36+
max-width: none;*/
37+
overflow: hidden;
38+
z-index: 9999;
39+
}
40+
41+
.infobox-full iframe {
42+
max-height: 100%!important;
43+
height: 100%;
44+
}
45+
46+
.infobox-full-ios {
47+
overflow: auto!important;
48+
-webkit-overflow-scrolling: touch!important;
49+
}
50+
51+
.infobox-full-ios iframe {
52+
min-height: 100%;
53+
max-width: 100%;
54+
}
55+
56+
/*------------------------------------------------------*/
57+
.uiMenu-full {
58+
max-height: 77vh!important;
59+
width: 95vw!important;
60+
overflow: hidden;
61+
position: absolute;
62+
margin-top: 15px;
63+
}
64+
65+
.uiMenu-full-ios {
66+
overflow: auto!important;
67+
-webkit-overflow-scrolling: touch!important;
68+
}
69+
70+
.toolbox-full {
71+
width: 98%!important;
72+
}
73+
74+
.citydb_long_container-full {
75+
margin-left: 0!important;
76+
margin-right: 0!important;
77+
}
78+
79+
.citydb_short_container-full {
80+
width: 50%!important;
81+
}
82+
83+
/*------------------------------------------------------*/
84+
.distance-legend-mobile {
85+
position: absolute;
86+
bottom: 35px;
87+
right: 0%;
88+
}
89+
90+
.loadingIndicator-tile-mobile {
91+
display: none;
92+
height: 3px;
93+
width: 100%;
94+
position: absolute;
95+
bottom: 0%;
96+
overflow: hidden;
97+
background-color: white;
98+
}
99+
.loadingIndicator-tile-mobile:before{
100+
display: block;
101+
position: absolute;
102+
content: "";
103+
left: -200px;
104+
width: 200px;
105+
height: 3px;
106+
background-color: #0074D9;
107+
animation: loading 1s linear infinite;
108+
}
109+
@keyframes loading {
110+
from {left: -200px; width: 30%;}
111+
50% {width: 30%;}
112+
70% {width: 70%;}
113+
80% {left: 50%;}
114+
95% {left: 120%;}
115+
to {left: 100%;}
116+
}
117+
118+
/*------------------------------------------------------*/
119+
.loadingIndicator-mobile {
120+
display: block;
121+
position: absolute;
122+
top: 50%;
123+
left: 50%;
124+
margin-left: -25px;
125+
margin-top: -50px;
126+
width: 50px;
127+
height: 100px;
128+
text-align: center;
129+
font-size: 25px;
130+
}
131+
132+
.loadingIndicator-mobile > div {
133+
background-color: white;
134+
height: 100%;
135+
width: 5px;
136+
margin: 2px;
137+
display: inline-block;
138+
-webkit-animation: sk-stretchdelay 0.6s infinite ease-in-out;
139+
animation: sk-stretchdelay 0.6s infinite ease-in-out;
140+
}
141+
142+
.loadingIndicator-mobile .rect1 {
143+
opacity: 10%;
144+
-webkit-animation-delay: -0.55s;
145+
animation-delay: -0.55s;
146+
}
147+
148+
.loadingIndicator-mobile .rect2 {
149+
opacity: 40%;
150+
-webkit-animation-delay: -0.5s;
151+
animation-delay: -0.5s;
152+
}
153+
154+
.loadingIndicator-mobile .rect3 {
155+
opacity: 70%;
156+
-webkit-animation-delay: -0.45s;
157+
animation-delay: -0.45s;
158+
}
159+
160+
.loadingIndicator-mobile .rect4 {
161+
opacity: 100%;
162+
-webkit-animation-delay: -0.4s;
163+
animation-delay: -0.4s;
164+
}
165+
166+
@-webkit-keyframes sk-stretchdelay {
167+
0%, 40%, 100% { -webkit-transform: scaleY(0.2) }
168+
20% { -webkit-transform: scaleY(1.0) }
169+
}
170+
171+
@keyframes sk-stretchdelay {
172+
0%, 40%, 100% {
173+
transform: scaleY(0.2);
174+
-webkit-transform: scaleY(0.2);
175+
} 20% {
176+
transform: scaleY(1.0);
177+
-webkit-transform: scaleY(1.0);
178+
}
179+
}
180+
181+
.cesium-widget-errorPanel-content-mobile {
182+
max-width: 80%!important;
183+
max-height: 70%!important;
184+
}
185+
186+
/*------------------------------------------------------*/
187+
.splash-wrapper-mobile {
188+
top: 2%!important;
189+
right: 2%!important;
190+
bottom: 2%!important;
191+
left: 2%!important;
192+
width: 96%!important;
193+
max-width: 96%!important;
194+
height: 96%!important;
195+
max-height: 96%!important;
196+
padding: 0!important;
197+
margin: 0!important;
198+
border-radius: 0.3rem!important;
199+
}
200+
.splash-wrapper-mobile-ios {
201+
overflow: auto!important;
202+
-webkit-overflow-scrolling: touch!important;
203+
}
204+
.splashscreen-buttons-mobile {
205+
right: 3%!important;
206+
bottom: 3%!important;
207+
}
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
.splash-iframe-container {
2+
3+
}
4+
5+
.splash-iframe-container iframe {
6+
display: block;
7+
border: 0;
8+
left: 0;
9+
position: absolute;
10+
top: 0;
11+
width: 100%;
12+
height: 100%;
13+
padding: -15px;
14+
}
15+
16+
.splash-wrapper {
17+
display: none;
18+
background-color: #ffffff;
19+
border-radius: 1rem;
20+
margin: 0 auto;
21+
padding: 1rem;
22+
width: 80%;
23+
height: 80%;
24+
max-height: 90%;
25+
top: 10%;
26+
left: 10%;
27+
position: absolute;
28+
z-index: 99990;
29+
}
30+
31+
#opaque_curtain {
32+
display: block;
33+
width: 100%;
34+
height: 100%;
35+
background-color: grey;
36+
}
37+
38+
#not_show_again_button, #close_button {
39+
font-family: "Trebuchet MS", Helvetica, sans-serif;
40+
background-color: white;
41+
border-color: green;
42+
border-radius: 5px;
43+
color: black;
44+
padding: 15px;
45+
text-align: center;
46+
text-decoration: none;
47+
display: inline-block;
48+
font-size: medium;
49+
margin: 4px 2px;
50+
}
51+
52+
.splashscreen-buttons {
53+
position: absolute;
54+
right: 12%;
55+
bottom: 10%;
56+
z-index: 99999;
57+
display: none;
58+
}
59+
60+
#not_show_again_button:hover {
61+
background-color: green;
62+
color: white;
63+
}
64+
65+
#close_button:hover {
66+
background-color: green;
67+
color: white;
68+
}
289 KB
Loading
20.3 KB
Loading
33.9 KB
Binary file not shown.
106 KB
Loading
34.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)