-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
159 lines (136 loc) · 6.34 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="QSO/ADIF Mapper">
<meta name="author" content="Stephen Houser">
<link rel="icon" href="favicon.ico">
<title>QSO/ADIF Mapper</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<!-- Bootstrap Table -- http://bootstrap-table.wenzhixin.net.cn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.12.1/bootstrap-table.min.css">
<!-- Font Awesome -->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> -->
<!-- Bootstrap Social (icons) -->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-social/5.1.1/bootstrap-social.min.css"> -->
<!-- Custom styles for this template -->
<link href="qso-mapper.css" rel="stylesheet">
<!-- ADIF file parsing functions -->
<script src="adif.js"></script>
<script src="locator.js"></script>
<!-- Map Library (Leaflet/OpenStreetMap or Google -->
<!-- Leaflet JS Mapping -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css" integrity="sha512-puBpdR0798OZvTTbP4A8Ix/l+A4dHDD0DGqYW6RQ+9jxkRFclaxxQb/SJAWZfWAkuyeQUytO7+7N4QKrDh+drA=="
crossorigin="" />
<script src="https://unpkg.com/leaflet@1.3.4/dist/leaflet.js" integrity="sha512-nMMmRyTVoLYqjP9hrbed9S+FzjZHW5gY1TWCHA5ckwXZBadntCNs8kEqAWdrb9O7rxbCaA4lKTIWjDXZxflOcA=="
crossorigin=""></script>
<script src="leaflet-map.js"></script>
<!-- The main code for this application -->
<script src="qso-mapper.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#">QSO Mapper</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault"
aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<div class="btn-group" role="group">
<button type="button" class="btn btn-primary" onclick="toggleMap(event);">Map</button>
<button type="button" class="btn btn-primary active" onclick="toggleLog(event);">Log</button>
</div>
<ul class="navbar-nav mr-auto">
<!-- <li class="nav-item active">
<a class="nav-link active" href="#" onclick="toggleMap(event);">Map</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" onclick="toggleCalLog(event);">Log</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="https://github.com/stephenhouser/qso-mapper/blob/master/README.md">About</a>
</li>
</ul>
<form id="fileUpload" class="form-inline">
<div class="custom-file">
<input type="file" class="custom-file-input mr-sm-2" id="fileInput" aria-describedby="fileHelp">
<label class="custom-file-label" for="fileInput"">Select file...</label>
</div>
</form>
<button id="resetButton" class="btn btn-danger m-1" ">Reset</button>
</div>
</nav>
<div id='container'>
<div id="map-canvas">
</div>
<div id="call-log">
<table id="call-table" data-toggle="table" data-search="true" data-pagination="true">
<thead>
<tr>
<th data-sortable="true" data-field="date_time">Date</th>
<th data-sortable="true" data-field="call">Call</th>
<th data-sortable="true" data-field="band">Band</th>
<th data-sortable="true" data-field="mode">Mode</th>
<th data-sortable="true" data-field="gridsquare">Grid</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="background">
<h2>Show the Map or the Log</h2>
<p>Neither Map or Log have been selected in the menu so there is nothing to show here.</p>
</div>
</div>
<!-- Google Maps -->
<!-- <script async defer src="https://maps.googleapis.com/maps/api/js?v=3.exp&callback=initQsoMapper"></script> -->
<!-- Bootstrap Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<!-- Bootstrap Table -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.12.1/bootstrap-table.min.js"></script>
<script>
initQsoMapper();
// These are UI controls, leaving here for the moment.
function toggleElement(element, menuLink) {
var currentDisplay = window.getComputedStyle(element).display;
if (currentDisplay === 'none') {
element.style.display = 'block';
menuLink.classList.remove('active');
} else {
element.style.display = 'none';
menuLink.classList.add('active');
}
}
function toggleLog(e) {
var sender = window.event.target;
var callLog = document.getElementById('call-log');
toggleElement(callLog, sender);
}
function toggleMap(e) {
var sender = window.event.target;
var mapCanvas = document.getElementById('map-canvas');
toggleElement(mapCanvas, sender);
}
// If a lat/long is specified in the query string, try to use it as the
// QTH/Operating location for the log file.
// This allows for semi-obvious location-range mapping
// ex: qth=22.303940,114.170372 will place a yellow marker at 22.3, 114.1 on the map
var qth = getQueryVariable('qth');
if (qth !== null) {
createQTHMarker(qth, "Home QTH")
}
</script>
</body>
</html>