-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://use.fontawesome.com/c4965b9a48.js"></script>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" media="screen and (max-width: 650px)" href="css/under650.css">
<link rel="stylesheet" media="screen and (max-width: 450px)" href="css/under450.css">
<title>Neighborhood Map</title>
</head>
<body>
<!-- Define the html template for the map application and,
include the relevant script and css files. Map data requests
are retrieved in an asynchronous manner -->
<div class="container">
<div class="optionBox">
<!--<a class="close-btn"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path class= "close-icon" d="M4 4 L 8 8 M8 4 L 4 8"/></svg>
</a>-->
<i class="fa fa-window-close-o fa-lg close-btn" aria-hidden="true"></i>
<h1>New York Landmarks</h1>
<div id="location-list" class="location-list-container">
<ul data-bind="foreach: locationList">
<li class="list-item" data-bind="visible: showLocation, click: $parent.setSelectedLocation, event: {mouseout: $parent.changeMarker}, text: title"></li>
</ul>
</div>
<div class="filter-container">
<select data-bind="options: optionList, optionsCaption: 'Filter your search:', value: selectedOption"></select>
</div>
</div>
<a class="menu"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M2 6h20v3H2zm0 5h20v3H2zm0 5h20v3H2z"></path></svg>
</a>
<div id="map" class="map-container">
</div>
</div>
<script src="js/wiki.js"></script>
<script src="js/model.js"></script>
<script src="js/locationInfo.js"></script>
<script src="js/map.js"></script>
<script src="js/lib/knockout-3.4.1.js"></script>
<script src="js/lib/jquery.min.js"></script>
<script src="js/menu.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAvt-ZFcdqQltBEdpHGSHhpfUbI_Ju8Bh8&v=3&callback=initMap" onerror="errorHandling()">
</script>
</body>
</html>