forked from ylureault/navitia-explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstop_schedules.html
48 lines (48 loc) · 2.51 KB
/
stop_schedules.html
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="./assets/css/global.css" />
<link rel="stylesheet" href="./assets/leaflet_0.7.7/leaflet.css" />
<link rel="stylesheet" href="./assets/jquery-ui.js_1.11.4/jquery-ui.css">
</head>
<body onload="stop_schedules_onLoad();">
<div id="params_div"></div>
<form id="form1">
<div id="menu_div"></div>
<div id="params">
<h1>Fiche horaire à l'arrêt</h1>
<label for="stop_area_name">Zone d'arrêt : </label>
<input id="stop_area_name" name="stop_area_name" type="text"> <input id="stop_area_id" name="stop_area_id" type="hidden">
<label for="stop_point_name">Point d'arrêt : </label>
<input id="stop_point_name" name="stop_point_name" type="text" disabled> <input id="stop_point_id" name="stop_point_id" type="hidden">
date : <input type="texte" id="date" name="date" size="5"> heure : <input type="texte" id="heure" name="heure" size="1">
<input type="button" value="Rechercher" onclick="document.forms[0].submit()">
</div>
</form>
<div id="content">
Chaque colonne du tableau correspond à la grille horaire d'un parcours à un poteau d'arrêt.
<table width="100%" height="500px" border="1">
<tr>
<td width="50%" valign="top" style="overflow:scroll;">
<div id="stop_schedules_div"></div>
</td>
<td width="50%">
<div id="map-canvas" style="width:100%;height: 100%"></div>
</td>
</tr>
</table>
<div>
</div>
<div id="footer" class="footer">
github: <a href="https://github.com/canaltp/navitia-explorer">canaltp/navitia-explorer</a><br/>
<a href="http://www.navitia.io/"><img src='./assets/img/Navitia_logo.png'></a>
<a href="http://www.canaltp.fr/"><img src='./assets/img/canaltp_logo.png' ></a>
</div>
<script type="text/javascript" src="./assets/jquery/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="./assets/leaflet_0.7.7/leaflet.js"></script>
<script type="text/javascript" src="./assets/jquery-ui.js_1.11.4/jquery-ui.js"></script>
<script type="text/javascript" src="./assets/js/lib.js"></script>
<script type="text/javascript" src="./assets/js/menu.js"></script>
<script type="text/javascript" src="./assets/js/stop_schedules.js"></script>
</body>
</html>