-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
36 lines (36 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<title>Latest changes on OpenStreetMap</title>
<link rel='stylesheet' type='text/css' href='css/style.css' />
<link rel='stylesheet' type='text/css' href='css/site.css' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<link href='js/locationfilter/src/locationfilter.css' rel='stylesheet' />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.5.1/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.5.1/leaflet.ie.css" />
<![endif]-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.5.1/leaflet.js"></script>
</head>
<body>
<a href="https://github.com/osmlab/latest-changes"><img style="position: fixed; opacity: 0.8; top: 0; right: 0; border: 0; z-index: 10;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div class='container pad2'>
<div class='col6 pad2'>
<div id='heading'>
<h2>OSM Latest Changes</h2>
<p>Explore latest changes on OpenStreetMap</p>
</div>
<div id='results'>
</div>
</div>
<div id='map' class='faded'></div>
<div id='zoom-in' class='hide'>Zoom in to view changes</div>
</div>
<script src='js/d3.v3.min.js'></script>
<script src='js/moment.min.js'></script>
<script src='js/leaflet-hash.js'></script>
<script src='js/locationfilter/src/locationfilter.js'></script>
<script src='js/leaflet-osm.js'></script>
<script src='js/site.js'></script>
</body>
</html>