Commit ee5defa1 authored by Joe TS Dell's avatar Joe TS Dell
Browse files

update

parent e51d8c93
/* Remove Cesium Clock and Credit */
.cesium-credit-textContainer {
display: none!important;
}
.cesium-credit-expand-link {
display: none!important;
}
.cesium-viewer-animationContainer {
display: none!important;
}
.cesium-viewer-bottom {
display: none!important;
}
.form-group-inmenu {
padding-left: 45px!important;
}
.aside .aside-primary {
background-color: #39405f;
}
\ No newline at end of file
<html lang="en">
<head>
<meta charset="utf-8">
<script src="https://cesium.com/downloads/cesiumjs/releases/1.80/Build/Cesium/Cesium.js"></script>
<link href="https://cesium.com/downloads/cesiumjs/releases/1.80/Build/Cesium/Widgets/widgets.css" rel="stylesheet">
<link href="./globe.css" rel="stylesheet">
</head>
<body>
<div id="cesiumContainer" style="width: 100%; height:100%"></div>
<script>
var viewer = new Cesium.Viewer('cesiumContainer', {
baseLayerPicker: false,
vrButton: false,
geocoder: false,
navigationHelpButton: false,
selectionIndicator: true,
// shadows: true,
timeline: false,
sceneModePicker: false,
homeButton: false,
fullscreenButton: false,
backgroundColor: Cesium.Color.WHITE,
// infoBox: false,
// terrainExaggeration: 1.5,
});
var scene = viewer.scene;
var clock = viewer.clock;
var referenceFramePrimitive;
var rotatioSpeed;
var lastNow;
var spinRate = 0.5;
viewer.scene.skyBox.destroy();
viewer.scene.skyBox = undefined;
viewer.scene.sun.destroy();
viewer.scene.sun = undefined;
viewer.scene.skyAtmosphere.destroy();
viewer.scene.skyAtmosphere = undefined;
viewer.scene.backgroundColor = new Cesium.Color(255, 255, 255);
function spinIt(scene, time) {
var now = Date.now();
var spinRate = 0.05;
var delta = (now - lastNow) / 1000;
lastNow = now;
viewer.scene.camera.rotate(Cesium.Cartesian3.UNIT_Z, spinRate * delta);
}
function spinGlobe(viewer, spin_rate) {
lastNow = Date.now();
viewer.scene.postRender.addEventListener(spinIt);
}
spinGlobe(viewer);
</script>
</body>
</html>
\ No newline at end of file
......@@ -132,8 +132,7 @@
<div class="container">
<div class="linesearch" style="width:100%">
<div class="col-md-4">
<h2 id="rgc_publication"><i class="fas fa-book"></i> Our Publication</h2>
<p id="rgc_publicationdesc" class="grey-text w-responsive mx-auto mb-5">Our Publication ...</p>
<h2 id="rgc_publication"><i class="fas fa-book"></i> Publications</h2>
</div>
<div class="col-md-5"></div>
<div class="col-md-4" style="float:right">
......@@ -150,7 +149,7 @@
Promoting Objective and Subjective Safety for Cyclists in Metropolitan Areas. In Innovations for Metropolitan Areas (pp. 273–284). Springer
Berlin Heidelberg. https://doi.org/10.1007/978-3-662-60806-7_21
</li> -->
<h5>2020</h5>
<!-- <h5>2020</h5>
<li>
Santhanavanich, T., Wuerstle, P., Silberer, J., Loidl, V., Rodrigues, P., and Coors, V.:
<a href="https://doi.org/10.5194/isprs-annals-VI-4-W2-2020-143-2020 ">3D SAFE ROUTING NAVIGATION APPLICATION FOR
......@@ -166,7 +165,7 @@
<li>...</li>
<br>
<h5>2019</h5>
<li>...</li>
<li>...</li> -->
</div>
<div class="container" id="cont_paper">
......
......@@ -66,17 +66,21 @@ function addpaper(item) {
doi +
'<br>' +
ExploreHTML +
'<button type="button" class="btn btn-outline-danger btn-circle" data-toggle="collapse" data-target="#bibtex-paper-vision" aria-expanded="false" aria-controls="bibtex-paper-vision"> <i class="fas fa-code"></i> </button>BIB' +
//BIBTEX BUTTON
// '<button type="button" class="btn btn-outline-danger btn-circle" data-toggle="collapse" data-target="#bibtex-paper-vision" aria-expanded="false" aria-controls="bibtex-paper-vision"> <i class="fas fa-code"></i> </button>BIB' +
YouTubeHTML +
'</small>' +
'<pre id="bibtex-paper-vision" class="pre-style collapse">@article{santhanavanich20203d,' +
'title={3D SAFE ROUTING NAVIGATION APPLICATION FOR PEDESTRIANS AND CYCLISTS BASED ON OPEN SOURCE TOOLS.},' +
'author={Santhanavanich, T and Wuerstle, P and Silberer, J and Loidl, V and Rodrigues, P and Coors, V},' +
'journal={ISPRS Annals of Photogrammetry, Remote Sensing \& Spatial Information Sciences},' +
'volume={6},' +
'year={2020}' +
'}' +
'}</pre>' +
// BIBTEX area
// '<pre id="bibtex-paper-vision" class="pre-style collapse">@article{santhanavanich20203d,' +
// 'title={3D SAFE ROUTING NAVIGATION APPLICATION FOR PEDESTRIANS AND CYCLISTS BASED ON OPEN SOURCE TOOLS.},' +
// 'author={Santhanavanich, T and Wuerstle, P and Silberer, J and Loidl, V and Rodrigues, P and Coors, V},' +
// 'journal={ISPRS Annals of Photogrammetry, Remote Sensing \& Spatial Information Sciences},' +
// 'volume={6},' +
// 'year={2020}' +
// '}' +
// '}</pre>' +
'</div>' +
'</div>' +
'</div>' +
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment