--- a/labs/stopBrowser.kml.php +++ b/labs/stopBrowser.kml.php @@ -33,15 +33,16 @@ list($bbox_south, $bbox_west, $bbox_north, $bbox_east) = explode(",", $bbox); // west, south, east, north include ('../include/common.inc.php'); -$debugOkay = Array(); -$contents = getNearbyStops((($bbox_west + $bbox_east) / 2), ($bbox_south + $bbox_north) / 2, 50, 3000); +$debugOkay = Array(); // disable debugging output even on dev server +//$contents = getNearbyStops((($bbox_west + $bbox_east) / 2), ($bbox_south + $bbox_north) / 2, 50, 3000); foreach ($contents as $stop) { $description = 'http://bus.lambdacomplex.org/' . 'stop.php?stopid=' . $stop['stop_id'] . "
"; $trips = getStopTripsWithTimes($stop['stop_id'], "", "", "", 3); if ($trips) { foreach ($trips as $key => $row) { if ($key < 3) { - $description .= $row['route_short_name'] . ' ' . $row['route_long_name'] . ' @ ' . $row['arrival_time'] . "
"; + $destination = getTripDestination($row['trip_id']); + $description .= $row['route_short_name'] . ' ' . $destination['stop_name'] . ' @ ' . $row['arrival_time'] . "
"; } } } else {