-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (114 loc) · 4.1 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Add this if you want: link rel="manifest" href="manifest.webmanifest" -->
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Bus finder Web App</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="bus.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="bus.js"></script>
</head>
<body>
<div id="mapid"></div>
<div id="bus_selected"></div>
<div id="bus_summary"> </div>
<table style="width:94%">
<tr>
<td>
<div id="accordion">
<h3 id="bus_0_title"></h3>
<div>
<p id="bus_0_p"></p>
</div>
<h3 id="bus_1_title"></h3>
<div>
<p id="bus_1_p"></p>
</div>
<h3 id="bus_2_title"></h3>
<div>
<p id="bus_2_p"></p>
</div>
<h3 id="bus_3_title"></h3>
<div>
<p id="bus_3_p"></p>
</div>
<h3 id="bus_4_title"></h3>
<div>
<p id="bus_4_p"></p>
</div>
<h3 id="bus_5_title"></h3>
<div>
<p id="bus_5_p"></p>
</div>
<h3 id="bus_6_title"></h3>
<div>
<p id="bus_6_p"></p>
</div>
<h3 id="bus_7_title"></h3>
<div>
<p id="bus_7_p"></p>
</div>
<h3 id="bus_8_title"></h3>
<div>
<p id="bus_8_p"></p>
</div>
<h3 id="bus_9_title"></h3>
<div>
<p id="bus_9_p"></p>
</div>
<h3 id="bus_10_title"></h3>
<div>
<p id="bus_10_p"></p>
</div>
<h3 id="bus_11_title"></h3>
<div>
<p id="bus_11_p"></p>
</div>
<h3 id="bus_12_title"></h3>
<div>
<p id="bus_12_p"></p>
</div>
<h3 id="bus_13_title"></h3>
<div>
<p id="bus_13_p"></p>
</div>
<h3 id="bus_14_title"></h3>
<div>
<p id="bus_14_p"></p>
</div>
<h3 id="bus_15_title"></h3>
<div>
<p id="bus_15_p"></p>
</div>
<h3 id="bus_16_title"></h3>
<div>
<p id="bus_16_p"></p>
</div>
<h3 id="bus_17_title"></h3>
<div>
<p id="bus_17_p"></p>
</div>
<h3 id="bus_18_title"></h3>
<div>
<p id="bus_18_p"></p>
</div>
<h3 id="bus_19_title"></h3>
<div>
<p id="bus_19_p"></p>
</div>
<h3 id="bus_20_title"></h3>
<div>
<p id="bus_20_p"></p>
</div>
</div>
</td>
</tr>
</table>
</body>
</html>