diff --git a/ShowStop.php b/ShowStop.php index 2e5a5cc..7b93ff1 100644 --- a/ShowStop.php +++ b/ShowStop.php @@ -15,15 +15,22 @@ position of the bus on the map. The other table shows upcoming arrivals. There is also a map showing the location of the requested stop.

-

' . $stop['id'] . ' - ' . $stop['name'] . '

'; + echo '

Stop ' . $stop['id'] . ' - ' . $stop['name'] . '

'; + echo ''; + echo '
'; + echo '
'; PrintRoutes($_GET["stop"]); + echo '
'; ShowMap($stop['lat'],$stop['lon']); + echo '
'; } else { echo 'No such stop. Go back?'; }