Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Sven Schneider
urbanVIS
Commits
6cbeabea
Commit
6cbeabea
authored
Oct 29, 2020
by
Sven Schneider
Browse files
fixed that the footer was shown above the cesiumviewer. missing </div>...
parent
f2023a2f
Pipeline
#1106
passed with stages
in 11 seconds
Changes
10
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
public/StreamlinesMultipart.html
View file @
6cbeabea
...
...
@@ -20,14 +20,14 @@
integrity=
"sha256-0rguYS0qgS6L4qVzANq4kjxPLtvnp5nn2nB5G1lWRv4="
crossorigin=
"anonymous"
></script>
<script
src=
"https://cesium.com/downloads/cesiumjs/releases/1.69/Build/Cesium/Cesium.js"
></script>
<script
src=
"https://d3js.org/d3-dsv.v1.min.js"
></script>
<script
src=
"https://d3js.org/d3-fetch.v1.min.js"
></script>
<script
src=
"https://d3js.org/d3-fetch.v1.min.js"
></script>
</head>
<body>
<header>
<img
src=
"imgs/icity.png"
class=
"titleFigure"
>
...
...
@@ -39,26 +39,31 @@
<script
src=
"polylineStreams.js"
></script>
<div
id=
"cesiumContainer"
class=
"pagecesium"
>
<div
id=
"legend"
>
<!-- <p>Wind speed (m/s)</p>
<div class="inner"></div>
</div> -->
<table>
<tr
style=
"height: 30px;vertical-align: top;"
>
<td
colspan=
"2"
>
Wind speed (m/s)
</td>
<td></td>
</tr>
<tr>
<td
rowspan=
"1"
style=
"height:100px;text-align:right;"
><img
src=
"imgs/colorbarJET.png"
height=
"100"
width=
"20"
>
</td>
<td>
- 3.5
<p
style=
"margin-top: 78px;"
><p>
- 0
</td>
</tr>
</table>
<div
id=
"legend"
>
<table>
<tr
style=
"height: 30px;vertical-align: top;"
>
<td
colspan=
"2"
>
Wind speed (m/s)
</td>
<td></td>
</tr>
<tr>
<td
rowspan=
"1"
style=
"height:100px;text-align:right;"
><img
src=
"imgs/colorbarJET.png"
height=
"100"
width=
"20"
>
</td>
<td>
- 3.5
<p
style=
"margin-top: 78px;"
>
<p>
- 0
</td>
</tr>
</table>
</div>
</div>
<footer>
<p
align=
"center"
>
<h5>
Copyright
©
2018 - 2020, HFT-Stuttgart. All rights reserved
</h5>
<h5>
Copyright
©
2018 - 2020, HFT-Stuttgart. All rights reserved
</h5>
</p>
</footer>
</body>
...
...
public/css/index.css
View file @
6cbeabea
...
...
@@ -9,6 +9,8 @@
/* font: 1em "Fira Sans", sans-serif; */
}
.mytab
{
display
:
inline-block
;
margin-left
:
35px
;
...
...
public/css/main.css
View file @
6cbeabea
...
...
@@ -52,6 +52,21 @@ body{
}
a
{
color
:
black
;
}
a
:hover
{
color
:
white
;
}
a
:visited
{
color
:
black
;
}
.myBtn
{
color
:
#fff
;
background-color
:
tomato
;
...
...
public/iStoeck.html
View file @
6cbeabea
...
...
@@ -58,7 +58,6 @@
</body>
</body>
</html>
\ No newline at end of file
public/iStoeckHM.html
View file @
6cbeabea
...
...
@@ -50,6 +50,7 @@
<td>
- 113006
<p
style=
"margin-top: 78px;"
><p>
- 112976
</td>
</tr>
</table>
</div>
</div>
...
...
@@ -61,7 +62,7 @@
</body>
</body>
</html>
\ No newline at end of file
public/iStoeckHMGeoJSON.html
View file @
6cbeabea
...
...
@@ -50,6 +50,7 @@
<td>
- 113006
<p
style=
"margin-top: 78px;"
><p>
- 112976
</td>
</tr>
</table>
</div>
</div>
...
...
@@ -61,7 +62,7 @@
</body>
</body>
</html>
\ No newline at end of file
public/iStoeckHexgrid_2m.html
View file @
6cbeabea
...
...
@@ -44,6 +44,7 @@
<td>
- 113006
<p
style=
"margin-top: 78px;"
><p>
- 112976
</td>
</tr>
</table>
</div>
<!-- <div id="legend">
<p>Pressure (Pa) <br>
...
...
@@ -62,7 +63,4 @@
</body>
</body>
</html>
\ No newline at end of file
public/iStoeckStreams.html
View file @
6cbeabea
...
...
@@ -48,6 +48,7 @@
</tr>
</table>
</div>
</div>
<footer>
<p
align=
"center"
>
...
...
@@ -57,7 +58,7 @@
</body>
</body>
</html>
\ No newline at end of file
public/index.html
View file @
6cbeabea
...
...
@@ -40,7 +40,7 @@
<ul
class=
"list-unstyled"
>
<!-- <li><a href="#" class="text-white">Follow on Twitter</a></li> -->
<!-- <li><a href="#" class="text-white">Like on Facebook</a></li> -->
<li><a
href=
"mailto:sven.schneider[at]hft-stuttgart.de"
class=
"text-white"
>
Email me
</a></li>
<li><a
href=
"mailto:sven.schneider[at]hft-stuttgart.de"
>
Email me
</a></li>
</ul>
</div>
</div>
...
...
public/polylineStreams.js
View file @
6cbeabea
...
...
@@ -160,7 +160,7 @@ d3.dsv(",", "results/polylines.csv").then(function(text) {
positions
:
positions
,
width
:
5.0
,
vertexFormat
:
Cesium
.
PolylineColorAppearance
.
VERTEX_FORMAT
,
colors
:
colors
,
colors
:
colors
,
colorsPerVertex
:
true
,
}),
}),
...
...
@@ -172,6 +172,24 @@ d3.dsv(",", "results/polylines.csv").then(function(text) {
})
// This adds a large arrow to the viewer. Works fine. for testing
// var purpleArrow = viewer.entities.add({
// name: "Purple straight arrow at height",
// polyline: {
// positions: Cesium.Cartesian3.fromDegreesArrayHeights([
// 9.187290, 48.784567, 400,
// 9.195991, 48.790575, 400
// ]),
// width: 50,
// arcType: Cesium.ArcType.NONE,
// material: new Cesium.PolylineArrowMaterialProperty(
// Cesium.Color.PURPLE
// ),
// },
// });
// var f = new File([""], "results/singlePolyline.csv", {type: "text/plain", lastModified: Date()})
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment