This commit is contained in:
terribl 2013-05-14 13:04:31 +03:00
parent 72142fac84
commit 7b99ad5f6c

View file

@ -75,8 +75,8 @@ function selectPlane(selectedPlane) {
function refreshGeneralInfo() { function refreshGeneralInfo() {
var i = document.getElementById('geninfo'); var i = document.getElementById('geninfo');
i.innerHTML += PlanesOnMap + ' planes on map.<br>'; i.innerHTML = PlanesOnMap + ' planes on map.<br>';
i.innerHTML = PlanesOnGrid + ' planes on grid.'; i.innerHTML += PlanesOnGrid + ' planes on grid.';
} }
function refreshSelectedInfo() { function refreshSelectedInfo() {
@ -178,8 +178,8 @@ function fetchData() {
// Declare our plane that we are working with from our old data set // Declare our plane that we are working with from our old data set
var myplane = Planes[plane.hex]; var myplane = Planes[plane.hex];
// If the lat/long is not 0, we should make a marker for it // If the has valid position, we should make a marker for it
if (plane.lat != 0 && plane.lon != 0) { if (plane.validposition) {
if (myplane.marker != null) { if (myplane.marker != null) {
marker = myplane.marker; marker = myplane.marker;
var icon = marker.getIcon(); var icon = marker.getIcon();
@ -222,7 +222,7 @@ function fetchData() {
} else { } else {
// This is a new plane // This is a new plane
// Do we have a lat/long that is not 0? // Do we have a lat/long that is not 0?
if (plane.lat != 0 && plane.lon != 0) { if (plane.validposition) {
// Add new plane to map // Add new plane to map
marker = new google.maps.Marker({ marker = new google.maps.Marker({
position: new google.maps.LatLng(plane.lat, plane.lon), position: new google.maps.LatLng(plane.lat, plane.lon),
@ -242,7 +242,7 @@ function fetchData() {
} }
// If we have lat/long, we must have a marker, so lets set the marker title // If we have lat/long, we must have a marker, so lets set the marker title
if (plane.lat != 0 && plane.lon != 0) { if (plane.validposition) {
if (plane.flight.length == 0) { if (plane.flight.length == 0) {
marker.setTitle(plane.hex) marker.setTitle(plane.hex)
} else { } else {