-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 2.49 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
<!--
/*
* The MIT License
*
* Copyright 2018 Nestor Manuel Lora Romero <[email protected]>.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
-->
<head>
<link rel="shorcut icon" type="image/png" href="./assets/favicon.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rubik">
<link rel="stylesheet" href="assets/leaflet.css"/>
<script src="assets/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.7.1/js/all.js"></script>
<link rel="stylesheet" href="./assets/styles.css">
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
</head>
<body>
<div id="map"></div>
<div id="ventana" class="cuadroFlotante panelInfo">
<button class="botonCierre" onclick="closeInfo();">❌</button>
<div id="infoContent"></div>
</div>
<div id="control" class="cuadroFlotante panelLineas"></div>
<script>
const site_url = '/RUTPAM';
const emt_proxy_url = '/proxy/emt-core';
const betteremt_api_url = 'https://betteremt.edufdezsoy.es/api';
const ctan_api_url = 'http://api.ctan.es/v1/Consorcios/4';
const odm_api_url = 'https://datosabiertos.malaga.eu/api/3/action/';
const refresh_rate = 3;
const ttl_rate_default = 60;
const ttl_rate_new = ttl_rate_default+10;
const ttl_rate_old = ttl_rate_default-15;
</script>
<script src="./assets/rutpam.js?v=4.9.3"></script>
<script src="./assets/emt.js?v=4.9.1"></script>
<script src="./assets/ctan.js?v=4.9.3"></script>
</body>