-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.53 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
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=320, initial-scale=1">
<meta name="google-site-verification" content="cw5QZq8cVEn2kptscs5i-6KdTP9zWXwqRlfe00PG1_g" />
<title>A2Map</title>
</head>
<body>
<main class="container">
<section class="searchBar" id="searchBar">
<input class="inputbox row" id="searchbox" data-bind="textInput: searchText" placeholder="Where do you want to eat?">
<p class="selecter row">
What type of food do you like?
<select id='selectedTag' data-bind="optionsCaption: 'Choose...', options: restaurantTag, selectedOptions: selectedTag"></select>
</p>
<ul class="locationListBox row" data-bind="foreach:locationList">
<li class="locationBox" data-bind="text: title, visible:isVisible, click: showMarker"></li>
</ul>
</section>
<section>
<div class="map" id="map"></div>
</section>
</main>
<script src="js/lib/knockout-3.4.1.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/dest/api.js"></script>
<script src="js/dest/model.js"></script>
<script src="js/dest/view-model.js"></script>
<script src="js/dest/map.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBbXV6VfE-26HfZJjdDg142Ei_2aD7L65I&libraries=geometry&callback=initMap" onerror="mapError()"></script>
</body>
</html>