-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>COBWEB viewer</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="js/ext/Leaflet/dist/leaflet.css" />
<script src="js/ext/Leaflet/dist/leaflet.js"></script>
<style>
html, body, #map {
padding: 0px;
margin: 0px;
height: 100%;
width: 100%;
}
.legend {
color: DimGrey;
}
.legend i {
width: 15px;
height: 15px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
.info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.leaflet-popup-content {
min-width: 500px;
}
</style>
<!-- Future -->
<!-- <script src="js/ext/proj4js-compressed.js"></script>-->
<!-- <script src="js/proj4leaflet.js"></script>-->
<!-- Leaflet -->
<link rel="stylesheet" href="js/ext/Leaflet.markercluster/dist/MarkerCluster.css" />
<link rel="stylesheet" href="js/ext/Leaflet.markercluster/dist/MarkerCluster.Default.css" />
<script src="js/ext/Leaflet.markercluster/dist/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="js/ext/Leaflet.toolbar/dist/leaflet.toolbar.css" />
<script src="js/ext/Leaflet.toolbar/dist/leaflet.toolbar.js"></script>
<script src="js/ext/spin.js/spin.min.js"></script>
<script src="js/ext/Leaflet.Spin/leaflet.spin.js"></script>
<!-- JQuery -->
<script src="js/ext/jquery-1.11.3.min.js"></script>
<script src="js/ext/Filesaver/FileSaver.min.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="js/ext/bootstrap-3.3.6/bootstrap.min.css" />
<link rel="stylesheet" href="js/ext/bootstrap-3.3.6/bootstrap-theme.min.css" />
<script src="js/ext/bootstrap-3.3.6/bootstrap.min.js"></script>
<!-- COBWEB -->
<script src="js/config.js"></script>
<script src="js/utils.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div id="map"></div>
<!-- <div class="spinner-loader"> -->
<!-- Loading… -->
<!-- </div> -->
<script type="text/javascript">
</script>
</body>
</html>