1
0
Fork 0
satnogsmap/templates/index.html

52 lines
2.3 KiB
HTML

<head>
<script src="https://cesiumjs.org/releases/1.57/Build/Cesium/Cesium.js"></script>
<link href="https://cesiumjs.org/releases/1.57/Build/Cesium/Widgets/widgets.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<style>
#overlay {
position: absolute;
left: 10px;
top: 10px;
background-color: rgba(0, 0, 0, 1);
color: white;
font-family: monospace;
padding: 1em;
}
</style>
<div id="cesiumContainer" style="width: 100%; height:100%"></div>
<div id="overlay"><div><span id="credit"></span></div></div>
<script>
var timeElement = document.getElementById("credit");
var timeNode = document.createTextNode("");
timeElement.appendChild(timeNode)
timeNode.nodeValue = "SpaceCruft! SatNOGS"
Online = Cesium.CzmlDataSource.load("/czml")
Cesium.Ion.defaultAccessToken = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIwYmEwOTc5YS01N2I3LTRhYmQtOGE0MS1lNTkyMWU2ZmM3YWUiLCJpZCI6Njg1OCwic2NvcGVzIjpbImFzciIsImdjIl0sImlhdCI6MTU0NzU5ODkxOX0.p4alNyuyt_Eufuo8xX_SB6HKHuSixBTxgiVpD6UGI3Y';
var viewer = new Cesium.Viewer('cesiumContainer',{shadows:true,timeline:false,vrButton:false,homeButton:false,animation:false,baseLayerPicker:false,navigationInstructionsInitiallyVisible:false,navigationHelpButton:false,imageryProvider :new Cesium.MapboxImageryProvider({
mapId: 'mapbox.streets',
accessToken: 'pk.eyJ1IjoiY2hpYmlsbCIsImEiOiJjanZ6bmZjenEwMjdzM3luMXMxd3FzenMwIn0.RF4gf01lBWmUiXZFZwUcbA'
})});
viewer.terrainProvider = Cesium.createWorldTerrain();
viewer.scene.globe.shadows=Cesium.ShadowMode.CAST_ONLY
viewer.scene.globe.enableLighting = true
viewer.dataSources.add(Online)
const download = async () => {
Online = await Cesium.CzmlDataSource.load("/czml")
}
setInterval(function(){
download()
update()
}, 1000*60*15);
function update(){
viewer.dataSources.removeAll()
viewer.dataSources.add(Online)
}
viewer._bottomContainer.innerText = ""
</script>
Visual work licensed <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">CC by SA 4.0</a>.
<a href="https://gitlab.com/chibill/satnogsmap/tree/master">Source Code</a> by William Gaylord KD9KCK is AGPL.
This is a <A HREF="https://spacecruft.org/spacecruft/satnogsmap">SpaceCruft Fork</A>.