-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweather_map.html
More file actions
59 lines (49 loc) · 1.94 KB
/
weather_map.html
File metadata and controls
59 lines (49 loc) · 1.94 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Weather Map</title>
<link rel="stylesheet" href="css/weather_map.css">
<link href="https://api.mapbox.com/mapbox-gl-js/v2.14.1/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v2.14.1/mapbox-gl.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<header>
<!--NAVBAR-->
<nav class="navbar bg-body-tertiary">
<div class="container-fluid">
<div>
<a class="navbar-brand"> <h1>Weather App</h1> </a>
</div>
<form class="d-flex" role="search">
<input class="form-control me-2" id="input-place" type="text" placeholder="City" aria-label="SearchPlace">
<button class="btn btn-outline-success" id="find-place-btn" type="submit">Find</button>
</form>
</div>
</nav>
</header>
<!--Current Weather Container-->
<div class="container-fluid d-flex align-content-center" id="current-weather-container">
</div>
<!--Forecast card container-->
<div class="container-fluid" >
<h3>Weather Forecast for the Next 5 Days</h3>
<div class="row" id="forecast">
<!--Forecast Card-->
<!--<div class="col card" id="forecastCard" ></div>-->
</div>
</div>
<!--MAP-->
<div id="map"></div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="js/keys.js"></script>
<script src="js/weather-utils.js"></script>
<script src="js/mapbox-geocoder-utils.js"></script>
<script src="js/weather_map.js"></script>
</body>
</html>