-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
32 lines (26 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<!-- To make it mobile friendly -->
<meta name='viewport' content='width=device-width, initial-scale=1, min-scale=1, max-scale=1'>
<title>Leafartica</title>
<!-- leaflet -->
<script src="modules/leaflet-0.7.3/leaflet.js"></script>
<link href='modules/leaflet-0.7.3/leaflet.css' rel='stylesheet' />
<!-- for the custom projections -->
<script src="modules/proj4.js" type="text/javascript"></script>
<script src="modules/proj4leaflet.js" type="text/javascript"></script>
<!-- plugins -->
<script src="modules/leaflet-hash.js" type="text/javascript"></script>
<script src="modules/L.Graticule.js" type="text/javascript"></script>
<!-- HACK: To stop map going out of bounds -->
<script src="hacks/constrain-map-to-bounds.js" type="text/javascript"></script>
<!-- out styling and map initialisation -->
<link href='app.css' rel='stylesheet' />
<script src="app.js" type="text/javascript"></script>
</head>
<body>
<div id='map'></div>
<input type='date' id='date' />
</body>
</html>