-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (79 loc) · 3.75 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
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<title>My hometown - Important locations for me ;)</title>
</head>
<body>
<header>
<img src="img/poa-skyline-live-trace.png" alt="Porto Alegre-RS Skyline">
<div class="header-title">
<h1>Porto Alegre - RS</h1>
</div>
</header>
<main>
<section>
<div>
<h2 class="presentation"><span>This is a map listing some of the most important locations
of my childhood and teenage years. It was quite nostalgic to build this project ;)</span></h2>
</div>
</section>
<section>
<div class="filter">
<div class="filter-text">
<h2>Filter me!</h2>
</div>
<div class="dropdown">
<div class="filter-lst">
<select data-bind="value: locationType">
<option value="all">All</option>
<option value="education">Schools</option>
<option value="sports">Sport centers & Gyms</option>
<option value="parks">Parks</option>
<option value="shops">Local Shops</option>
<option value="food">Food Places</option>
</select>
</div>
<div>
<button class="filter-btn" type="button" data-bind="click: setFilter">Show Locations!</button>
</div>
</div>
</div>
</section>
<section>
<div class="list-view">
<h3 class="list-view-title"><span>Locations</span></h3>
<div data-bind="foreach: locationList">
<div class="location-title" data-bind="text: title, click: $parent.setLocation"></div>
<p class="location-info" data-bind="text: info, visible: visibility"></p>
</div>
</div>
<div id="map" class="map-canvas"></div>
</section>
</main>
<footer>
<div class="footer-phrase">
<p>Full Stack Nanodegree Program - Project 05 - by Marcus Guidoti.
<span>Full documentation available on this
<a href="https://github.com/mguidoti/FSND-p5-neighborhood_map">repository.</a></span> Powered by:</p>
</div>
<div class="footer-logos">
<a href="http://www.foursquare.com"><img class="footer-logo" src="img/foursquare_logo_classic.png" alt="Foursquare"></a>
<a href="https://developers.google.com/places/web-service/intro"><img class="footer-logo" src="img/google_maps_logo_black.png" alt="Google Maps"></a>
</div>
</footer>
<script src="js/googlemapsstyle.js"></script>
<script src="js/googlemaps.js"></script>
<script src="js/myplaces.js"></script>
<script src="js/lib/knockout-3.5.0.js"></script>
<script src="js/lib/jquery.min.js"></script>
<script src="js/app.js"></script>
<script defer
src=
"https://maps.googleapis.com/maps/api/js?key=XXX&libraries=places&v=3&callback=initMap" onerror="googleMapsErrorHandler()">
</script>
</body>
</html>