Some map view changes
modified: public_html/gmap.html modified: public_html/script.js modified: public_html/style.css
This commit is contained in:
parent
bf4ccaca06
commit
e6080e259f
|
@ -10,15 +10,14 @@
|
|||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
<body onload="initialize()">
|
||||
<div id="map_canvas" style="width:80%; height:100%"></div>
|
||||
<div id="map_canvas"></div>
|
||||
<div id="info">
|
||||
<div>
|
||||
<h1>Dump1090 - <span id="utcTime">00:00:00</span> UTC</h1>
|
||||
<h1>Dump1090 - <span id="utcTime">00:00:00</span> UTC <a href="#" onClick="resetMap();">Reset Map</a></h1>
|
||||
<p id="geninfo"></p>
|
||||
<p id="selinfo">Click on a plane for info.</p>
|
||||
<p id="tabinfo"></p>
|
||||
</div>
|
||||
<div id="info_footer"><a href="#" onClick="resetMap();">Reset Map</a></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -29,7 +29,8 @@ function getIconForPlane(plane) {
|
|||
};
|
||||
}
|
||||
|
||||
function selectPlane() {
|
||||
function selectPlane(selectedPlane) {
|
||||
if (selectedPlane.length) this.planehex = selectedPlane;
|
||||
if (!Planes[this.planehex]) return;
|
||||
var old = Selected;
|
||||
Selected = this.planehex;
|
||||
|
@ -38,7 +39,9 @@ function selectPlane() {
|
|||
Planes[old].marker.setIcon(getIconForPlane(Planes[old]));
|
||||
}
|
||||
Planes[Selected].marker.setIcon(getIconForPlane(Planes[Selected]));
|
||||
|
||||
refreshSelectedInfo();
|
||||
refreshTableInfo();
|
||||
}
|
||||
|
||||
function refreshGeneralInfo() {
|
||||
|
@ -52,16 +55,29 @@ function refreshSelectedInfo() {
|
|||
var i = document.getElementById('selinfo');
|
||||
var p = Planes[Selected];
|
||||
|
||||
if (!p) return;
|
||||
var html = 'ICAO: '+p.hex+'<br>';
|
||||
if (p.flight.length) {
|
||||
html += '<b>'+p.flight+'</b><br>';
|
||||
if (!p) {
|
||||
p = {};
|
||||
p.flight = "";
|
||||
p.hex = "";
|
||||
p.squawk = "";
|
||||
p.altitude = "0";
|
||||
p.speed = "0";
|
||||
p.lat = "lat";
|
||||
p.lon = "lon";
|
||||
p.messages = "0";
|
||||
p.seen = "0";
|
||||
}
|
||||
html += 'Altitude: '+p.altitude+' feet<br>';
|
||||
html += 'Speed: '+p.speed+' knots<br>';
|
||||
html += 'Coordinates: '+p.lat+', '+p.lon+'<br>';
|
||||
html += 'Messages: '+p.messages+'<br>';
|
||||
html += 'Seen: '+p.seen+' sec<br>';
|
||||
|
||||
var html = '<table id="selectedinfo">';
|
||||
html += '<tr><td colspan=2><b>'+p.flight+' </b></td></tr>';
|
||||
html += '<tr><td>ICAO:</td><td>'+p.hex+'</td></tr>';
|
||||
html += '<tr><td>Squawk:</td><td>'+p.squawk+'</td></tr>';
|
||||
html += '<tr><td>Altitude:</td><td>'+p.altitude+' feet</td></tr>';
|
||||
html += '<tr><td>Speed:</td><td>'+p.speed+' knots</td></tr>';
|
||||
html += '<tr><td>Coordinates:</td><td>'+p.lat+', '+p.lon+'</td></tr>';
|
||||
html += '<tr><td>Messages:</td><td>'+p.messages+'</td></tr>';
|
||||
html += '<tr><td>Seen:</td><td>'+p.seen+' sec</td></tr>';
|
||||
html += '</table>';
|
||||
i.innerHTML = html;
|
||||
}
|
||||
|
||||
|
@ -69,21 +85,23 @@ function refreshTableInfo() {
|
|||
var i = document.getElementById('tabinfo');
|
||||
|
||||
var html = '<table id="tableinfo" width="100%">';
|
||||
html += '<thead style="background-color: #CCCCCC;"><td>Flight</td><td align="right">Altitude</td><td align="center">Speed</td><td align="center">Track</td><td>Lat</td><td>Long</td><td>Seen</td><td>Msgs</td></thead>';
|
||||
html += '<thead style="background-color: #CCCCCC;">';
|
||||
html += '<td>Flight</td><td>Squawk</td><td align="right">Altitude</td>';
|
||||
html += '<td align="center">Speed</td><td align="center">Track</td><td>Seen</td>';
|
||||
html += '<td>Msgs</td></thead>';
|
||||
for (var p in Planes) {
|
||||
if (p == Selected) {
|
||||
html += '<tr style="background-color: #F0F0F0;">';
|
||||
html += '<tr style="background-color: #E0E0E0;">';
|
||||
} else {
|
||||
html += '<tr>';
|
||||
html += '<tr id="tableinforow" onClick="selectPlane(\''+p+'\');">';
|
||||
}
|
||||
html += '<td>' + Planes[p].flight + '</td>';
|
||||
html += '<td align="right">' + Planes[p].squawk + '</td>';
|
||||
html += '<td align="right">' + Planes[p].altitude + '</td>';
|
||||
html += '<td align="center">' + Planes[p].speed + '</td>';
|
||||
html += '<td align="center">' + Planes[p].track + '</td>';
|
||||
html += '<td>' + Planes[p].lat + '</td>';
|
||||
html += '<td>' + Planes[p].lon + '</td>';
|
||||
html += '<td align="center">' + Planes[p].seen + '</td>';
|
||||
html += '<td align="center">' + Planes[p].messages + '</td>';
|
||||
html += '<td align="right">' + Planes[p].speed + '</td>';
|
||||
html += '<td align="right">' + Planes[p].track + '</td>';
|
||||
html += '<td align="right">' + Planes[p].seen + '</td>';
|
||||
html += '<td align="right">' + Planes[p].messages + '</td>';
|
||||
html += '</tr>';
|
||||
}
|
||||
html += '</table>';
|
||||
|
@ -120,6 +138,7 @@ function fetchData() {
|
|||
myplane.track = plane.track;
|
||||
myplane.flight = plane.flight;
|
||||
myplane.seen = plane.seen;
|
||||
myplane.squawk = plane.squawk;
|
||||
myplane.messages = plane.messages;
|
||||
if (myplane.hex == Selected)
|
||||
refreshSelectedInfo();
|
||||
|
@ -157,7 +176,6 @@ function fetchData() {
|
|||
}
|
||||
|
||||
refreshTableInfo() ;
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -180,19 +198,6 @@ function printTime() {
|
|||
}
|
||||
}
|
||||
|
||||
function placeFooter() {
|
||||
var windHeight = $(window).height();
|
||||
var footerHeight = $('#info_footer').height();
|
||||
var offset = parseInt(windHeight) - parseInt(footerHeight);
|
||||
|
||||
var footerWidth = parseInt($('#info_footer').width());
|
||||
var infoWidth = parseInt($('#info').width());
|
||||
var marginLeft = parseInt((infoWidth / 2) - (footerWidth / 2));
|
||||
|
||||
$('#info_footer').css('top', offset);
|
||||
$('#info_footer').css('margin-left', marginLeft);
|
||||
}
|
||||
|
||||
function resetMap() {
|
||||
localStorage['CenterLat'] = 45.0;
|
||||
localStorage['CenterLon'] = 9.0;
|
||||
|
@ -203,6 +208,13 @@ function resetMap() {
|
|||
document.getElementById('selinfo').innerHTML = '';
|
||||
}
|
||||
|
||||
function resizeMap() {
|
||||
var windWidth = parseInt($(window).width());
|
||||
var infoWidth = parseInt($('#info').width());
|
||||
var mapWidth = windWidth - infoWidth;
|
||||
$('#map_canvas').css('width', mapWidth);
|
||||
}
|
||||
|
||||
function initialize() {
|
||||
var mapTypeIds = [];
|
||||
for(var type in google.maps.MapTypeId) {
|
||||
|
@ -230,14 +242,8 @@ function initialize() {
|
|||
maxZoom: 18
|
||||
}));
|
||||
|
||||
// show footer at info-area
|
||||
$(function(){
|
||||
$(window).resize(function(e){
|
||||
placeFooter();
|
||||
});
|
||||
placeFooter();
|
||||
// hide it before it's positioned
|
||||
$('#info_footer').css('display','inline');
|
||||
$(window).resize(function(e){
|
||||
resizeMap();
|
||||
});
|
||||
|
||||
// Listener for newly created Map
|
||||
|
@ -250,6 +256,13 @@ function initialize() {
|
|||
localStorage['ZoomLvl'] = Map.getZoom();
|
||||
});
|
||||
|
||||
google.maps.event.addListener(Map, 'click', function() {
|
||||
selectPlane("xyzxyz"); // Select not valid ICAO24 address to clear selection.
|
||||
Selected = null;
|
||||
refreshSelectedInfo();
|
||||
refreshTableInfo();
|
||||
});
|
||||
|
||||
// Setup our timer to poll from the server.
|
||||
window.setInterval(function() {
|
||||
fetchData();
|
||||
|
@ -260,4 +273,8 @@ function initialize() {
|
|||
window.setInterval(function() {
|
||||
printTime();
|
||||
}, 250);
|
||||
|
||||
refreshGeneralInfo();
|
||||
refreshSelectedInfo();
|
||||
resizeMap();
|
||||
}
|
||||
|
|
|
@ -1,39 +1,44 @@
|
|||
html { height: 100% }
|
||||
body { height: 100%; margin: 0; padding: 0 }
|
||||
#map_canvas { height: 100% }
|
||||
#info {
|
||||
position: absolute;
|
||||
width:20%;
|
||||
height:100%;
|
||||
bottom:0px;
|
||||
right:0px;
|
||||
top:0px;
|
||||
background-color: white;
|
||||
border-left:1px #666 solid;
|
||||
font-family:Helvetica;
|
||||
}
|
||||
#info div {
|
||||
padding:0px;
|
||||
padding-left:10px;
|
||||
margin:0px;
|
||||
}
|
||||
#info div h1 {
|
||||
margin-top:10px;
|
||||
font-size:16px;
|
||||
}
|
||||
#info div p {
|
||||
font-size:14px;
|
||||
color:#333;
|
||||
}
|
||||
#info_footer {
|
||||
position: absolute;
|
||||
display: none;
|
||||
text-align: center;
|
||||
padding:0px;
|
||||
margin:0px;
|
||||
}
|
||||
#tableinfo {
|
||||
font-size: x-small;
|
||||
font-family: monospace;
|
||||
html { height: 100%; }
|
||||
body { height: 100%; margin: 0; padding: 0; }
|
||||
|
||||
#map_canvas {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#info {
|
||||
position: absolute;
|
||||
width: 300px;
|
||||
height: 100%;
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
background-color: white;
|
||||
border-left: 1px #666 solid;
|
||||
font-family: Helvetica;
|
||||
}
|
||||
|
||||
#info div {
|
||||
padding: 0px;
|
||||
padding-left: 10px;
|
||||
margin:0px;
|
||||
}
|
||||
|
||||
#info div h1 {
|
||||
margin-top: 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
#info div p {
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
#tableinfo {
|
||||
font-size: x-small;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
#tabinfo {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue