-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<title>Neightborhood Map | Udacity Front-end Nanodegree Project</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div id="content">
<div id="menu-icon-fb">
<img src="menu.svg" alt="Menu icon" data-bind="click: toggleMenu">
</div>
<div id="menu" data-bind="attr: {class: menuPane}">
<div id="header">
<div id="top-header">
<img src="menu.svg" alt="Menu icon" data-bind="click: toggleMenu">
<h1>Coffee List</h1>
</div>
<div id="bottom-header">
<div id="search">
<input type="text" data-bind="value: query, valueUpdate: 'keyup'">
</div>
</div>
</div>
<div id="listing">
<ul id="list-items" data-bind="foreach: searchList">
<li class="list-text" data-bind="text: title, click: function(){$parent.showMarkerWindow(id, location)}"></li>
</ul>
</div>
</div>
<div id="map"></div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<script src="js/app.js" type="text/javascript"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAaF-EZnbQP1TKUfisbQQIlhVVCbFmnEfo&callback=initMap" async defer onerror="mapOnError()"></script>
</body>
</html>