-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·129 lines (118 loc) · 5.81 KB
/
index.html
File metadata and controls
executable file
·129 lines (118 loc) · 5.81 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Crowd Editing">
<meta name="author" content="Robert Djurasaj">
<!-- Safari iOS - apps only -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Chrome for Android - NEW! -->
<meta name="mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href="images/brand.png">
<link rel="shortcut icon" href="images/favicon.ico">
<title>Geo Crowd Mapping</title>
<!-- Bootstrap core CSS -->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<!-- CSS -->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="//js.arcgis.com/3.8/js/esri/css/esri.css">
<link rel="stylesheet" type="text/css" href="http://esri.github.io/bootstrap-map-js/src/css/bootstrapmap.css">
<link rel="stylesheet" type="text/css" href="css/geocrowdmapping.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../bootstrap_v3/docs-assets/js/html5shiv.js"></script>
<script src="../bootstrap_v3/docs-assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top navbar-custom">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><span class="glyphicon glyphicon-globe"></span> Geo Crowd Mapping</a>
</div>
<div class="collapse navbar-collapse" id="navbar-contents">
<ul class="nav navbar-nav navbar-right" role="navigation">
<li><a href="#" data-toggle="modal" data-target="#modal-about">About</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div id="mapDiv">
<div id="locate-button"></div>
<div id="swipeDiv"></div>
</div>
<div class="btn-group-vertical draw-toolbar">
<button type="button" data-type="POINT" class="btn btn-default toolbar-btn icon-point"> </button>
<button type="button" data-type="MULTI_POINT" class="btn btn-default toolbar-btn icon-multipoint"> </button>
<button type="button" data-type="POLYLINE" class="btn btn-default toolbar-btn icon-line"> </button>
<button type="button" data-type="EXTENT" class="btn btn-default toolbar-btn icon-extent"> </button>
<button type="button" data-type="POLYGON" class="btn btn-default toolbar-btn icon-polygon"> </button>
<button type="button" data-type="FREEHAND_POLYLINE" class="btn btn-default toolbar-btn icon-pencil"> </button>
</div>
<div class="btn-group controls">
<button type="button" class="btn btn-danger clear"><i class="fa fa-trash-o fa-lg"></i></button>
</div>
<div class="modal fade" id="modal-about">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">About</h4>
</div>
<div class="modal-body">
<p>
Geo Crowd Mapping is a collaborative web app where you can make your edits (red) and see other people's edits (blue) in real time.
</p>
<p>
Use Layer Swipe widget for distraction-free-mode and/or to compare your edits with other users. Public layer is on the top and your (private) layer is on the bottom.
</p>
<p>
Use <button type="button" class="btn btn-danger"><i class="fa fa-trash-o fa-lg"></i></button> to delete your edits in the current session.
</p>
<p>
Have fun!
<br>
Cheers!!!
<br>
Robert
</p>
<hr>
<p>
Libraries Referenced:
<ul>
<li><a href="http://getbootstrap.com/" target="_blank">Bootstrap</a></li>
<li><a href="https://github.com/Esri/bootstrap-map-js" taget="_blank">Bootstrap-map-js</a></li>
<li><a href="http://jquery.com/" target="_blank">jQuery</a></li>
<li><a href="http://firebase.io">FirebaseIO</a></li>
<li><a href="http://fortawesome.github.io/">Font Awesome</a></li>
</ul>
</p>
<hr>
<p>
Made by Robert Djurasaj <a href="http://github.com/robertd"><i class="fa fa-github fa-lg"></i> robertd</a>
</p>
</div>
<div class="modal-footer">
<button class="btn btn-default" type="button" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="https://cdn.firebase.com/js/client/1.0.6/firebase.js"></script>
<script src="http://js.arcgis.com/3.8compact"></script>
<script src="js/arcgis.js"></script>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
</body>
</html>