-
Notifications
You must be signed in to change notification settings - Fork 1
/
map.html
55 lines (44 loc) · 2.68 KB
/
map.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
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<!--Web App Manifest-->
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#317EFB"/>
<meta name="Description" content="Every River at your Fingertips! rivers.run helps you find the Rivers you want to paddle using information sourced from community experts! For Whitewater, Flatwater, and anything in-between, rivers.run has information for you. rivers.run even works offline - read our FAQ for details.">
<meta name="keywords" content="rivers.run, rivers, whitewater, river info, whitewater info, paddling, paddling info, kayak, canoe">
<meta http-equiv="Content-Security-Policy" content="
default-src 'self' https://rivers.run https://*.rivers.run http://127.0.0.1:* https://maps.googleapis.com https://maps.gstatic.com;
connect-src 'self' https://rivers.run https://*.rivers.run http://127.0.0.1:* https://docs.google.com https://*.googleapis.com https://maps.gstatic.com https://tile.openstreetmap.org https://mt1.google.com https://waterservices.usgs.gov;
img-src 'self' https://rivers.run https://*.rivers.run http://127.0.0.1:* https://*.googleapis.com https://maps.gstatic.com data: blob: https://mesonet1.agron.iastate.edu;
font-src 'self' https://rivers.run https://*.rivers.run http://127.0.0.1:* data: https://fonts.googleapis.com https://fonts.gstatic.com;
style-src 'self' 'unsafe-inline';"
>
<meta charset="UTF-8">
<title style="text-align: center">Rivers.run Map</title>
</head>
<body>
<h1 class="center">Rivers.run River Map</h1>
<p class="center">Please be patient! Drawing tens of thousands of markers to the screen can greatly slow down map load on weaker devices. </p>
<style>
html, body {
margin: 0;
}
.riverMap {
height: 86vh !important;
}
.center {
text-align: center;
}
/*TODO: This is not the last CSS class because index.css is imported as well. */
@media (prefers-color-scheme: dark) {
html, body {
background-color: black;
color: #cccccc;
}
}
</style>
<link rel="stylesheet" href="packages/index.css">
<script src="packages/allPages.js"></script>
<script src="packages/map.js"></script>
</body>
</html>