-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (61 loc) · 2.07 KB
/
index.html
File metadata and controls
66 lines (61 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="libraries/geojson.min.js"></script>
<script src="libraries/togeojson.js"></script>
<script src=" https://npmcdn.com/@turf/turf/turf.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://unpkg.com/shapefile@0.6"></script>
<script src="https://unpkg.com/shpjs@latest/dist/shp.js"></script>
<script type="text/javascript"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container expand-container">
<div class="row expand-row">
<div class="col-3">
<span class="lead vert-center"><img class="logo" src="libraries/icon_survey_photo.svg">Flight Plan from SHP, KML, or ZIP</span>
</div>
<div class="col-1 right">
<i>
<img src="https://s3.amazonaws.com/drone-deploy-plugins/templates/login-example-imgs/arrow-down.svg" alt="collapse" class="expand-arrow">
</i>
</div>
</div>
<div class="expand-section" style="display: none;">
<div class="row">
<div class="input-field col-4">
<button class="input-button">
<img src="libraries/upload.png"/>
</button>
<input type="file" id="input">
<input type="text" id="upload" placeholder="Import .kml, .shp, or .zip file">
</div>
</div>
<div class="expand-section">
<div class="row">
<div class="col-4">
<button id="verify">Submit</button>
</div>
</div>
<div class="check-go" style="display: none;">
<div class="row">
<div class="col-4">
<button id="plan">Create Plan</button>
</div>
</div>
</div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<p class="modal-paragraph"></p>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>