forked from mapbox/geojson.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (106 loc) · 3.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=Edge'>
<link href='lib/mapbox.js/latest/mapbox.css' rel='stylesheet' />
<link rel='stylesheet' href='css/font-awesome/css/font-awesome.min.css'>
<link rel='stylesheet' href='css/fonts/mplus.css'>
<title>geojson.io</title>
<link href='lib/draw/leaflet.draw.css' rel='stylesheet' />
<link href='lib/codemirror/lib/codemirror.css' rel='stylesheet' />
<link href='css/base.css' rel='stylesheet' />
<link href='css/marker.css' rel='stylesheet' />
<link href='css/github_browse.css' rel='stylesheet' />
<link href='css/site.css' rel='stylesheet' />
<link href='css/theme.css' rel='stylesheet' />
<link rel='icon' type='image/x-icon' href='/img/favicon.png' />
<meta name='author' content='MapBox' />
<meta name='description' content='simply edit geojson map data' />
<meta property='og:site_name' content='geojson.io'/>
<meta name='viewport' content='initial-scale=1,maximum-scale=1'>
<!--[if lt IE 9]>
<script type='text/javascript' src='lib/aight.min.js'></script>
<![endif]-->
<script src='lib/mapbox.js/latest/mapbox.js'></script>
<script src='lib/raven.min.js'></script>
<meta http-equiv="Content-Security-Policy" content="
default-src
'self'
;
child-src
'self'
blob:
;
connect-src
'self'
*
;
font-src
'self'
;
frame-src
'self'
;
img-src
'self'
data:
*
;
script-src
'self'
'unsafe-eval'
'unsafe-inline'
https://cdn.segment.com
https://assets.customer.io
https://secure.gaug.es
https://www.google-analytics.com
;
style-src
'self'
'unsafe-inline'
;
">
<script>
if (/a\.tiles\.mapbox\.com/.test(L.mapbox.config.HTTP_URL)) {
Raven.config('https://[email protected]/11480', {
whitelistUrls: [/geojson\.io/],
ignoreErrors: [
'Uncaught Error: Error connecting to extension ckibcdccnfeookdmbahgiakhnjcddpki',
'Uncaught Error: Error connecting to extension pioclpoplcdbaefihamjohnefbikjilc'
]
}).install();
}
</script>
<style>
/*
* http://seclab.stanford.edu/websec/framebusting/framebust.pdf
*/
body { display: none; }
</style>
</head>
<body id='geojsonio-body'>
<div class='geojsonio'></div>
<script>
if (self == top) {
document.getElementsByTagName ("body")[0].style.display = 'block';
} else {
top.location = self.location;
}
</script>
<script src='dist/delegate.js'></script>
<script src='dist/lib.js'></script>
<script src='dist/site.js'></script>
<script type='text/javascript'>
if (/a\.tiles\.mapbox\.com/.test(L.mapbox.config.HTTP_URL)) {
var _gauges = _gauges || [];
(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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-12158002-18', 'auto');
ga('send', 'pageview');
}
</script>
</body>
</html>