-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (31 loc) · 926 Bytes
/
Copy pathindex.html
File metadata and controls
42 lines (31 loc) · 926 Bytes
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>AustroX</title>
<link rel="stylesheet" href="leaflet/leaflet.css" />
<link rel="stylesheet" href="L.Control.Zoomslider/L.Control.Zoomslider.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="leaflet/leaflet.ie.css" />
<link rel="stylesheet" href="L.Control.Zoomslider/L.Control.Zoomslider.ie.css" />
<![endif]-->
<style type="text/css">
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
}
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="leaflet/leaflet.js"></script>
<script src="L.Control.Zoomslider/L.Control.Zoomslider.js"></script>
<script src="init.js"></script>
<script src="json.js"></script>
<script src="translate.js"></script>
</head>
<body>
<div id="map"></div>
</body>
</html>