-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
55 lines (53 loc) · 2.29 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
<!DOCTYPE html>
<html>
<head>
<title>OSM Note</title>
<meta name='viewport' content='initial-scale=1.0 maximum-scale=1.0'>
<link rel='stylesheet' type='text/css' href='css/site.css' />
<link rel='apple-touch-icon-precomposed' href='css/icon.png'/>
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<link rel='stylesheet' href='js/lib/leaflet/leaflet.css' />
<link rel='stylesheet' type='text/css' href='css/add2home.css' />
<script src='js/lib/add2home.js'></script>
</head>
<body>
<div>
<div>
<div id='map'></div>
<button class='geolocate'>geolocate</button>
<div class='pad1'>
<textarea placeholder='report issues with the map, features that should be added, or save details for adding tags later'
class='curvy' id='note-comment'></textarea>
<button class='big save'>Save</button>
<div class='center pad1 drop'>
<a href='#' class='small deemphasize login'>Log In</a>
</div>
</div>
<div class='pad1 drop'>
<h2><span>Saved Notes</span></h2>
<hr class='through' />
<ul id='saved-notes' class='pad1'>
</ul>
</div>
<div class='pad2'>
<p class='tiny deemphasize center'>
Maps are © MapBox, data by OpenStreetMap Contributors under the ODbL license. Your
notes are licensed under the ODbL
</p>
</div>
</div>
</div>
<script src='js/lib/leaflet/leaflet.js'></script>
<script src='js/leaflet-hash/leaflet-hash.js'></script>
<script src='js/lib/fastclick.js'></script>
<script src='js/lib/zepto.min.js'></script>
<script src='js/site.js'></script>
<script>
window.addEventListener('load', function() {
new FastClick(document.body);
}, false);
</script>
</body>
</html>