-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlines.html
43 lines (39 loc) · 1.34 KB
/
lines.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bus Lines</title>
<link rel="icon" type="image/png" href="./img/stop-button.png">
<link rel="stylesheet" href="./style.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script src="./lines.js"></script>
</head>
<body>
<h2>Available Bus Lines</h2>
<br>
<div id="linesContainer"></div>
<div id="stopsContainer"></div>
<!-- Journey Selection Modal -->
<div id="journeyModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h3>Choose a Journey</h3>
<div id="journeyOptions"></div>
</div>
</div>
<div id="loadingOverlay">
<img src="./img/loading.gif" alt="Loading...">
</div>
<!-- Stop Location Modal -->
<div id="stopLocationModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h3>Stop Location</h3>
<div id="stopMapContainer" style="height: 400px; width: 100%;"></div>
</div>
</div>
</body>
</html>