-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
429 lines (360 loc) · 15.2 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>
RestaurantMaps - Find your way to food
</title>
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.css">
<!-- Main Style -->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<!-- Maps style -->
<link rel="stylesheet" type="text/css" href="assets/css/maps.css">
<!-- Responsive Style -->
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
<!--Icon Fonts-->
<link rel="stylesheet" media="screen" href="assets/fonts/font-awesome/font-awesome.min.css"/>
<link rel="stylesheet" media="screen" href="assets/css/matter-icon.css" />
<!-- Extras -->
<link rel="stylesheet" type="text/css" href="assets/extras/animate.css">
<link rel="stylesheet" type="text/css" href="assets/extras/lightbox.css">
<link rel="stylesheet" type="text/css" href="assets/extras/owl.carousel.css">
<link rel="stylesheet" type="text/css" href="assets/extras/owl.theme.css">
<link rel="stylesheet" type="text/css" href="assets/extras/text-rotator.css">
<!--Presets-->
<link rel="alternate stylesheet" type="text/css" media="screen" title="mblue" href="assets/css/presets/mblue.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="assets/css/presets/blue.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="green" href="assets/css/presets/green.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="red" href="assets/css/presets/red.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="assets/css/presets/white.css" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js">
</script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js">
</script>
<![endif]-->
</head>
<body id="matter-top" data-spy="scroll" data-offset="20" data-target="#navbar">
<div class="switcher-area">
<h4>
Color Switcher
</h4>
<ul id="switcher">
<li>
<a href="javascript:chooseStyle('mblue')" style="background: #3d566e;">
Min-night Blue
</a>
</li>
<li>
<a href="javascript:chooseStyle('blue')" style="background:#2C7EB6;">
Blue
</a>
</li>
<li>
<a href="javascript:chooseStyle('green')" style="background:#16a085;">
Green
</a>
</li>
<li>
<a href="javascript:chooseStyle('white')" style="background:#f0f0f0;">
White
</a>
</li>
</ul>
<div class="switcher-btn-area">
<button class="switcher-btn">
<i class="fa fa-cog fa-spin">
</i>
</button>
</div>
</div>
<header class="logo-menu" id="home">
<!-- Nav Menu Section -->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation" data-spy="affix" data-offset-top="200">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">
Toggle navigation
</span>
<span class="icon-bar">
</span>
<span class="icon-bar">
</span>
<span class="icon-bar">
</span>
</button>
<a class="navbar-brand" href="index.html">
<img src="assets/img/logo_opt.png" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<div class="visible-lg">
<span class="to-top pull-right">
<a href="#matter-top">
<i class="fa fa-angle-up fa-2x">
</i>
</a>
</span>
<span class="to-bottom pull-right">
<a href="#services">
<i class="fa fa-angle-down fa-2x floating">
</i>
</a>
</span>
</div>
<ul class="nav navbar-nav animated-nav navbar-right matter-main-nav" id="nav">
<li class="active">
<a href="#home">
Home
</a>
</li>
<li>
<a href="#about">
Register
</a>
</li>
<li>
<a href="#team">
Login
</a>
</li>
<li>
<a href="#contact">
Contact
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Nav Menu Section End -->
</header>
<section id="slider">
<!-- Main Slider Section -->
<div id="carousel-area">
<div id="carousel-slider" class="carousel slide" data-interval="5000">
<div class="carousel-inner">
<div class="item active" style="background-image: url(assets/img/backgrounds/gourmet.jpg);">
<div class="carousel-caption">
<h1 class="animated-late fadeInDown">
RestaurantMaps
</h1>
<h2 class="animated-late fadeInUpQuick delay-1">
Discover Your Next Favourite Restaurant
</h2>
<a class="btn btn-large btn-common-white animated fadeInUpQuick delay-1-5" href="#search">
<i class="fa fa-search">
</i>
Search
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Main Slider Section End-->
<!-- Service Section -->
<section id="search" ng-app="app">
<div>
<div class="container">
<div class="row">
<div class="services-intro col-md-12 text-center wow fadeIn" data-wow-offset="10">
<h1>
<span>
It's Easy To Find A Vast Selection Of Restaurants To Choose From
</span>
</h1>
<h3>
Type The Name Of A City Below And Hit The Search Button
</h3>
</div>
<div ng-controller="RestaurantCtrl" class="col-md-12 text-center wow fadeInUp" data-wow-offset="10">
<div class="service">
<!--
<div class="widget_wrap" style="width:320px;height:797px;"><iframe src="https://www.zomato.com/widgets/all_collections.php?city_id=82&language_id=1&theme=red&widgetType=small" style="position:relative;width:100%;height:100%;" border="0" frameborder="0"></iframe></div>
-->
<div class="input-group">
<input id="cityname" type="text" class="form-control" placeholder="Restaurants in...">
<span class="input-group-btn">
<button ng-click="GetCities(cityname);" class="btn btn-default" type="button">Search!</button>
</span>
</div><!-- /input-group -->
<p id="estado" hidden>Searching...</p>
<p></p>
<p></p>
<div id="flagdiv">
<div class="col-md-4">
<table id="restaurantes" st-table="restName" class="table table-striped" hidden>
<thead>
<tr>
<th align="center">Restaurant name</th>
<th align="center">Cuisine</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="x in restName">
<td><a href={{x.restaurant.url}} >
<div style="height:100%;width:100%">
{{ x.restaurant.name }}
</div>
</a></td>
<td>{{ x.restaurant.cuisines }}</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-2"></div>
<input id="pac-input" class="controls" type="text"
placeholder="Enter a location...">
<div id="map"></div>
<p></p>
<p>Choose the nearby restaurant to go to: </p>
<b>Start: </b>
<select id="start"></select>
<b>End: </b>
<select id="end"></select>
<!-- <div class="col-md-6" id="table" style="float:right"></div> -->
<p></p>
<p></p>
<div class="col-md-6" style="width: 600px; float:right">
<div id="mapRoute" style="width: 280px; height: 400px; float: left;"></div>
<div id="panel" style="width: 280px; float: right;"></div>
</div>
<!-- <div class="col-md-6" id="mapRoute"></div> -->
<!--
-->
</div>
</div>
<div class="col-md-3 text-center wow fadeInUp" data-wow-offset="10" data-wow-delay="0.2s">
</div>
<div class="col-md-3 text-center wow fadeInUp" data-wow-offset="10" data-wow-delay="0.4s">
</div>
<div class="col-md-3 text-center wow fadeInUp" data-wow-offset="10" data-wow-delay="0.6s">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer id="matter-footer">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-12 col-xs-12">
<h3 class="widget-title">
The Concept
</h3>
<div class="text">
<img src="assets/img/logo.png" alt="">
<p>
We bring you the app that will make searching for a good restaurant, easy and fun! Search for restaurants by location, type of food or distance from your current location. Or any combination of the above. It's our choices, to suit your tastes.
</p>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12 col-xs-12">
</div>
<div class="col-lg-3 col-md-4 col-sm-12 col-xs-12">
<h3 class="widget-title">
Useful Links
</h3>
<div class="text">
<ul class="link">
<li>
<a href="htt://wingthemes.com" target="_blank">
Premium WordPress Themes
</a>
</li>
<li>
<a href="htt://wpbean.com" target="_blank">
Premium WordPress Plugins
</a>
</li>
<li>
<a href="htt://graygrids.com" target="_blank">
Free Bootstrap Templates
</a>
</li>
<li>
<a href="htt://graygrids.com" target="_blank">
WingThemes in CreativeMarket
</a>
</li>
<li>
<a href="htt://graygrids.com" target="_blank">
WingThemes in MojoMarketplace
</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12 col-xs-12">
<h3 class="widget-title">
Our Location
</h3>
<div class="textwidget">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d2673.793186905526!2d-122.27026199999999!3d47.921039!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x549aaa98e7706fcd%3A0xdce29d6d3f457ae8!2sHVACUSA!5e0!3m2!1sen!2sbd!4v1419537987498" style="border:0" frameborder="0" height="180" width="300"></iframe>
</div>
</div>
</div>
</div>
<!-- Copyright Section-->
<div class="copyright">
<div class="container">
<p>
© Matter 2014 All right reserved. Designed by
<a href="http://wingthemes.com">
WingThemes
</a>
</p>
</div>
</div>
<!-- Copyright Section End-->
</footer>
<!-- footer Section End -->
<script src="assets/js/angular.min.js"></script>
<script src="assets/frontend/gservice.js"></script>
<script src="assets/frontend/gserviceRoute.js"></script>
<!-- <script src="assets/js/mapaUtils.js"></script> -->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyChdumDrFouGmTilavqf8yJQcnnupkxJOs&libraries=places&geometry&directions&signed_in=false"> // &callback=initMap">
</script>
<script src="db/db_cities_model.js"></script>
<script src="bower_components/lodash/lodash.min.js"></script>
<script src="assets/frontend/app.js"></script>
<!-- jQuery Load -->
<script src="assets/js/jquery-min.js"></script>
<!-- Bootstrap JS -->
<script src="assets/js/bootstrap.min.js"></script>
<!--Text Rotator-->
<script src="assets/js/text-rotator.js"></script>
<!--jQuery Nav-->
<script src="assets/js/jquery.nav.js"></script>
<!--WOW Scroll Spy-->
<script src="assets/js/wow.js"></script>
<!--Smooth on Scroller-->
<script src="assets/js/smooth-on-scroll.js"></script>
<!--Smooth Scroller-->
<script src="assets/js/smooth-scroll.js"></script>
<!-- Light Box -->
<script src="assets/js/lightbox.min.js"></script>
<!-- Mixitup -->
<script src="assets/js/jquery.mixitup.min.js"></script>
<!-- Owl carousel -->
<script src="assets/js/owl.carousel.js"></script>
<!-- preset js -->
<script src="assets/js/style.changer.js"></script>
<!-- Counterup -->
<script src="assets/js/jquery.counterup.min.js"></script>
<!-- waypoints -->
<script src="assets/js/waypoints.min.js"></script>
<!-- All JS plugin Triggers -->
<script src="assets/js/main.js"></script>
</body>
</html>