-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<title>Neighbourhood Map</title>
</head>
<body>
<div class="container">
<div class="options-box">
<h1>Sheppard Line Subway Stations</h1>
<div>
<input id="stations-filter" type="text" placeholder="Sheppard Line Subway Stations" data-bind="value: query, valueUpdate: 'afterkeydown'">
</div>
<div>
<ul id="stations-list" data-bind="foreach: stationListFiltered">
<li id="list-item" data-bind="text: $data.title, click: $parent.populateInfoWindowKo"></li>
</ul>
</div>
</div>
<div id="map"></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/lib/knockout-3.4.2.js"></script>
<script src="js/app.js"></script>
<script src=
"https://maps.googleapis.com/maps/api/js?libraries=places,geometry,drawing&key=AIzaSyASFN_TeRTp0-4nWrocvwYcytYgWbrd-AA&v=3&callback=initMap" async defer onerror="googleMapsError()">
</script>
</body>
</html>