forked from PeWu/osm-history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 2.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html ng-app="osmHistory">
<head>
<meta charset="utf-8" />
<title ng-bind="title">OSM history</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://code.angularjs.org/1.5.8/angular.js"></script>
<script src="https://code.angularjs.org/1.5.8/angular-route.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/x2js/1.2.0/xml2json.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.0-rc.3/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-leaflet-directive/0.10.0/angular-leaflet-directive.js"></script>
<script src="https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/Leaflet.fullscreen.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/osm-auth@1/osmauth.min.js"></script>
<script src="osm-service.js"></script>
<script src="login-ctrl.js"></script>
<script src="home-ctrl.js"></script>
<script src="history-ctrl.js"></script>
<script src="app.js"></script>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.0-rc.3/leaflet.css"
/>
<link
rel="stylesheet"
href="https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/leaflet.fullscreen.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1><a ng-href="#/">OSM History Viewer</a></h1>
<div ng-view></div>
<div class="clearfix"></div>
<div class="footer">
<div class="text-left col-md-6">
<osm-login></osm-login>
</div>
<div class="text-right col-md-6">
<a href="https://github.com/PeWu/osm-history"
>Page source on GitHub</a
>
</div>
</div>
</div>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RTY09ZYRRQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RTY09ZYRRQ');
</script>
</body>
</html>