forked from mapbox/geojson.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile.html
64 lines (64 loc) · 1.67 KB
/
mobile.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>
<title>mobile view</title>
<link href='lib/draw/leaflet.draw.css' rel='stylesheet' />
<link href='css/marker.css' rel='stylesheet' />
<link href='lib/mapbox.js/latest/mapbox.css' rel='stylesheet' />
<link href='css/base.css' rel='stylesheet' />
<link href='css/site.css' rel='stylesheet' />
<link rel='icon' type='image/x-icon' href='/img/favicon.png' />
<meta charset='utf-8'>
<meta name="viewport" content="initial-scale=1,maximum-scale=1">
<meta http-equiv='X-UA-Compatible' content='IE=Edge'>
<style>
body {
background:#eee;
margin:0;
color:#222;
font:normal 14px/20px 'Helvetica Neue';
}
h2 {
margin:0;
}
.layer-switch {
top:10px;
left:10px;
}
.pad1 {
padding:10px;
}
.fillE {
background:#eee;
}
p {
margin:0;
}
.bottom {
position:absolute;
bottom:0;
left:0;
right:0;
}
.geojsonio .map {
position:absolute;
top:0;
right:0;
bottom:0;
left:0;
}
.deemphasize {
color:#777;
}
</style>
</head>
<body>
<div class='geojsonio'></div>
<div class='pad1 fillE bottom'>
<p>geojson.io mobile <span class='deemphasize'>(read-only)</span></p>
</div>
<script src='lib/mapbox.js/latest/mapbox.js'></script>
<script src='dist/lib.js'></script>
<script src='dist/site.mobile.js'></script>
</body>
</html>