-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (43 loc) · 1.57 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
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset = utf-8>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Neighborhood Map Project</title>
<script type='text/javascript' src='js/error.js'></script>
<script async src="https://maps.googleapis.com/maps/api/js?v=3&key=AIzaSyCtlxQi9MDmEeLx2lvCu2z97CbFn4c3qvk" type='text/javascript' onerror="googleError()"></script>
<script type='text/javascript' src='knockout-3.4.2.js'></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="Stylesheet">
</head>
<body>
<style>
html, body {
height: 100%;
overflow-x: hidden;
overflow-y: hidden;
}
#map { height: 95%;
}
</style>
<nav role="navigation">
<input class="input" type='search' placeholder='Search' data-bind="value: query, valueUpdate: 'keyup'" autocomplete="off">
<div id="menuToggle">
<input type="checkbox">
<span></span>
<span></span>
<span></span>
<ul id="menu" data-bind="foreach: locations">
<a href="#"><li data-bind="text: name, click: openInfoWin"></li></a>
</ul>
</div>
<div class="links">
</div>
</nav>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.3.0/knockout-debug.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout.mapping/2.4.1/knockout.mapping.js"></script>
<div id="map"></div>
<script type='text/javascript' src='js/main.js'></script>
</body>
</html>