-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (68 loc) · 3.09 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YB-Transfers</title>
<link href="CSS/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
<link rel="stylesheet" href="CSS/transferviz.css">
</head>
<body>
<!-- This is the loading screen -->
<div class="overlay"></div>
<div class="loader">
<div class="d-flex justify-content-center">
<div class="spinner-border text-primary" role="status" style="width: 3rem; height: 3rem; z-index: 20;"></div>
</div>
</div>
<!-- This is the header -->
<div class="container-fluid" id="header-container">
<div class="row justify-content-end mt-1">
<div class="col-1 text-right">
<button type="button" class="btn btn-link" id="langSelectDe">de</button> | <button type="button" class="btn btn-link" id="langSelectFr">fr</button>
</div>
</div>
</div>
<!-- Title -->
<div class="container-fluid mb-5">
<div class="row"> <!-- justify-content ist für horizontal und align-items für vertikal-->
<div class="col text-center mb-3 titleBanner">
<h3 class="display-3" id="headTitle">YB-Transfers</h3>
</div>
</div>
<div class="row">
<div class="col" style="height: 5em; background-color: #9b111a;"></div>
</div>
</div>
<!-- This is the visualisation -->
<section class="mb-5" id="transferViz">
<div class="container-xl">
<!-- Buttons for view -->
<div class="row justify-content-center">
<div class="col-md-8 text-center">
<div class="btn-group btn-group-lg">
<button class="btn btn-primary" id="btnLeft">Abgänge</button>
<button class="btn btn-secondary" id="btnJoined">Zugänge</button>
</div>
</div>
</div>
<!-- Map -->
<div class="row justify-content-center mt-3" id="map-row">
<div class="col-md-12 mt-5 mb-2" id="map-div">
<div class="shadow my_rounded border border-2" id="map"></div>
</div>
</div>
</div>
</section>
<script src="JS/d3.v7.js"></script>
<script src="JS/d3-legend.js"></script>
<script src="JS/jquery-3.6.0.js"></script>
<script src="JS/bootstrap.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/leaflet.polylineDecorator.js"></script>
<!-- Library for geo calculations -->
<!-- <script src="leaflet.geometryutil.js"></script> -->
<script src="JS/transferviz.js"></script>
</body>
</html>