-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Neighborhood Map</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<div id="header__input">
<img id="menu__nav" src="img/menu.png" data-bind="click: toggleNav" />
<input id="search__bar" type="text" data-bind="value: query, valueUpdate:'keyup'"/>
</div>
<div id="content">
<div id="drawer" class="nav" data-bind="css: { open: navOpen }">
<ul class="nav__list" data-bind="foreach: locations">
<li class="nav__item" data-bind="text: $data.loc, visible: $data.vis() == true, click: $parent.openInfoWindow"></li>
</ul>
</div>
<div id="map" data-bind="map: locations"></div>
</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/knockout/dist/knockout.js"></script>
<script src="js/oauth.js"></script>
<script src="js/sha1.js"></script>
<script src="js/app.js" async defer></script>
<script src="http://maps.googleapis.com/maps/api/js?libraries=places&callback=initMap" onerror="mapError()" async defer ></script>
</body>
</html>