forked from mapbox/geojson.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (60 loc) · 2.3 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
<!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>
<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>
</head>
<body id='geojsonio-body'>
<div class='geojsonio'></div>
<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() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '51eee846108d7b2871000081');
t.src = '//secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
}
</script>
</body>
</html>