-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEx3.html
35 lines (34 loc) · 995 Bytes
/
Ex3.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style3.css" />
<script src="Ex3.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
createList();
});
</script>
</head>
<body>
<header>
<div id="row1">
<label>Select the bus line: </label>
<input list="listLine" type="text" id="lineChoice" onclick="this.value ='';" onfocusin="reset()">
<datalist id="listLine">
</datalist>
<br>
<div id="infoUser">
</div>
</div>
<div id="row2">
<button id="showB" onclick="showBuses()">Show buses</button>
<button id="refresh" onclick="showBuses()">Refresh</button>
<button id="showR" onclick="drawRoute()">Show route</button>
</div>
</header>
<div id="map"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDDSbSVTBlu-BEXYavI_ra2zu38sSLdP74&callback=myMap"></script>
</body>
</html>