-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathhistorical.html
41 lines (37 loc) · 1.81 KB
/
historical.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
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>Historical map</title>
<link rel="icon"
type="image/png"
href="images/favicon_newcomer_map.png" />
<link rel="stylesheet" href="css/leaflet.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.fullscreen.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.clickMarker.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.MousePosition.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.icons.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.mapSelector.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.mapTemplate.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.customZoom.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.era.css"/>
<link rel="stylesheet" href="css/other.css"/>
<link rel="stylesheet" href="css/plugins/leaflet.displays.css"/>
<link rel="stylesheet" href="css/main.css">
<script type="module" src="js/MD5.js"></script>
<script type="module" src="js/leaflet.js"></script>
<script type="module" src="js/plugins/leaflet.fullscreen.js"></script>
<script type="module" src="js/plugins/leaflet.mapSelector.js"></script>
<script type="module" src="js/plugins/leaflet.zoom.js"></script>
<script type="module" src="js/plugins/leaflet.plane.js"></script>
<script type="module" src="js/plugins/leaflet.position.js"></script>
<script type="module" src="js/plugins/leaflet.displays.js"></script>
<script type="module" src="js/plugins/leaflet.urllayers.js"></script>
<script type="module" src="js/plugins/leaflet.era.js"></script>
<script type="module" src="js/other.js"></script>
<script type="module" src="js/main/historical.js"></script>
</head>
<body>
<div id="map"></div>
</body>
</html>