forked from luisromangz/geoserver-tiled-geojson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.html
45 lines (36 loc) · 1.18 KB
/
history.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
<html>
<header>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<script src="js/jquery-1.10.2.min.js"></script>
<link rel="stylesheet" href="js/leaflet/leaflet.css" />
<script src="js/leaflet/leaflet-src.js"></script>
<script src="js/rbush.js"></script>
<script src="js/leaflet-canvas-renderer.js"></script>
<script src="js/TileLayer.TileJSON.js"></script>
<script src="js/canvasLayer/leaflet_canvas_layer.js"></script>
<script src="js/leaflet-canvas-geojson.js"></script>
<script src="js/moment.min.js"></script>
<script src="js/leaflet-historical-geojson-layer.js"></script>
<script src="js/demo-history.js"></script>
<style>
canvas {
border: 1px gray dashed;
}
/** For an error making the map appear gray until zooming in Android's Chrome, supposedly fixed in newer Leaflet versions */
.leaflet-tile-container img {
-webkit-backface-visibility: hidden;
}
.leaflet-update-interval {
background: white;
padding: 5px;
}
.leaflet-update-interval label {
float: left;
margin-top: 3px;
}
</style>
</header>
<body>
<div id="map" style="width:100%;height: 100%"></div>
</body>
</html>