Beginnings of live trip view kml
[busui.git] / geo / trips.kml.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
<?php
header('Content-Type: application/vnd.google-earth.kml+xml');
include ('../include/common.inc.php');
header('Content-Disposition: attachment; filename="trips.' . date('c') . '.kml"');
$debugOkay = Array(); // disable debugging output even on dev server
echo '<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom"><Document>';
echo '
      <Style id="ylw-pushpin">
    <IconStyle>
      <Icon>
        <href>http://maps.google.com/mapfiles/kml/pushpin/ylw-pushpin.png</href>
        
      </Icon>
    </IconStyle>
    
  </Style>
          <Style id="bus-pushpin">
    <IconStyle>
      <Icon>
        <href>http://google-maps-icons.googlecode.com/files/bus.png</href>
        
      </Icon>
    </IconStyle>
    
  </Style>
          <Style id="grn-pushpin">
    <IconStyle>
      <Icon>
        <href>http://maps.google.com/mapfiles/kml/pushpin/grn-pushpin.png</href>
        
      </Icon>
    </IconStyle>
  </Style>';
 
foreach (getActiveTrips() as $trip) {
    echo "\n<Placemark>\n";
    $link = curPageURL() . '/../trip.php?tripid=' . htmlspecialchars($trip['trip_id']);
    $lastStop = getTripLastStop($trip['trip_id']);
    echo "<name>" . $lastStop[0]['arrival_time'] . " @ " . htmlspecialchars($lastStop[0]['stop_name']) . "</name>";
    echo '<atom:link rel="related" href="' . $link . '"/>';
    echo '<description><![CDATA[ <a href="' . $link . '">' . htmlspecialchars($lastStop[0]['stop_name']) . "</a>]]> </description>";
    echo "<styleUrl>#bus-pushpin</styleUrl>";
    echo "<Point><coordinates>" . $lastStop[0]['stop_lon'] . "," . $lastStop[0]['stop_lat'] . "</coordinates></Point>";
 
    echo "</Placemark>\n";
}
echo "</Document></kml>\n";
?>