forked from noi-techpark/webcomp-flightdata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaxi.html
More file actions
85 lines (78 loc) · 2.72 KB
/
Copy pathtaxi.html
File metadata and controls
85 lines (78 loc) · 2.72 KB
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
<!--
SPDX-FileCopyrightText: NOI Techpark <digital@noi.bz.it>
SPDX-License-Identifier: CC0-1.0
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible"
content="IE=edge" />
<meta name="viewport"
content="width=device-width,initial-scale=1.0" />
<link rel="shortcut icon"
href="/favicon.ico">
<title>Skyalps flight schedule</title>
<script src="./dist/noi-mobility-atc.min.js"></script>
<style>
html,
body,
div {
height: 100%;
width: 100%;
overflow: hidden;
margin: 0;
padding: 0;
}
* {
box-sizing: border-box;
}
noi-mobility-atc {
--noi-font-family: Heebo;
--noi-font-family-2: Heebo;
--basic-font-size: 16px;
}
</style>
</head>
<body style="width: 100%; height: 100%; padding:1%">
<div style="width: 100%; height: 100%; padding:0 0">
<noi-mobility-atc theme="skyalps"
id="atc-main"
styleurl=""
map="false"
header="true"
lang="es"
messages='{"es": {
"Realtime data": "Tempo reale",
"Price from": "Prezzo*",
"load more": "mostra più voli",
"rateinfo": "*prezzo arrotondato per adulto, tasse incluse",
"Arrivals": "Arrivi",
"Departures": "Partenze",
"Date": "Data",
"Time": "Ora",
"Origin": "Da / Via",
"Destination": "A / Via",
"Gate": "Gate",
"Remarks": "Info",
"Flight": "Numero volo",
"de": "it-IT"
}}'
realtime="false"
departures="true"
arrivals="true"
regionswitch="true"
maxage="80"
timezone="Europe/Berlin"
maxforecast="20"
filters='{"from_ts": false,"to_ts": false,"airport": "BZO"}'
columns='{"morebutton" : true, "date": true,"time": true,"airline": true,"fromto": true,"flightnumber": true,"remark": true,"gate": true,"ticketlink": true, "rate" : false}'>
</noi-mobility-atc>
<script>
// whenever the filter attribute changes, the widget will update internal data
// var demoelement = document.querySelector("noi-mobility-atc");
// demoelement.setAttribute("filters", '{"from_ts": "1674604800","to_ts": false,"airport": "BZO"}');
</script>
</div>
</body>
</html>