-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (32 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Project</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<nav>
<div id="burger" data-bind="click: burgerIcon">☰</div>
</nav>
</header>
<div id="container">
<aside id="places-list">
<input id="filter" type="text" placeholder="Enter Location From List" data-bind="textInput: searchValue ,valueUpdate: 'afterkeydown'">
<ul data-bind="foreach: filterList">
<li data-bind="text: title, click: clickAble"></li>
</ul>
</aside>
<!--Section that my map will show in we give it id /map/ to select it-->
<main id="map"></main>
</div>
<script src="js/lib/jquery.min.js"></script>
<script src="js/lib/knockout-3.4.2.js"></script>
<script src="js/list-data.js"></script>
<script src="js/list-view.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDPZjhRY2jUckGQNh0f_tc7jo2dw18GRz4&libraries=geometry,drawing&v=3&callback=initMap" onerror="errorHandlingMap()">
</script>
</body>
</html>