-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.6 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Float Maps</title>
<link
href="https://api.mapbox.com/mapbox-gl-js/v2.14.1/mapbox-gl.css"
rel="stylesheet"
/>
<link
href="https://db.onlinewebfonts.com/c/c9c60c88cb732119e5a9457f2d9cdc53?family=DINPro-Regular"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link href="/src/reset.css" rel="stylesheet" />
<link href="/src/style.css" rel="stylesheet" />
</head>
<body>
<a id="logo" href="https://github.com/nathanortbals/float-maps">
<span class="material-symbols-outlined"> kayaking </span>
<h1>Float Maps</h1>
</a>
<div id="layer-dropdown">
<span id="layer-dropdown-button" class="material-symbols-outlined">
layers
</span>
<div id="layer-dropdown-content">
<button id="simple-layer-selector" class="layer-selector selected">
<img class="layer-preview" src="/images/simple-layer-preview.png" />
Simple
</button>
<button id="satellite-layer-selector" class="layer-selector">
<img
class="layer-preview"
src="/images/satellite-layer-preview.png"
/>
Satellite
</button>
</div>
</div>
<div id="map"></div>
<script type="module" src="./src/map.ts"></script>
</body>
</html>