-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
57 lines (50 loc) · 2.18 KB
/
Copy pathmap.html
File metadata and controls
57 lines (50 loc) · 2.18 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Map</title>
<link href="map.css" rel="stylesheet" type="text/css"/>
<link href="style.css" rel="stylesheet" type="text/css"/>
<script src="map.js"></script>
<script src="map2.js"></script>
</head>
<body>
<div id="layout">
<aside>
<h1 style="margin-left: 10px;">Contents</h1>
<div id="sidebar">
<a href="index.html" class="section">Home</a>
<a href="map.html" class="section">Map</a>
<a href="forms.html" class="section">User Survey</a>
<a href="about.html" class="section">About</a>
</div>
</aside>
<div id="content">
<h1>Public Transport</h1>
<h3>choose the bus that works the best for you!</h3>
<img id="map" src="coordinate-map.jpg" alt="map pic">
<button class="btn1" onclick="appear1(); pathFinding(2);">
<img id="red-marker" src="red-marker.png">
<span class="details1" id="popup1"><b><h2> Twisty Transit</h2></b><br> Destination: Leaning Tower of Uberland</span>
</button>
<button class="btn2" onclick="appear2(); pathFinding(0);">
<img id="red-marker" src="red-marker.png">
<span class="details2" id="popup2"><b><h2> Wonderous World of Woe</h2></b><br> Destination: Nevermore Academy</span>
</button>
<button class="btn3" onclick="appear3(); pathFinding(1);">
<img id="red-marker" src="red-marker.png">
<span class="details3" id="popup3"><b><h2> Rifty Lifty</h2></b><br> Destination: Mindless Mansion</span>
</button>
<button class="btn4" onclick="appear4(); pathFinding(4);">
<img id="red-marker" src="red-marker.png">
<span class="details4" id="popup4"><b><h2> Probstation</h2></b><br> Destination: Mock Fiji Islands</span>
</button>
<button class="btn5" onclick="appear5(); pathFinding(3);">
<img id="red-marker" src="red-marker.png">
<span class="details5" id="popup5"><b><h2> Candyland</h2></b><br> Destination: Taffy Tower</span>
</button>
</div>
</div>
</body>
</html>