-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 1.75 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>Sailing GPS Tracker</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.min.css" />
<link rel="stylesheet" href="style.css" />
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
</head>
<body>
<header class="app-header">
<h1>Sailing Tracker</h1>
<button id="startTrackingBtn" class="material-btn">Start</button>
</header>
<main>
<section id="map-section">
<div id="map">
<div id="compass">0°</div>
</div>
</section>
<section id="stats">
<div class="stat-container">
<p class="stat-label">Speed</p>
<p class="stat-value" id="speed">0</p>
</div>
<div class="stat-container">
<p class="stat-label">Distance</p>
<p class="stat-value" id="distance">0 km</p>
</div>
<button id="wakeLockBtn" class="material-btn">Keep Screen On</button>
</section>
<section id="graphs">
<div class="chart-container">
<canvas id="speedChart"></canvas>
</div>
<div class="chart-container">
<canvas id="distanceChart"></canvas>
</div>
</section>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.js"></script>
<script src="script.js"></script>
</body>
</html>