forked from lo-ise/leafarctica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (36 loc) · 1.54 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
<!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>Leafarctica 2</title>
<!-- leaflet -->
<script src="modules/legacy/leaflet-0.7.3/leaflet.js"></script>
<link href='modules/legacy/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>
<!-- topojson for some stuff -->
<script src="http://d3js.org/topojson.v1.min.js"></script>
<!-- Maki markers because why not at this point -->
<script src="modules/Leaflet.MakiMarkers.js"></script>
<!-- HACK: To stop map going out of bounds -->
<script src="hacks/constrain-map-to-bounds.js" type="text/javascript"></script>
<!-- jquery to load remote geojson programmatically -->
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<!-- our styling and map initialisation -->
<link href='app.css' rel='stylesheet' />
<script src="app.js" type="text/javascript"></script>
</head>
<body>
<h1>Antarctic polar stereographic projection in Leaflet</h1>
<div id='map'></div>
<div id='imagerySelect'>
<h3>MODIS imagery date</h3>
<input type='date' id='date' />
</div>
</body>
</html>