forked from DHDPIC/DATA_WALKING
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjects.html
More file actions
117 lines (104 loc) · 3.31 KB
/
Copy pathobjects.html
File metadata and controls
117 lines (104 loc) · 3.31 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
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<title>Data Stories Objects</title>
<meta name="description" content="" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
<meta property="og:title" content="" />
<meta property="og:type" content="" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<link rel="manifest" href="site.webmanifest" />
<link rel="apple-touch-icon" href="icon.png" />
<!-- Place favicon.ico in the root directory -->
<!-- Latest compiled and minified CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script
src="https://unpkg.com/ml5@0.12.2/dist/ml5.min.js"
type="text/javascript"
></script>
<meta name="theme-color" content="#fafafa" />
</head>
<body>
<div id="shield">
<p id="shield-text">
You must enable location services and allow this page to know your
location to use this web app.
</p>
</div>
<header>
<h3>Data Stories Object</h3>
</header>
<p id="geo-enabled">You must enable location services to use this app.</p>
<!-- Map Section -->
<div class="container-fluid">
<div class="row">
<div class="col">
<div id="map"></div>
</div>
</div>
<div class="row">
<div class="col">
<div id="vid"></div>
<div id="hiddenvid"></div>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<textarea
rows="10"
class="input-field"
id="inputField1"
placeholder="Objects recorded..."
></textarea>
</div>
<div class="col-xs-3">
<p class="phide">`</p>
<button class="count-button" id="adder1" value="1">Snapshot</button>
</div>
<div class="col-xs-3">
<p class="number-tracker" id="countNumberTracker1"></p>
<button
class="count-button"
id="adder2"
value="2"
data-label="Record"
>
Start
</button>
</div>
</div>
<div class="row">
<div class="col-xs-4">
<button class="master-button" id="resetData">Reset Data</button>
</div>
<div class="col-xs-4">
<button class="master-button" id="exportCSV">Export CSV</button>
</div>
<div class="col-xs-4"></div>
<div class="col-xs-4">
<button class="master-button" id="exportGeoJson">
Export GeoJson
</button>
</div>
</div>
</div>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/utils.js"></script>
<script src="js/objects.js"></script>
</body>
</html>