ShowLine

Here you can find a list of routes that have a specified line number. Click on a route's name to see a list of its bus stops and the position of the bus on the map.

Line ' . $_GET["line"] . '

'; PrintRoutes($_GET["line"]); } else { echo 'No such line. Go back?'; } function PrintRoutes($line){ echo ''; echo '
'; echo '
'; $routes = getRoutesOfLine($line); echo ''; echo ''; echo ''; foreach ($routes as $route){ echo ''; echo ''; } echo '
Route #Route Name
' . $route['id'] . '' . $route['name'] . '
'; echo '
'; ShowMap(getPositionOfLine($line,'go'),getPositionOfLine($line,'come')); echo '
'; } ?>