-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
26 lines (26 loc) · 948 Bytes
/
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
<html>
<head>
<meta charset=utf-8 />
<title>Submarine Cable Taps</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src="src/jq.min.js"></script>
<!-- leaflet -->
<script src="src/leaflet-src.js"></script>
<script src="src/leaflet.css"></script>
<!-- mapbox for satellites -->
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.1.4/mapbox.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.1.4/mapbox.css' rel='stylesheet' />
<!-- style and geojsons -->
<script src="data/joined_isgchq.geojson"></script>
<link rel="stylesheet" type="text/css" href="src/style.css">
</head>
<body>
<div id='map'></div>
<nav id='map-ui'>
<li class="label"><b>Submarine Cable Taps</b></li><li class="label"><a href="https://github.com/lifewinning/submarine-cable-taps">README</a></li>
</nav>
<!-- <div id='info'></div> -->
<!-- the things -->
<script src="src/script.js"></script>
</body>
</html>