-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweather_map.html
More file actions
100 lines (60 loc) · 2.55 KB
/
weather_map.html
File metadata and controls
100 lines (60 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Weather Map</title>
<!------------------- FONT ----------------------->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" rel="stylesheet">
<!-------- MAPBOX CSS ----------->
<link rel="stylesheet" href="https://api.mapbox.com/mapbox-gl-js/v2.9.1/mapbox-gl.css">
<!----------- BOOTSTRAP ---------->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!--------- WEATHER STYLESHEET --------->
<link rel="stylesheet" href="./css/weather.css">
</head>
<body>
<div class="page-wrapper">
<header class="container">
<!--TOP OF PAGE 'NAV BAR'---->
<div class="row" id="nav-bar">
<div class="column" id="title">Weather App</div>
<div class="column" id="currentCity" ><span class="city-bold">Current City:</span> <span id="city-info" class=""></span></div>
</div>
<!--- SEARCH BAR ------>
<div class="row" id="search">
<div class="column">
<div class="search-container ">
<form class="search " style="margin:auto;max-width:300px">
<input class="" type="text" placeholder="Search Place.." id="searchInpt">
<button class="" type="submit" id="searchBtn">⏎</button>
</form>
</div>
</div>
</div>
</header><!-- TOP OF PAGE CONTAINER END --->
<!--- WEATHER CARDS ----->
<div class="container">
<div class="row">
<div class="column" id="cards"></div>
</div>
<!--------- MAP ----------->
<div class="row" id="map-area">
<div class="column">
<div id="map"></div>
</div>
</div>
</div> <!--- WEATHER INFORMATION CONTAINER END ------>
</div>
<script src='https://api.mapbox.com/mapbox-gl-js/v2.9.1/mapbox-gl.js'></script>
<script src="./js/mapbox-geocoder-utils.js"></script>
<script type="text/javascript" src="./js/keys.js"></script>
<script type="text/javascript" src="./js/jquery-3.6.3.js"></script>
<script src="js/weather.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>