@@ -14,7 +14,9 @@ |
||
14 | 14 | $arrival_airport = filter_input(INPUT_GET,'arrival_airport',FILTER_SANITIZE_STRING); |
15 | 15 | if (isset($_GET['departure_airport']) && isset($_GET['arrival_airport'])) { |
16 | 16 | $spotter_array = $Spotter->getSpotterDataByRoute($departure_airport, $arrival_airport, "0,1", $sort); |
17 | -} else $spotter_array = array(); |
|
17 | +} else { |
|
18 | + $spotter_array = array(); |
|
19 | +} |
|
18 | 20 | |
19 | 21 | if (!empty($spotter_array)) |
20 | 22 | { |
@@ -14,7 +14,9 @@ |
||
14 | 14 | $arrival_airport = filter_input(INPUT_GET,'arrival_airport',FILTER_SANITIZE_STRING); |
15 | 15 | if (isset($_GET['departure_airport']) && isset($_GET['arrival_airport'])) { |
16 | 16 | $spotter_array = $Spotter->getSpotterDataByRoute($departure_airport, $arrival_airport, "0,1", $sort); |
17 | -} else $spotter_array = array(); |
|
17 | +} else { |
|
18 | + $spotter_array = array(); |
|
19 | +} |
|
18 | 20 | |
19 | 21 | if (!empty($spotter_array)) |
20 | 22 | { |
@@ -53,7 +53,12 @@ discard block |
||
53 | 53 | } else { |
54 | 54 | for (var i = 0; i < viewer.dataSources.get(dsn).entities.values.length; i++) { |
55 | 55 | var entity = viewer.dataSources.get(dsn).entities.values[i]; |
56 | - if (parseInt(entity.lastupdate) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) print $globalMapRefresh*2000; else print '60000'; ?>)) { |
|
56 | + if (parseInt(entity.lastupdate) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) { |
|
57 | + print $globalMapRefresh*2000; |
|
58 | +} else { |
|
59 | + print '60000'; |
|
60 | +} |
|
61 | +?>)) { |
|
57 | 62 | viewer.dataSources.get(dsn).entities.remove(entity); |
58 | 63 | } else { |
59 | 64 | //console.log(parseInt(entity.lastupdate)+' > '+Math.floor(Date.now()-100)); |
@@ -127,7 +132,12 @@ discard block |
||
127 | 132 | function(){ |
128 | 133 | updateMarineData(); |
129 | 134 | } |
130 | - ,<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000; else print '30000'; ?>); |
|
135 | + ,<?php if (isset($globalMapRefresh)) { |
|
136 | + print $globalMapRefresh*1000; |
|
137 | +} else { |
|
138 | + print '30000'; |
|
139 | +} |
|
140 | +?>); |
|
131 | 141 | } else { |
132 | 142 | var clockViewModel = new Cesium.ClockViewModel(viewer.clock); |
133 | 143 | var animationViewModel = new Cesium.AnimationViewModel(clockViewModel); |
@@ -3,11 +3,18 @@ discard block |
||
3 | 3 | require_once('../require/class.Language.php'); |
4 | 4 | |
5 | 5 | // Compressed GeoJson is used if true |
6 | -if (!isset($globalJsonCompress)) $compress = true; |
|
7 | -else $compress = $globalJsonCompress; |
|
6 | +if (!isset($globalJsonCompress)) { |
|
7 | + $compress = true; |
|
8 | +} else { |
|
9 | + $compress = $globalJsonCompress; |
|
10 | +} |
|
8 | 11 | |
9 | -if (isset($_GET['ident'])) $ident = filter_input(INPUT_GET,'ident',FILTER_SANITIZE_STRING); |
|
10 | -if (isset($_GET['flightaware_id'])) $flightaware_id = filter_input(INPUT_GET,'flightaware_id',FILTER_SANITIZE_STRING); |
|
12 | +if (isset($_GET['ident'])) { |
|
13 | + $ident = filter_input(INPUT_GET,'ident',FILTER_SANITIZE_STRING); |
|
14 | +} |
|
15 | +if (isset($_GET['flightaware_id'])) { |
|
16 | + $flightaware_id = filter_input(INPUT_GET,'flightaware_id',FILTER_SANITIZE_STRING); |
|
17 | +} |
|
11 | 18 | ?> |
12 | 19 | |
13 | 20 | |
@@ -72,9 +79,12 @@ discard block |
||
72 | 79 | |
73 | 80 | function update_airportsLayer() { |
74 | 81 | <?php |
75 | - if (isset($_COOKIE['AirportZoom'])) $getZoom = $_COOKIE['AirportZoom']; |
|
76 | - else $getZoom = '7'; |
|
77 | -?> |
|
82 | + if (isset($_COOKIE['AirportZoom'])) { |
|
83 | + $getZoom = $_COOKIE['AirportZoom']; |
|
84 | + } else { |
|
85 | + $getZoom = '7'; |
|
86 | + } |
|
87 | + ?> |
|
78 | 88 | if (typeof airportsLayer != 'undefined') { |
79 | 89 | if (map.hasLayer(airportsLayer) == true) { |
80 | 90 | map.removeLayer(airportsLayer); |
@@ -290,9 +300,13 @@ discard block |
||
290 | 300 | if (callsign != ""){ markerLabel += callsign; } |
291 | 301 | if (departure_airport_code != "" && arrival_airport_code != "" && departure_airport_code != "NA" && arrival_airport_code != "NA"){ markerLabel += ' ( '+departure_airport_code+' - '+arrival_airport_code+' )'; } |
292 | 302 | <?php |
293 | - if (isset($_COOKIE['IconColor'])) $IconColor = $_COOKIE['IconColor']; |
|
294 | - elseif (isset($globalAircraftIconColor)) $IconColor = $globalAircraftIconColor; |
|
295 | - else $IconColor = '1a3151'; |
|
303 | + if (isset($_COOKIE['IconColor'])) { |
|
304 | + $IconColor = $_COOKIE['IconColor']; |
|
305 | + } elseif (isset($globalAircraftIconColor)) { |
|
306 | + $IconColor = $globalAircraftIconColor; |
|
307 | + } else { |
|
308 | + $IconColor = '1a3151'; |
|
309 | + } |
|
296 | 310 | if (!isset($ident) && !isset($flightaware_id)) { |
297 | 311 | ?> |
298 | 312 | info_update(feature.properties.fc); |
@@ -340,7 +354,12 @@ discard block |
||
340 | 354 | <?php |
341 | 355 | } else { |
342 | 356 | ?> |
343 | - var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000); |
|
357 | + var movingtime = Math.round(<?php if (isset($archiveupdatetime)) { |
|
358 | + print $archiveupdatetime*1000; |
|
359 | +} else { |
|
360 | + print $globalMapRefresh*1000+20000; |
|
361 | +} |
|
362 | +?>+feature.properties.sqt*1000); |
|
344 | 363 | return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{ |
345 | 364 | <?php |
346 | 365 | } |
@@ -382,7 +401,12 @@ discard block |
||
382 | 401 | <?php |
383 | 402 | } else { |
384 | 403 | ?> |
385 | - var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000); |
|
404 | + var movingtime = Math.round(<?php if (isset($archiveupdatetime)) { |
|
405 | + print $archiveupdatetime*1000; |
|
406 | +} else { |
|
407 | + print $globalMapRefresh*1000+20000; |
|
408 | +} |
|
409 | +?>+feature.properties.sqt*1000); |
|
386 | 410 | return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{ |
387 | 411 | <?php |
388 | 412 | } |
@@ -422,7 +446,12 @@ discard block |
||
422 | 446 | <?php |
423 | 447 | } else { |
424 | 448 | ?> |
425 | - var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000); |
|
449 | + var movingtime = Math.round(<?php if (isset($archiveupdatetime)) { |
|
450 | + print $archiveupdatetime*1000; |
|
451 | +} else { |
|
452 | + print $globalMapRefresh*1000+20000; |
|
453 | +} |
|
454 | +?>+feature.properties.sqt*1000); |
|
426 | 455 | return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{ |
427 | 456 | <?php |
428 | 457 | } |
@@ -759,13 +788,23 @@ discard block |
||
759 | 788 | if (isset($archive) && $archive) { |
760 | 789 | ?> |
761 | 790 | //then load it again every 30 seconds |
762 | - // var reload = setInterval(function(){if (noTimeout) getLiveData(0)},<?php if (isset($globalMapRefresh)) print ($globalMapRefresh*1000)/2; else print '15000'; ?>); |
|
791 | + // var reload = setInterval(function(){if (noTimeout) getLiveData(0)},<?php if (isset($globalMapRefresh)) { |
|
792 | + print ($globalMapRefresh*1000)/2; |
|
793 | +} else { |
|
794 | + print '15000'; |
|
795 | +} |
|
796 | +?>); |
|
763 | 797 | reloadPage = setInterval(function(){if (noTimeout) getLiveData(0)},<?php print $archiveupdatetime*1000; ?>); |
764 | 798 | <?php |
765 | 799 | } else { |
766 | 800 | ?> |
767 | 801 | //then load it again every 30 seconds |
768 | - reloadPage = setInterval(function(){if (noTimeout) getLiveData(0)},<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000; else print '30000'; ?>); |
|
802 | + reloadPage = setInterval(function(){if (noTimeout) getLiveData(0)},<?php if (isset($globalMapRefresh)) { |
|
803 | + print $globalMapRefresh*1000; |
|
804 | +} else { |
|
805 | + print '30000'; |
|
806 | +} |
|
807 | +?>); |
|
769 | 808 | var currentdate = new Date(); |
770 | 809 | var currentyear = new Date().getFullYear(); |
771 | 810 | var begindate = new Date(Date.UTC(currentyear,11,24,2,0,0,0)); |
@@ -777,7 +816,12 @@ discard block |
||
777 | 816 | if (!((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) && (isset($_COOKIE['polar']) && $_COOKIE['polar'] == 'true')) { |
778 | 817 | ?> |
779 | 818 | update_polarLayer(); |
780 | - setInterval(function(){map.removeLayer(polarLayer);update_polarLayer()},<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000*2; else print '60000'; ?>); |
|
819 | + setInterval(function(){map.removeLayer(polarLayer);update_polarLayer()},<?php if (isset($globalMapRefresh)) { |
|
820 | + print $globalMapRefresh*1000*2; |
|
821 | +} else { |
|
822 | + print '60000'; |
|
823 | +} |
|
824 | +?>); |
|
781 | 825 | <?php |
782 | 826 | } |
783 | 827 | ?> |
@@ -792,7 +836,12 @@ discard block |
||
792 | 836 | if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM)) { |
793 | 837 | ?> |
794 | 838 | update_atcLayer(); |
795 | - setInterval(function(){map.removeLayer(atcLayer);update_atcLayer()},<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000*2; else print '60000'; ?>); |
|
839 | + setInterval(function(){map.removeLayer(atcLayer);update_atcLayer()},<?php if (isset($globalMapRefresh)) { |
|
840 | + print $globalMapRefresh*1000*2; |
|
841 | +} else { |
|
842 | + print '60000'; |
|
843 | +} |
|
844 | +?>); |
|
796 | 845 | <?php |
797 | 846 | } |
798 | 847 | ?> |
@@ -53,7 +53,12 @@ discard block |
||
53 | 53 | } else { |
54 | 54 | for (var i = 0; i < viewer.dataSources.get(dsn).entities.values.length; i++) { |
55 | 55 | var entity = viewer.dataSources.get(dsn).entities.values[i]; |
56 | - if (parseInt(entity.lastupdate) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) print $globalMapRefresh*2000; else print '60000'; ?>)) { |
|
56 | + if (parseInt(entity.lastupdate) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) { |
|
57 | + print $globalMapRefresh*2000; |
|
58 | +} else { |
|
59 | + print '60000'; |
|
60 | +} |
|
61 | +?>)) { |
|
57 | 62 | viewer.dataSources.get(dsn).entities.remove(entity); |
58 | 63 | } else { |
59 | 64 | //console.log(parseInt(entity.lastupdate)+' > '+Math.floor(Date.now()-100)); |
@@ -127,7 +132,12 @@ discard block |
||
127 | 132 | function(){ |
128 | 133 | updateTrackerData(); |
129 | 134 | } |
130 | - ,<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000; else print '30000'; ?>); |
|
135 | + ,<?php if (isset($globalMapRefresh)) { |
|
136 | + print $globalMapRefresh*1000; |
|
137 | +} else { |
|
138 | + print '30000'; |
|
139 | +} |
|
140 | +?>); |
|
131 | 141 | } else { |
132 | 142 | var clockViewModel = new Cesium.ClockViewModel(viewer.clock); |
133 | 143 | var animationViewModel = new Cesium.AnimationViewModel(clockViewModel); |
@@ -5,8 +5,11 @@ discard block |
||
5 | 5 | setcookie("MapFormat",'2d'); |
6 | 6 | |
7 | 7 | // Compressed GeoJson is used if true |
8 | -if (!isset($globalJsonCompress)) $compress = true; |
|
9 | -else $compress = $globalJsonCompress; |
|
8 | +if (!isset($globalJsonCompress)) { |
|
9 | + $compress = true; |
|
10 | +} else { |
|
11 | + $compress = $globalJsonCompress; |
|
12 | +} |
|
10 | 13 | ?> |
11 | 14 | |
12 | 15 | |
@@ -142,9 +145,13 @@ discard block |
||
142 | 145 | if (callsign != ""){ markerMarineLabel += callsign; } |
143 | 146 | if (type != ""){ markerMarineLabel += ' - '+type; } |
144 | 147 | <?php |
145 | - if (isset($_COOKIE['IconColor'])) $IconColor = $_COOKIE['IconColor']; |
|
146 | - elseif (isset($globalAircraftIconColor)) $IconColor = $globalAircraftIconColor; |
|
147 | - else $IconColor = '1a3151'; |
|
148 | + if (isset($_COOKIE['IconColor'])) { |
|
149 | + $IconColor = $_COOKIE['IconColor']; |
|
150 | + } elseif (isset($globalAircraftIconColor)) { |
|
151 | + $IconColor = $globalAircraftIconColor; |
|
152 | + } else { |
|
153 | + $IconColor = '1a3151'; |
|
154 | + } |
|
148 | 155 | if (!isset($ident) && !isset($fammarine_id)) { |
149 | 156 | ?> |
150 | 157 | info_marine_update(feature.properties.fc); |
@@ -178,7 +185,12 @@ discard block |
||
178 | 185 | <?php |
179 | 186 | } else { |
180 | 187 | ?> |
181 | - var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000); |
|
188 | + var movingtime = Math.round(<?php if (isset($archiveupdatetime)) { |
|
189 | + print $archiveupdatetime*1000; |
|
190 | +} else { |
|
191 | + print $globalMapRefresh*1000+20000; |
|
192 | +} |
|
193 | +?>+feature.properties.sqt*1000); |
|
182 | 194 | return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{ |
183 | 195 | <?php |
184 | 196 | } |
@@ -227,7 +239,12 @@ discard block |
||
227 | 239 | <?php |
228 | 240 | } else { |
229 | 241 | ?> |
230 | - var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000); |
|
242 | + var movingtime = Math.round(<?php if (isset($archiveupdatetime)) { |
|
243 | + print $archiveupdatetime*1000; |
|
244 | +} else { |
|
245 | + print $globalMapRefresh*1000+20000; |
|
246 | +} |
|
247 | +?>+feature.properties.sqt*1000); |
|
231 | 248 | return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{ |
232 | 249 | <?php |
233 | 250 | } |
@@ -275,7 +292,12 @@ discard block |
||
275 | 292 | <?php |
276 | 293 | } else { |
277 | 294 | ?> |
278 | - var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000); |
|
295 | + var movingtime = Math.round(<?php if (isset($archiveupdatetime)) { |
|
296 | + print $archiveupdatetime*1000; |
|
297 | +} else { |
|
298 | + print $globalMapRefresh*1000+20000; |
|
299 | +} |
|
300 | +?>+feature.properties.sqt*1000); |
|
279 | 301 | return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{ |
280 | 302 | <?php |
281 | 303 | } |
@@ -558,14 +580,24 @@ discard block |
||
558 | 580 | if (isset($archive) && $archive) { |
559 | 581 | ?> |
560 | 582 | //then load it again every 30 seconds |
561 | -// var reload = setInterval(function(){if (noTimeout) getLiveMarineData(0)},<?php if (isset($globalMapRefresh)) print ($globalMapRefresh*1000)/2; else print '15000'; ?>); |
|
583 | +// var reload = setInterval(function(){if (noTimeout) getLiveMarineData(0)},<?php if (isset($globalMapRefresh)) { |
|
584 | + print ($globalMapRefresh*1000)/2; |
|
585 | +} else { |
|
586 | + print '15000'; |
|
587 | +} |
|
588 | +?>); |
|
562 | 589 | reloadMarinePage = setInterval(function(){if (noTimeout) getLiveMarineData(0)},<?php print $archiveupdatetime*1000; ?>); |
563 | 590 | <?php |
564 | 591 | } else { |
565 | 592 | ?> |
566 | 593 | //then load it again every 30 seconds |
567 | 594 | reloadMarinePage = setInterval( |
568 | - function(){if (noTimeout) getLiveMarineData(0)},<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000; else print '30000'; ?>); |
|
595 | + function(){if (noTimeout) getLiveMarineData(0)},<?php if (isset($globalMapRefresh)) { |
|
596 | + print $globalMapRefresh*1000; |
|
597 | +} else { |
|
598 | + print '30000'; |
|
599 | +} |
|
600 | +?>); |
|
569 | 601 | <?php |
570 | 602 | } |
571 | 603 | ?> |
@@ -5,8 +5,11 @@ discard block |
||
5 | 5 | setcookie("MapFormat",'2d'); |
6 | 6 | |
7 | 7 | // Compressed GeoJson is used if true |
8 | -if (!isset($globalJsonCompress)) $compress = true; |
|
9 | -else $compress = $globalJsonCompress; |
|
8 | +if (!isset($globalJsonCompress)) { |
|
9 | + $compress = true; |
|
10 | +} else { |
|
11 | + $compress = $globalJsonCompress; |
|
12 | +} |
|
10 | 13 | ?> |
11 | 14 | |
12 | 15 | |
@@ -143,9 +146,13 @@ discard block |
||
143 | 146 | if (callsign != ""){ markerTrackerLabel += callsign; } |
144 | 147 | if (type != ""){ markerTrackerLabel += ' - '+type; } |
145 | 148 | <?php |
146 | - if (isset($_COOKIE['IconColor'])) $IconColor = $_COOKIE['IconColor']; |
|
147 | - elseif (isset($globalAircraftIconColor)) $IconColor = $globalAircraftIconColor; |
|
148 | - else $IconColor = '1a3151'; |
|
149 | + if (isset($_COOKIE['IconColor'])) { |
|
150 | + $IconColor = $_COOKIE['IconColor']; |
|
151 | + } elseif (isset($globalAircraftIconColor)) { |
|
152 | + $IconColor = $globalAircraftIconColor; |
|
153 | + } else { |
|
154 | + $IconColor = '1a3151'; |
|
155 | + } |
|
149 | 156 | if (!isset($ident) && !isset($famtrackid)) { |
150 | 157 | ?> |
151 | 158 | info_tracker_update(feature.properties.fc); |
@@ -179,7 +186,12 @@ discard block |
||
179 | 186 | <?php |
180 | 187 | } else { |
181 | 188 | ?> |
182 | - var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000); |
|
189 | + var movingtime = Math.round(<?php if (isset($archiveupdatetime)) { |
|
190 | + print $archiveupdatetime*1000; |
|
191 | +} else { |
|
192 | + print $globalMapRefresh*1000+20000; |
|
193 | +} |
|
194 | +?>+feature.properties.sqt*1000); |
|
183 | 195 | return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{ |
184 | 196 | <?php |
185 | 197 | } |
@@ -228,7 +240,12 @@ discard block |
||
228 | 240 | <?php |
229 | 241 | } else { |
230 | 242 | ?> |
231 | - var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000); |
|
243 | + var movingtime = Math.round(<?php if (isset($archiveupdatetime)) { |
|
244 | + print $archiveupdatetime*1000; |
|
245 | +} else { |
|
246 | + print $globalMapRefresh*1000+20000; |
|
247 | +} |
|
248 | +?>+feature.properties.sqt*1000); |
|
232 | 249 | return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{ |
233 | 250 | <?php |
234 | 251 | } |
@@ -276,7 +293,12 @@ discard block |
||
276 | 293 | <?php |
277 | 294 | } else { |
278 | 295 | ?> |
279 | - var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000); |
|
296 | + var movingtime = Math.round(<?php if (isset($archiveupdatetime)) { |
|
297 | + print $archiveupdatetime*1000; |
|
298 | +} else { |
|
299 | + print $globalMapRefresh*1000+20000; |
|
300 | +} |
|
301 | +?>+feature.properties.sqt*1000); |
|
280 | 302 | return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{ |
281 | 303 | <?php |
282 | 304 | } |
@@ -559,14 +581,24 @@ discard block |
||
559 | 581 | if (isset($archive) && $archive) { |
560 | 582 | ?> |
561 | 583 | //then load it again every 30 seconds |
562 | -// var reload = setInterval(function(){if (noTimeout) getLiveTrackerData(0)},<?php if (isset($globalMapRefresh)) print ($globalMapRefresh*1000)/2; else print '15000'; ?>); |
|
584 | +// var reload = setInterval(function(){if (noTimeout) getLiveTrackerData(0)},<?php if (isset($globalMapRefresh)) { |
|
585 | + print ($globalMapRefresh*1000)/2; |
|
586 | +} else { |
|
587 | + print '15000'; |
|
588 | +} |
|
589 | +?>); |
|
563 | 590 | reloadTrackerPage = setInterval(function(){if (noTimeout) getLiveTrackerData(0)},<?php print $archiveupdatetime*1000; ?>); |
564 | 591 | <?php |
565 | 592 | } else { |
566 | 593 | ?> |
567 | 594 | //then load it again every 30 seconds |
568 | 595 | reloadTrackerPage = setInterval( |
569 | - function(){if (noTimeout) getLiveTrackerData(0)},<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000; else print '30000'; ?>); |
|
596 | + function(){if (noTimeout) getLiveTrackerData(0)},<?php if (isset($globalMapRefresh)) { |
|
597 | + print $globalMapRefresh*1000; |
|
598 | +} else { |
|
599 | + print '30000'; |
|
600 | +} |
|
601 | +?>); |
|
570 | 602 | <?php |
571 | 603 | } |
572 | 604 | ?> |
@@ -156,7 +156,12 @@ discard block |
||
156 | 156 | // viewer.dataSources.get(dsn).entities.remove(entity); |
157 | 157 | // } |
158 | 158 | //console.log(entity.lastupdate); |
159 | - if (parseInt(entity.lastupdate) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) print $globalMapRefresh*2000; else print '60000'; ?>)) { |
|
159 | + if (parseInt(entity.lastupdate) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) { |
|
160 | + print $globalMapRefresh*2000; |
|
161 | +} else { |
|
162 | + print '60000'; |
|
163 | +} |
|
164 | +?>)) { |
|
160 | 165 | // console.log('Remove an entity date'); |
161 | 166 | viewer.dataSources.get(dsn).entities.remove(entity); |
162 | 167 | } else { |
@@ -230,7 +235,12 @@ discard block |
||
230 | 235 | } else { |
231 | 236 | for (var i = 0; i < viewer.dataSources.get(dsn).entities.values.length; i++) { |
232 | 237 | var entity = viewer.dataSources.get(dsn).entities.values[i]; |
233 | - if (parseInt(entity.lastupdatesat) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) print $globalMapRefresh*2000; else print '60000'; ?>)) { |
|
238 | + if (parseInt(entity.lastupdatesat) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) { |
|
239 | + print $globalMapRefresh*2000; |
|
240 | +} else { |
|
241 | + print '60000'; |
|
242 | +} |
|
243 | +?>)) { |
|
234 | 244 | viewer.dataSources.get(dsn).entities.remove(entity); |
235 | 245 | } |
236 | 246 | } |
@@ -560,7 +570,12 @@ discard block |
||
560 | 570 | if (!((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) && (isset($_COOKIE['polar']) && $_COOKIE['polar'] == 'true')) { |
561 | 571 | ?> |
562 | 572 | update_polarLayer(); |
563 | -setInterval(function(){update_polarLayer()},<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000*2; else print '60000'; ?>); |
|
573 | +setInterval(function(){update_polarLayer()},<?php if (isset($globalMapRefresh)) { |
|
574 | + print $globalMapRefresh*1000*2; |
|
575 | +} else { |
|
576 | + print '60000'; |
|
577 | +} |
|
578 | +?>); |
|
564 | 579 | <?php |
565 | 580 | } |
566 | 581 | ?> |
@@ -656,7 +671,12 @@ discard block |
||
656 | 671 | } |
657 | 672 | } |
658 | 673 | } |
659 | - ,<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000; else print '30000'; ?>); |
|
674 | + ,<?php if (isset($globalMapRefresh)) { |
|
675 | + print $globalMapRefresh*1000; |
|
676 | +} else { |
|
677 | + print '30000'; |
|
678 | +} |
|
679 | +?>); |
|
660 | 680 | } else { |
661 | 681 | //var widget = new Cesium.CesiumWidget('archivebox'); |
662 | 682 | // var timeline = new Cesium.Timeline(viewer); |
@@ -5,8 +5,11 @@ discard block |
||
5 | 5 | setcookie("MapFormat",'2d'); |
6 | 6 | |
7 | 7 | // Compressed GeoJson is used if true |
8 | -if (!isset($globalJsonCompress)) $compress = true; |
|
9 | -else $compress = $globalJsonCompress; |
|
8 | +if (!isset($globalJsonCompress)) { |
|
9 | + $compress = true; |
|
10 | +} else { |
|
11 | + $compress = $globalJsonCompress; |
|
12 | +} |
|
10 | 13 | if (isset($_GET['archive'])) { |
11 | 14 | $archive = true; |
12 | 15 | //$archiveupdatetime = 50; |
@@ -17,8 +20,11 @@ discard block |
||
17 | 20 | //$lastupd = round(($_GET['enddate']-$_GET['begindate'])/(($_GET['during']*60)/10)); |
18 | 21 | //$lastupd = 20; |
19 | 22 | $lastupd = $_GET['archivespeed']*$archiveupdatetime; |
20 | - if (isset($_GET['enddate']) && $_GET['enddate'] != '') $enddate = $_GET['enddate']; |
|
21 | - else $enddate = time(); |
|
23 | + if (isset($_GET['enddate']) && $_GET['enddate'] != '') { |
|
24 | + $enddate = $_GET['enddate']; |
|
25 | + } else { |
|
26 | + $enddate = time(); |
|
27 | + } |
|
22 | 28 | setcookie("archive_begin",$begindate); |
23 | 29 | setcookie("archive_end",$enddate); |
24 | 30 | setcookie("archive_update",$lastupd); |
@@ -105,7 +111,17 @@ discard block |
||
105 | 111 | } |
106 | 112 | |
107 | 113 | //create the map |
108 | - map = L.map('archive-map', { zoomControl:false }).setView([<?php if (isset($latitude)) print $latitude; else print $globalCenterLatitude; ?>,<?php if (isset($longitude)) print $longitude; else print $globalCenterLongitude; ?>], zoom); |
|
114 | + map = L.map('archive-map', { zoomControl:false }).setView([<?php if (isset($latitude)) { |
|
115 | + print $latitude; |
|
116 | +} else { |
|
117 | + print $globalCenterLatitude; |
|
118 | +} |
|
119 | +?>,<?php if (isset($longitude)) { |
|
120 | + print $longitude; |
|
121 | +} else { |
|
122 | + print $globalCenterLongitude; |
|
123 | +} |
|
124 | +?>], zoom); |
|
109 | 125 | <?php |
110 | 126 | } else { |
111 | 127 | ?> |
@@ -118,9 +134,19 @@ discard block |
||
118 | 134 | || navigator.userAgent.match(/BlackBerry/i) |
119 | 135 | || navigator.userAgent.match(/Windows Phone/i)) |
120 | 136 | { |
121 | - var zoom = <?php if (isset($globalLiveZoom)) print $globalLiveZoom-1; else print '8'; ?>; |
|
137 | + var zoom = <?php if (isset($globalLiveZoom)) { |
|
138 | + print $globalLiveZoom-1; |
|
139 | +} else { |
|
140 | + print '8'; |
|
141 | +} |
|
142 | +?>; |
|
122 | 143 | } else { |
123 | - var zoom = <?php if (isset($globalLiveZoom)) print $globalLiveZoom; else print '9'; ?>; |
|
144 | + var zoom = <?php if (isset($globalLiveZoom)) { |
|
145 | + print $globalLiveZoom; |
|
146 | +} else { |
|
147 | + print '9'; |
|
148 | +} |
|
149 | +?>; |
|
124 | 150 | } |
125 | 151 | |
126 | 152 | //create the map |
@@ -145,16 +171,27 @@ discard block |
||
145 | 171 | bounds = L.latLngBounds(southWest,northEast); |
146 | 172 | //a few title layers |
147 | 173 | <?php |
148 | - if (isset($_COOKIE['MapType'])) $MapType = $_COOKIE['MapType']; |
|
149 | - else $MapType = $globalMapProvider; |
|
174 | + if (isset($_COOKIE['MapType'])) { |
|
175 | + $MapType = $_COOKIE['MapType']; |
|
176 | + } else { |
|
177 | + $MapType = $globalMapProvider; |
|
178 | + } |
|
150 | 179 | |
151 | 180 | if ($MapType == 'Mapbox') { |
152 | - if ($_COOKIE['MapTypeId'] == 'default') $MapBoxId = $globalMapboxId; |
|
153 | - else $MapBoxId = $_COOKIE['MapTypeId']; |
|
154 | -?> |
|
181 | + if ($_COOKIE['MapTypeId'] == 'default') { |
|
182 | + $MapBoxId = $globalMapboxId; |
|
183 | + } else { |
|
184 | + $MapBoxId = $_COOKIE['MapTypeId']; |
|
185 | + } |
|
186 | + ?> |
|
155 | 187 | L.tileLayer('https://{s}.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={token}', { |
156 | 188 | maxZoom: 18, |
157 | - noWrap: <?php if (isset($globalMapWrap) && !$globalMapWrap) print 'false'; else print 'true'; ?>, |
|
189 | + noWrap: <?php if (isset($globalMapWrap) && !$globalMapWrap) { |
|
190 | + print 'false'; |
|
191 | +} else { |
|
192 | + print 'true'; |
|
193 | +} |
|
194 | +?>, |
|
158 | 195 | attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' + |
159 | 196 | '<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' + |
160 | 197 | 'Imagery © <a href="http://mapbox.com">Mapbox</a>', |
@@ -166,7 +203,12 @@ discard block |
||
166 | 203 | ?> |
167 | 204 | L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { |
168 | 205 | maxZoom: 18, |
169 | - noWrap: <?php if (isset($globalMapWrap) && !$globalMapWrap) print 'false'; else print 'true'; ?>, |
|
206 | + noWrap: <?php if (isset($globalMapWrap) && !$globalMapWrap) { |
|
207 | + print 'false'; |
|
208 | +} else { |
|
209 | + print 'true'; |
|
210 | +} |
|
211 | +?>, |
|
170 | 212 | attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' + |
171 | 213 | '<a href="www.openstreetmap.org/copyright">Open Database Licence</a>' |
172 | 214 | }).addTo(map); |
@@ -212,20 +254,26 @@ discard block |
||
212 | 254 | map.addLayer(yandexLayer); |
213 | 255 | <?php |
214 | 256 | } elseif ($MapType == 'Bing-Aerial') { |
215 | - if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType','OpenStreetMap'); |
|
216 | -?> |
|
257 | + if (!isset($globalBingMapKey) || $globalBingMapKey == '') { |
|
258 | + setcookie('MapType','OpenStreetMap'); |
|
259 | + } |
|
260 | + ?> |
|
217 | 261 | var bingLayer = new L.tileLayer.bing({bingMapsKey: '<?php print $globalBingMapKey; ?>',imagerySet: 'Aerial'}); |
218 | 262 | map.addLayer(bingLayer); |
219 | 263 | <?php |
220 | 264 | } elseif ($MapType == 'Bing-Hybrid') { |
221 | - if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType','OpenStreetMap'); |
|
222 | -?> |
|
265 | + if (!isset($globalBingMapKey) || $globalBingMapKey == '') { |
|
266 | + setcookie('MapType','OpenStreetMap'); |
|
267 | + } |
|
268 | + ?> |
|
223 | 269 | var bingLayer = new L.tileLayer.bing({bingMapsKey: '<?php print $globalBingMapKey; ?>',imagerySet: 'AerialWithLabels'}); |
224 | 270 | map.addLayer(bingLayer); |
225 | 271 | <?php |
226 | 272 | } elseif ($MapType == 'Bing-Road') { |
227 | - if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType','OpenStreetMap'); |
|
228 | -?> |
|
273 | + if (!isset($globalBingMapKey) || $globalBingMapKey == '') { |
|
274 | + setcookie('MapType','OpenStreetMap'); |
|
275 | + } |
|
276 | + ?> |
|
229 | 277 | var bingLayer = new L.tileLayer.bing({bingMapsKey: '<?php print $globalBingMapKey; ?>',imagerySet: 'Road'}); |
230 | 278 | map.addLayer(bingLayer); |
231 | 279 | <?php |
@@ -273,7 +321,12 @@ discard block |
||
273 | 321 | } |
274 | 322 | } elseif ($globalBounding == 'circle') { |
275 | 323 | ?> |
276 | - var circle = L.circle([<?php print $globalCenterLatitude; ?>, <?php print $globalCenterLongitude; ?>],<?php if (isset($globalBoundingCircleSize)) print $globalBoundingCircleSize; else print '70000'; ?>,{ |
|
324 | + var circle = L.circle([<?php print $globalCenterLatitude; ?>, <?php print $globalCenterLongitude; ?>],<?php if (isset($globalBoundingCircleSize)) { |
|
325 | + print $globalBoundingCircleSize; |
|
326 | +} else { |
|
327 | + print '70000'; |
|
328 | +} |
|
329 | +?>,{ |
|
277 | 330 | color: '#92C7D1', |
278 | 331 | fillColor: '#92C7D1', |
279 | 332 | fillOpacity: 0.3, |