-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (42 loc) · 1.48 KB
/
index.html
File metadata and controls
52 lines (42 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Waterloo POI</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<div>
<a href="#" id="toggle">Toggle Filter</a>
</div>
<h1>POI Waterloo</h1>
<h4> Places of interest near the University of Waterloo</h4>
</div>
<div class="app">
<div class="words">
<div class="filter">
<input data-bind="textInput: search, valueUpdate: 'afterkeydown'" , placeholder=" Filter" />
</div>
<div class="list">
<ul data-bind="foreach: list">
<span data-bind="if: $data.setVisible">
<li data-bind="text: $data.marker.title, click: $parent.openIW"></li>
</span>
</ul>
</div>
</div>
<div id="map">
</div>
</div>
<!-- Scripts -->
<script src="javascript/jquery-3.3.1.min.js"></script>
<script src="javascript/knockout.js"></script>
<script src="javascript/app.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBDVwhi1k5rGVW_8KszK5XmR_eTdPAl7eg&v=3&callback=initApp" onerror="googleError()">
</script>
<script src="JavaScript/mobile.js"></script>
</body>
</html>