-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<title>My Neighborhood Map</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta charset="utf-8">
<!-- Compiled and minified CSS from Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- App custom CSS-->
<link rel="stylesheet" href="css/styles.css">
<!--Knockout JS, JQuery and app custom JS-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<script src="js/app.js"></script>
<script defer src="https://maps.googleapis.com/maps/api/js?v=3&key=AIzaSyBKW7N4Ky8OOLRISMt80Q9ZeRYd4R1sCXw&callback=initMap" onerror="mapError()"></script>
</head>
<body>
<div class="container main">
<header><button type="button" class="btn btn-default" id="hamburger" aria-label="Menu"> <span class="glyphicon glyphicon-menu-hamburger" aria-hidden="true"></span></button>
<span class="header-text">Kids Attactions</span>
</header>
<div class="row main">
<div class="col-xs-4" id="search-panel">
<input id="address" type="textbox" placeholder="Filter listed places" data-bind="textInput: searchText">
<div class="col-xs-12 listings">
<ul data-bind="foreach: finalLocations">
<li data-bind="text: $data.title, click: function() { highlightMarker($data.title) } "></li>
</ul>
</div>
</div>
<div class="col-xs-8" id="map"></div>
</div>
</div>
</body>
</html>