forked from SoniaGama/guanajuato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (101 loc) · 4.18 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Guanajuato</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<header>
<h2>
<a href="#">
<i class="ion-plane"></i>Guanajuato</a>
</h2>
<nav>
<ul>
<li>
<a href="#" title="Hotels">Favoritos</a>
</li>
<li>
<a href="views/chat.html" title="Flights">Opiniones</a>
</li>
<li>
<a href="#" title="Tours">Rutas</a>
</li>
<li>
<a class="btn" href="#" title="Register / Log In">Registro/Log In</a>
</li>
</ul>
</nav>
</header>
<div class="cover">
<h1>Descubre Guanajuato.</h1>
<form class="flex-form">
<!-- <label for="from">
<i class="ion-location"></i>
</label> -->
<input id="pac-input" class="controls" type="search" placeholder="¿A dónde quieres ir hoy?">
<!--<input type="submit" value="Buscar"> -->
<button id="btn-modal" type="button" class="btn btn-primary" data-toggle="modal" data-target="#modalMapa">
Mapa
</button>
<!-- <input id="pac-input" class="controls" type="text" placeholder="¿A dónde quieres ir hoy?"> -->
<!-- <input id="search" type="submit" value="Buscar"> -->
</form>
<form class="flex-form">
<a id="rutas" class="btn" href="views/rutas.html">Ver rutas</a>
</form>
<div class="modal fade" id="modalMapa" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div id="map" class="modal-body">
<!-- <div id="map"></div> -->
</div>
<!-- <div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cerrar</button>
</div> -->
</div>
</div>
</div>
</div>
</div>
<!-- <div id="map"></div> -->
<!-- <div id="map"></div> -->
<!-- <div class="cover"> -->
<!-- <h1>Descubre Guanajuato.</h1> -->
<!-- <form class="flex-form"> -->
<!-- <input id="pac-input" class="controls" type="text" placeholder="Search Box"> -->
<!-- <input id="pac-input" class="controls" type="text"
placeholder="Enter a location">
<div id="type-selector" class="controls">
<input type="radio" name="type" id="changetype-all" checked="checked">
<label for="changetype-all">All</label>
<input type="radio" name="type" id="changetype-establishment">
<label for="changetype-establishment">Establishments</label>
<input type="radio" name="type" id="changetype-address">
<label for="changetype-address">Addresses</label>
<input type="radio" name="type" id="changetype-geocode">
<label for="changetype-geocode">Geocodes</label>
</div>
<div id= "container">
<div id="map"></div>
</div> -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCIdxjSv6ryGgndpGEofce3YfLSTJV-W7g&libraries=places&callback=initMap"
async defer></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="js/app.js"></script>
</body>
</html>