-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (125 loc) · 4.61 KB
/
index.html
File metadata and controls
148 lines (125 loc) · 4.61 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!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.0">
<!-- <link rel="stylesheet" href="./assets/css/style.css"></link> -->
<link rel="stylesheet" href="./assets/css/style.css"></link>
<title>Fun in the City</title>
</head>
<body>
<div class="wrapper">
<div class="inner-wrapper">
<header>
<h1 id="city-name">Fun in the City!</h1>
</header>
<div class="col">
<aside>
<form>
<!--
Categories We Can Use:
Time Spent (Slider)
Accomodation (On/Off)
Atractions Type
-->
<h3>Filters</h3>
<label >Include these attractions:</label>
<div class="check-row" style="margin-top: 10px;">
<div class="check-col">
<label> Adult: </label>
<input type="checkbox" data-id="adult" class="checkbox" checked="true">
</div>
<div class="check-col">
<label> Amusements: </label>
<input type="checkbox" data-id="amusements" class="checkbox" checked="true">
</div>
</div>
<div class="check-row">
<div class="check-col">
<label> Architecture: </label>
<input type="checkbox" data-id="architecture" class="checkbox" checked="true">
</div>
<div class="check-col">
<label> Cultural: </label>
<input type="checkbox" data-id="cultural" class="checkbox" checked="true">
</div>
</div>
<div class="check-row">
<div class="check-col">
<label> Historical: </label>
<input type="checkbox" data-id="historic" class="checkbox" checked="true">
</div>
<div class="check-col">
<label> Industrial: </label>
<input type="checkbox" data-id="industrial_facilities" class="checkbox" checked="true">
</div>
</div>
<div class="check-row">
<div class="check-col">
<label> Natural: </label>
<input type="checkbox" data-id="natural" class="checkbox" checked="true">
</div>
<div class="check-col">
<label> Religious: </label>
<input type="checkbox" data-id="religion" class="checkbox" checked="true">
</div>
</div>
<div class="check-row">
<div class="check-col">
<label> Sport: </label>
<input type="checkbox" data-id="sport" class="checkbox" checked="true">
</div>
<div class="check-col">
<label> Facilities: </label>
<input type="checkbox" data-id="tourist_facilities" class="checkbox" checked="true">
</div>
</div>
<div class="check-row" style="margin-top: 10px;">
<label>Vacation Length:</label>
<input type="number" min="1" data-id="time-stayed" value="7">
</div>
<div class="check-row" style="margin-top: 10px;">
<label>Look for Accomodation?</label>
<input type="checkbox" data-id="accomodation" class="acc-checkbox">
</div>
</form>
</aside>
<main>
<div id="map"></div>
<form id="map-form">
<button class="random-btn">Random</button>
<input type="text" class="search-field">
<input type="submit" class="submit-btn">
</form>
</main>
</div>
</div>
</div>
<div class="popup-container" style="display: none;">
<div class="popup">
<p>Select ______?</p>
<div class="buttons">
<button class="accept-btn">Yes</button>
<button class="deny-btn">No</button>
</div>
</div>
</div>
<div class="startup-container" style="display: flex;">
<div class="startup">
<h3>Fun in the City!</h3>
Welcome to the Vacation Generator. In order to use the generator, choose the filters that are applicable to you, and select a city.
<br><br>
You can select through our specially curated list of markers on the map, or go off in the deep end and choose whatever city you like!
<br><br>
</p>
<button class="awe-btn">Start!</button>
</div>
</div>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAeQECNe3YFYAGais5TDXFcavkOKkdQEGo&libraries=places&callback=initMap"
async
></script>
<script src="./assets/js/script.js"></script>
</body>
</html>