-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
67 lines (64 loc) · 2.19 KB
/
Copy pathmap.html
File metadata and controls
67 lines (64 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Campus Map - University Schedule Builder</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<link rel="stylesheet" href="./css/styles.css">
<style>
#map {
height: 600px;
width: 100%;
}
.map-page-container {
display: grid;
grid-template-columns: 300px 1fr;
gap: 20px;
}
.map-container-full {
background: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
height: 600px;
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="header-content">
<div class="header-text">
<h1>Campus Map</h1>
<p class="subtitle">View your class locations on campus</p>
<a href="index.html" class="btn-secondary back-button">← Back to Schedule Builder</a>
</div>
<div class="logo-container">
<img src="images/uconn-husky-logo.png" alt="UConn Husky Logo" class="uconn-logo">
</div>
</div>
</header>
<div class="map-page-container">
<div class="map-controls">
<div class="selected-courses">
<h3>Your Classes</h3>
<div id="courseListMap">
<div class="no-courses">
<p>No courses in your schedule.</p>
<p>Go back to add courses.</p>
</div>
</div>
</div>
</div>
<div class="map-container-full">
<div id="map"></div>
</div>
</div>
</div>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="js/courses.js"></script>
<script src="js/schedule.js"></script>
<script src="js/map.js"></script>
</body>
</html>