-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoublemap.html
More file actions
52 lines (52 loc) · 1.97 KB
/
doublemap.html
File metadata and controls
52 lines (52 loc) · 1.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/base.css" />
<link rel="stylesheet" href="assets/ProductListMenu.css" />
<link rel="stylesheet" href="assets/SelectedProducts.css" />
<link rel="stylesheet" href="assets/TimeMap.css" />
<link rel="stylesheet" href="assets/TimePlayer.css" />
<link rel="stylesheet" href="assets/Version.css" />
<link rel="stylesheet" href="assets/doublemap.css" />
<link rel="stylesheet" href="assets/leaflet.css" />
<link rel="stylesheet" href="assets/leaflet.control.legend.css" />
<script type="text/javascript" src="assets/leaflet-src.js"></script>
<script type="text/javascript" src="assets/leaflet.control.legend.js"></script>
<script type="text/javascript" src="assets/L.Map.Sync.js"></script>
<title>meteotiles - double map</title>
</head>
<body>
<header>
<span class="logo"></span>
<nav>
<ul>
<li><a href=".">Mappa singola</a></li>
<li>Mappa doppia</li>
</ul>
</nav>
</header>
<main>
<div class="left-panel">
<div id="selected-products-left">
</div>
<div id="product-list-menu-left">
</div>
<div id="map-left"></div>
</div>
<div class="right-panel">
<div id="selected-products-right">
</div>
<div id="product-list-menu-right">
</div>
<div id="map-right"></div>
</div>
<div id="time-player"></div>
</main>
<footer>
<span id="version"></span>
</footer>
<script type="module" src="src/doublemap.js"></script>
</body>
</html>