-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
88 lines (71 loc) · 3.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Benoit Regamey">
<title>Le Vandrouilleur - Map</title>
<meta name="description" content="Discover our Adventures on the Map !">
<link rel="shortcut icon" href="/icon/favicon.png">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- Custom fonts for this template -->
<link href="https://fonts.cdnfonts.com/css/dosis" rel="stylesheet">
<script src="https://kit.fontawesome.com/460a6dede4.js" crossorigin="anonymous"></script>
<!-- Custom JS for this template -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.3/leaflet.js"></script>
<script src="https://cdn.maptiler.com/mapbox-gl-js/v0.53.0/mapbox-gl.js"></script>
<script src="https://cdn.maptiler.com/mapbox-gl-leaflet/latest/leaflet-mapbox-gl.js"></script>
<!-- Custom styles for this template -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.3/leaflet.css">
<link rel="stylesheet" href="https://cdn.maptiler.com/mapbox-gl-js/v0.53.0/mapbox-gl.css">
<link rel="stylesheet" href="css/leaflet-gesture-handling.min.css" type="text/css">
<link rel="stylesheet" href="css/MarkerCluster.css" type="text/css">
<link rel="stylesheet" href="css/MarkerCluster.Default.css" type="text/css">
<link rel="stylesheet" href="css/map.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-158702287-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-158702287-1');
</script>
</head>
<body>
<!-- Container for the Map -->
<div id="map" class="container-fluid height-100 px-0"></div>
<!-- Header -->
<div id="header" class="container-fluid px-0 fixed-top">
<div class='row h-100 mx-0 align-items-center'>
<div class="col h-100 pl-2 py-0 menu-button-container">
<div class="col px-0 menu-button collapsed mx-auto">
<span class="icon-bar top-bar"></span>
<span class="icon-bar middle-bar"></span>
<span class="icon-bar bottom-bar"></span>
</div>
</div>
<div id="activity-count" class="col pl-2 my-0 text-black-50"></div>
<div id="back-arrow-button" class="col mx-0 px-0"></div>
<img id="header-icon" src="icon/map/header-icon.png" class="img-fluid-vertical ml-auto mx-sm-auto sm-d-block pr-2">
</div>
</div>
<!-- Sidebar -->
<div class="container-fluid px-0 sidebar">
<div class="container-fluid px-0 sidebar-content"></div>
<div class="container-fluid px-0 sidebar-bottom">
<div class="row h-100">
<div class="col-1 mx-auto my-auto"></div>
</div>
</div>
</div>
<script src="https://www.instagram.com/static/bundles/es6/EmbedSDK.js/bf4a12bd69f3.js"></script>
<script src="js/leaflet-gesture-handling.min.js"></script>
<script src="js/leaflet.markercluster.js"></script>
<script src="js/map.js"></script>
</body>
</html>