-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (31 loc) · 1.24 KB
/
index.html
File metadata and controls
48 lines (31 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<title>Zomato interface maps</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/stylesheet.css"/>
</head>
<body>
<div class="side-bar-layout" id="sidebar">
<input type="text" id="search" oninput="dropdownData(this)" />
<select id="filter-list" onchange="setfilter(this)">
</select>
<div id="toggleMarker">
<a href="#" class="toggler off"> </a>
<p id="toggletooltip">Toggle this switch to add marker</p>
</div>
<div id="metro-data">
</div>
</div>
<div class="maps-content-layout">
<div id="map-canvas"></div>
</div>
<p id="metroIdentify">
No Metro Selected
</p>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=drawing&key=AIzaSyCqPwD-lQNxWqoHMPX9_0UckQlfBVlPVeY&sensor=FALSE"></script>
<script src="js/javascript.js"></script>
</body>
</html>