-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·52 lines (49 loc) · 1.93 KB
/
index.html
File metadata and controls
executable file
·52 lines (49 loc) · 1.93 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.2.0/dist/leaflet.css" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="wrapper">
<div class="sidebar">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="form-group">
<label>Source data</label>
<textarea wrap="off" class="form-control" rows="7" id="csv"></textarea>
</div>
<div class="form-group">
<label>Separator</label>
<select class="form-control" id="delimiter">
<option value="tab">tab</option>
<option value=",">,</option>
<option value=";">;</option>
</select>
</div>
<div class="form-group">
<label>Field of interest</label>
<select class="form-control" id="color">
</select>
</div>
<div class="form-group">
<button type="button" id="plotbutton" class="btn btn-default" onclick="plot()">Plot</button>
</div>
</div>
</div>
</div>
</div>
<div id="map">
</div>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="data.js"></script>
<script src="csvtojson.min.js"></script>
<script src="bundle.js"></script>
</body>
</html>