25 lines
776 B
HTML
25 lines
776 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
data = ["T4420541",63.5,-20.0];
|
|
document.addEventListener("DOMContentLoaded", function(){
|
|
fetch('live.json')
|
|
.then((response) => response.json())
|
|
.then((data) => {
|
|
console.log(data.gps.lat, data.gps.lon, data.sonde.ser);
|
|
if( (data.sonde.ser||'')=='' && !(data.gps.lat===undefined) ) {
|
|
urlarg = '#!mz=8&mc=' + data.gps.lat + ',' + data.gps.lon
|
|
} else {
|
|
urlarg = data.sonde.ser || '';
|
|
}
|
|
id = data.sonde.ser || '';
|
|
iftxt='<iframe src="https://sondehub.org/' + urlarg + '" style="border:1px solid #00A3D3;border-radius:20px;height:98vh;width:100%"></iframe>';
|
|
document.getElementsByTagName('body')[0].innerHTML = iftxt;
|
|
})
|
|
})
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|