-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (53 loc) · 2.27 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
<!DOCTYPE html>
<html>
<head>
<title>Komme</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="styles/main.css">
<link rel="stylesheet" type="text/css" href="styles/menu.css">
<!-- <link rel="stylesheet" type="text/css" href="styles/app.css">
<link rel="stylesheet" type="text/css" href="styles/pure-drawer.css"> -->
<script src="scripts/main.js"></script>
</head>
<body>
<div id="menu_drawer">
banter
<ul id="levels">
<li><a href="#" onclick="randomizeLocation(1)">level one</a></li>
<li><a href="#" onclick="randomizeLocation(2)">level two</a></li>
<li><a href="#" onclick="randomizeLocation(3)">level three</a></li>
<li><a href="#" onclick="randomizeLocation(4)">level four</a></li>
<li><a href="#" onclick="randomizeLocation(5)">level one</a></li>
<li><a href="#" onclick="randomizeLocation(6)">level one</a></li>
<li><a href="#" onclick="randomizeLocation(7)">level one</a></li>
</ul>
</div>
<button type="button" id="menu_button" class="hamburger is-closed" onclick="show_panel('menu_drawer')" >
<span class="hamb-top"></span>
<span class="hamb-middle"></span>
<span class="hamb-bottom"></span>
</button>
<a href="index.html"><img id="logo" src="images/komme_logo.png"/></a>
<div id="pano">
<div id="floating-panel">
<div id="error" style="color:red; font-size: 10px;"></div>
<input id="address" type="textbox" value="Singapore">
<input id="submit" type="button" value="Let's Go!" onclick="hide_panel('floating-panel');return false">
<!-- <button onclick="display_latlng()">Click me</button> -->
</div>
</div>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDVLEc9NZ1OgiYLrN_M7yEg5DYZo5dM8LE&callback=initMap"></script>
<!--
<div id="pano">
<h1>Komme</h1>
</div>
<div id="floating-panel">
<input id="address" type="textbox" value="Singapore">
<input id="submit" type="button" value="Geocode">
<button onclick="display_latlng()">Click me</button>
</div>
-->
<!-- <div id="map"></div> -->
</body>
</html>