-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 2.17 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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://openlayers.org/en/v3.20.1/css/ol.css" type="text/css">
<link rel="stylesheet" href="./kaart.css" type="text/css">
<script src="https://openlayers.org/en/v3.20.1/build/ol.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/proj4js/2.3.15/proj4.js"></script>
<script src="https://epsg.io/4326.js"></script>
<script src="https://epsg.io/3857.js"></script>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=0.7">
<title>Edwins kaart</title>
</head>
<body>
<div id="map" class="map"></div>
<script src="navmap.js" type="text/javascript"> </script>
<div id="buttonbar">
<div id="button" onclick="layers(this,'overview')">
<h1 id="title">Tracks</h1>
<p id="explain">Over the years i collected millions of
locations using a series of satnav receivers.
My map shows waypoints, trackpoints and most visited
countries. Tracks are color coded by average speed,
blue is slow and red is fast</p>
</div>
<div id="button" onclick="layers(this,'sports')">
<h1 id="title">Sports</h1>
<p id="explain">Cycling, skating, etc. All tracks recorded with
a sports watch or bike navigator. Blue is slow, red is fast.</p>
</div>
<div id="button" onclick="layers(this,'edwin')">
<h1 id="title">Wikimap</h1>
<p id="explain">Map of some texts i wrote on my wiki.
Links are not functional (yet).
Gotta fix that one of these days.</p>
</div>
<div id="button" onclick="layers(this,'beidou')">
<h1 id="title">Beidou</h1>
<p id="explain">Beidou is the chinese satnav system.
The map shows tha maximum number of satellites observed in
a hexagon in colour. The number in the hexagon is the mean
number of Beidou satellites. The map is based on one million
combined GPS-Beidou locations recorded over a year. </p>
</div>
</div>
</script>
</body>
</html>