-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 2.04 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Neighbourhood Map Track</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,100,300,700">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body data-bind="css: toggleMenu">
<div class="header">
<a href="#" class="menu-icon-link" data-bind="click: function(){menuStatus(!menuStatus())}">
<i class="icon-list"></i>
</a>
<h1 class="header-title">NeighBourHood Map Track</h1>
</div>
<div class="slide-menu">
<div class="form-group">
<input class="form-control" type="text" data-bind="textInput: filterText, valueUpdate: 'keyup'" placeholder="Filter Locations">
</div>
<div class="list-group" data-bind="foreach: filter()">
<a class="list-group-item" href="#" data-bind="text: name, click: $parent.showInfoWindowWhenClicked, css: {active: $index() === $parent.activeListItemIndex()}"></a>
</div>
</div>
<div class="map"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.0/knockout-min.js"></script>
<script src="js/app.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?callback=initMap"
onerror="alert('Unable to Load Google Map, Check Internet Connection.')" async defer></script>
<script>
</script>
</body>
</html>