forked from Ysurac/FlightAirMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-map.php
56 lines (36 loc) · 3.2 KB
/
about-map.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
require_once('require/class.Connection.php');
require_once('require/class.Spotter.php');
require_once('require/class.Language.php');
$title = "Live Map";
require_once('header.php');
?>
<div class="info column">
<h1>Live Map</h1>
<div class="image-right-desktop">
<img src="/images/about-live-map.png" alt="Live Map" title="Live Map" />
</div>
<p>The <a href="<?php print $globalURL; ?>">Live Map</a> is a full screen page showing the latest positions of the aircraft in near real-time in the coverage area.</p>
<p>Clicking on the aircraft icon allows you to see information about the flight, including details such as aircraft type, registration, current altitude (in both feet and Flight level), speed (in knots), heading (in degrees) and the coordinates. Additionally, the aircraft image also shows up, which is based on the registration of the aircraft, just like on the rest of the site.</p>
<p>You can also plot your own location on the map, by clicking the location icon on the left side. This way you can see the aircraft relative to your current location.</p>
<p>The information presented on the map ties into the existing database. For example, you can easily click on the airport on the map popup to go to the airport profile to see all the other flights that have been flown to/from that airport.</p>
<p> </p><p> </p>
<div class="image-right-mobile">
<img src="/images/about-mobile-live-map.png" alt="Live Map" title="Live Map" />
</div>
<h3>Mobile - Geolocation & Compass Mode</h3>
<p>The map on mobile devices has the same features as the desktop version, with one additional mode. Besides plotting your current location (using your smartphone's GPS functionailty), there is also a compass mode.</p>
<p>With the compass mode you can point with your phone into the direction of the airplane you want to see more information about, and the map will also change and point into the direction. This can be very useful when your out and about and there is a airliner flying above and you just want see more information about it.</p>
<p>Keep in mind that this isn't an app, but a mobile website. Compass mode uses the <a href="http://www.w3.org/TR/orientation-event/" target="_blank">W3C Device Orientation Specification</a> and is not supported on all mobile browsers just yet. <a href="http://caniuse.com/#feat=deviceorientation" target="_blank">Check out this link</a> to see if your mobile browser is supported.</p>
<p> </p><p> </p>
<h3>Frequently Asked Questions (FAQ)</h3>
<strong>Why is the map blank? There are no aircraft visible.</strong>
<p>A: If the map is blank that means that there are no aircraft currently flying within the coverage area.</p>
<strong>Why are there no images available in the aircraft popup?</strong>
<p>A: We get the images based on the aircraft registration. Some of our data sources don't include the aircraft registrations, so we can't get an image for that particular flight.</p>
<strong>What is the update frequency?</strong>
<p>A: The map updates automatically every minute.</p>
</div>
<?php
require_once('footer.php');
?>