-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title>Lincoln Park Map</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="pagecont">
<aside id="sidebar" data-bind="visible: sidebarShow">
<header>Neighborhood</header>
<hr>
<input class="searchbar" data-bind="value: filterText, valueUpdate: 'afterkeydown'">
<ul data-bind="foreach: filteredItems">
<li data-bind="text: title, click: $parent.selectMarker,
event{ mouseover: $parent.highlight, mouseout: $parent.dehighlight }"></li>
</ul>
</aside>
<div data-bind="css: pageContainer">
<nav id="statusbar">
<div id="hidebutton">
<i class="fa fa-align-justify fa-lg" data-bind="click: menuAlt"></i>
</div>
</nav>
<main id="map"></main>
</div>
</div>
<script src="js/lib/knockout-3.2.0.js"></script>
<script src="js/lib/jquery.min.js"></script>
<script src="js/app.js"></script>
<script async defer src="https://maps.google.com/maps/api/js?key=AIzaSyBujt_fvybOJ-0kHoYe9NmUqLon0axdIzo&v=3&callback=initMap" onerror="mapError()">
</script>
</body>
</html>