-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
97 lines (92 loc) · 3.19 KB
/
map.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Map - Travel Crew</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./styles/index.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<link rel="stylesheet" href="./styles/map.css" />
<link rel="stylesheet" href="./styles/home.css" />
<link rel="stylesheet" href="./styles/index.css" />
<script src="./scripts/map.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg px-5">
<a class="navbar-brand text-light fs-2 fw-bolder" href="/">Travel Crew</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto d-flex gap-5 align-items-center">
<li class="nav-item">
<a class="nav-link text-light fw-bolder" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-light fw-bolder" href="about.html"
>About us</a
>
</li>
<li class="nav-item">
<a class="nav-link text-light fw-bolder" href="map.html">Map</a>
</li>
<li class="nav-item">
<a
class="nav-link text-light auth fw-bolder p-3"
style="color: #029d9d"
href="login.html"
>Login</a
>
</li>
</ul>
</div>
</nav>
<main>
<section class="container mt-5 pb-4 position-relative">
<div id="map" class="rounded" style="height: 400px"></div>
<div class="loader position-absolute"></div>
<div class="input-group mt-3">
<input
type="text"
class="form-control"
placeholder="Search for a location..."
aria-label="Search for a location"
aria-describedby="search-button"
id="search-input"
/>
<button class="btn btn-primary" type="button" id="search-button">
Search
</button>
</div>
</section>
</main>
</body>
</html>