-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (54 loc) · 2.47 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
<!DOCTYPE html>
<html>
<head>
<title>Simple Tela Botanica Map</title>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="https://resources.tela-botanica.org/tb/img/16x16/favicon.png">
<link rel="shortcut icon" type="image/x-icon" href="https://resources.tela-botanica.org/tb/img/16x16/favicon.ico">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/MarkerCluster.Default.css">
<link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/leaflet.fullscreen.css' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="default.css">
<link href="lib/jquery.fancybox.min.css" rel="stylesheet">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="lib/jquery.fancybox.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.markercluster.js"></script>
<script src='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/Leaflet.fullscreen.min.js'></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="simple-telabotanica-map.js"></script>
<script type="text/javascript" src="lang-fr.js"></script>
<script type="text/javascript" src="lang-en.js"></script>
</head>
<body>
<div id="map">
<div id="zone-chargement-point" class="bordure">
<img id="img-chargement" src="chargement.gif">
<div id="legende-chargement"></div>
</div>
<div id="logo">
<a id="lien-logo" href="http://www.tela-botanica.org">
<img id="image-logo" class="bordure" src="https://resources.tela-botanica.org/tb/img/128x128/logo_carre_officiel.png" alt="Tela Botanica">
</a>
</div>
<div id="zone-titre" class="bordure">
</div>
<div id="zone-infos" class="bordure">
<span id="info-observations"><span id="nombre-observations"></span> −</span>
<span id="info-taxons"><span id="nombre-taxons"></span> −</span>
<span id="info-stations"><span id="nombre-stations"></span></span>
</div>
<div id="zone-filtres-wrapper">
<div id="zone-filtres" class="bordure">
</div>
</div>
<a
id="lien-infos-cdu"
href="http://www.tela-botanica.org/widget:cel:cartoPoint?carte=avertissement"
target="_blank"
>
<div id="zone-aide" class="bordure">?</div>
</a>
</div>
</body>
</html>