-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneighborhood-map.html
48 lines (40 loc) · 1.93 KB
/
neighborhood-map.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Davis Neighborhood</title>
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> -->
<link rel="stylesheet" href="css/lib/font-awesome/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Muli' rel='stylesheet'>
<!-- Materialize compiled and minified CSS -->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css"> -->
<!-- <link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> -->
</head>
<body>
<div class="search-container">
<div class="search-container-inner">
<span class="icon"><i class="fa fa-search"></i></span>
<input id="search-bar" data-bind="value: query, valueUpdate: 'keyup'" autocomplete="off" placeholder="Search for a place..." />
<ul class="search-list" data-bind="foreach: searchResults">
<li class="search-results" data-bind="event: { mouseover: openInfoWindow }">
<i class="fa fa-map-marker"></i>
<span data-bind="text: name"></span>
</li>
</ul>
</div>
</div>
<div class="map-container" id="map"></div>
<div class="error"></div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="http://knockoutjs.com/downloads/knockout-3.4.0.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBWMiObZMe3IEGAbcOsosINvCzbz83K8vU&callback=initMap"
onerror="googleError()">
</script>
<script src="js/changable.js"></script>
<script src="js/app.js"></script>
</body>
</html>