-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloadSaved.html
64 lines (52 loc) · 1.99 KB
/
loadSaved.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
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Picasa-Map</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<link href='https://api.mapbox.com/mapbox.js/v2.2.1/mapbox.css' rel='stylesheet' />
<link href='content/css/style.css' rel='stylesheet' />
<link href='content/css/featherlight.min.css' rel='stylesheet' />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src='https://api.mapbox.com/mapbox.js/v2.2.1/mapbox.js'></script>
<script src="content/js/leaflet.markercluster.js"></script>
<script src='content/js/usernames.json'></script>
<script src='content/js/functions.js'></script>
<script src='content/js/featherlight.min.js'></script>
</head>
<body>
<!-- <div id='rightPanel'>-->
<div id='savedMap'></div>
<div id='mapLoaderContainer'>
<div class='mapLoader'></div>
</div>
<div id='noGPSMessage'>
<p>It looks like there are no GPS images in this album</p>
<p>Try another </p>
</div>
<!-- </div>-->
<script>
//Load the map
L.mapbox.accessToken = usernames.mapBoxToken;
map = L.mapbox.map('savedMap', 'mapbox.streets')
.setView([0, 0], 4);
myLayer = L.mapbox.featureLayer().addTo(map);
$(document).ready(function () {
getUrlVariables();
});
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-35212537-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>