-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
71 lines (71 loc) · 2.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<meta charset="utf-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Oleo+Script+Swash+Caps">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/styling.css">
</head>
<body>
<div class="wrapper">
<nav id="sidebar">
<div class="sidebar-header">
<h1>Old Stomping Grounds</h1>
</div>
<button data-bind="click: showPins">Show Pins</button>
<button data-bind="click: hidePins">Hide Pins</button>
<ul class="list-unstyled components">
<h1>Filter List</h1>
<div class="filter">
<li><input type="radio" name="type" value="All" data-bind="checked: selectedType" />All</li>
<li><input type="radio" name="type" value="Food" data-bind="checked: selectedType" />Food </li>
<li><input type="radio" name="type" value="Entertainment" data-bind="checked: selectedType" />Entertainment</li>
<li><input type="radio" name="type" value="Body Art" data-bind="checked: selectedType" />Body Art</li>
<ul class="myLocations-list" data-bind="foreach: filteredmyLocations">
<li data-bind="text: name, click: $parent.setPin"></li>
</ul>
</div>
<hr>
<input data_bind="textInput: search" id="zoomtotext" placeholder="Search Philadelphia">
<button data-bind="click: zoomToArea">Zoom</button>
<hr>
<ul class="wiki-container" data-bind="with: currentPin, marker"></ul>
<h4 id="wiki-header">Wiki info for:</h4>
<ul class="wikiLinks">
<li data-bind="html: wikiLink"></li>
</ul>
</ul>
</nav>
<div id="content">
<div id="map"></div>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" id="sidebarCollapse" class="navbar-btn">
<i class="glyphicon glyphicon-align-left"></i>
</button>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
</div>
</div>
</nav>
</div>
</div>
<script src="js/lib/styler.js"></script>
<script src="js/app1.js"></script>
<script src="js/lib/jquery.min.js"></script>
<script src='js/lib/knockout-3.4.2.js'></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?libraries=geometry&key=AIzaSyCoVKUrpU93c6jnHHoZfEfOUx2NlqTFUbQ&v=3&callback=initMap" onerror="loadError()">
</script>
<script type="text/javascript">
$(document).ready(function () {
$('#sidebarCollapse').on('click', function () {
$('#sidebar').toggleClass('active');
});
});
</script>
</body>
</html>