-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.1 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Location</title>
<meta
name="description"
content="A web application to track and display geolocations"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link rel="icon" href="./img/marker-a.svg" />
<link rel="stylesheet" href="./css/main.css" />
<!-- iOS home screen config -->
<link rel="apple-touch-icon" href="./img/marker-a.svg" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
</head>
<body>
<main>
<location-status></location-status>
<location-navdisplay></location-navdisplay>
<leaflet-map id="lflt"></leaflet-map>
</main>
<nav id="main-tools">
<location-about></location-about>
<location-locator></location-locator>
<location-pin></location-pin>
<location-list></location-list>
</nav>
<script type="module" src="./js/main.js"></script>
</body>
</html>