-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (27 loc) · 1.23 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
<html><meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="https://www.google.com/jsapi"></script>
<script src="infobubble.js"></script>
<script src="map.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- The below div for list menu locations -->
<div id="menu">
<h1>Station List</h1>
<ul>
<li><a href="javascript:void(0)" onclick ="demo(2);">Dinh Tung's Home</a></li><br>
<li><a href="javascript:void(0)" onclick ="demo(0);">Le Hong Phong station</a></li><br>
<li><a href="javascript:void(0)" onclick ="demo(1);">DHSP station</a></li><br>
</ul>
<h1 style="height= 20px;"></h1>
</div>
<!-- The below div for Google Map -->
<div id="map"></div>
</div>
</body>
<!-- Google map API key, always put it at the bottom of web code -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD53pyz3AkLfePFwY6vVAE6WymHnL7klQA&callback=myMap"></script>
</html>