2023-06-20 16:39:37 +00:00
|
|
|
|
|
|
|
|
2023-06-19 09:03:29 +00:00
|
|
|
<style>
|
|
|
|
/*Legend specific*/
|
|
|
|
.legend {
|
|
|
|
padding: 6px 8px;
|
|
|
|
font: 14px Arial, Helvetica, sans-serif;
|
|
|
|
background: white;
|
|
|
|
line-height: 24px;
|
|
|
|
color: #555;
|
2023-07-02 14:50:06 +00:00
|
|
|
border-radius: 10px;
|
2023-06-19 09:03:29 +00:00
|
|
|
}
|
|
|
|
.legend h4 {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
margin: 2px 12px 8px;
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
.legend span {
|
|
|
|
position: relative;
|
|
|
|
bottom: 3px;
|
|
|
|
}
|
|
|
|
.legend i {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
float: left;
|
|
|
|
margin: 0 8px 0 0;
|
2023-07-02 14:50:06 +00:00
|
|
|
}
|
|
|
|
.coordinates {
|
2023-07-15 13:42:42 +00:00
|
|
|
justify-content: center;
|
2023-07-02 14:50:06 +00:00
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
.cohidden {
|
|
|
|
display:none;
|
2023-06-19 09:03:29 +00:00
|
|
|
}
|
2023-07-03 18:52:42 +00:00
|
|
|
#latDeg, #lngDeg {
|
|
|
|
width: 170px;
|
|
|
|
}
|
|
|
|
#locator, #distance, #bearing {
|
|
|
|
width: 120px;
|
|
|
|
}
|
2023-06-19 09:03:29 +00:00
|
|
|
</style>
|
2023-06-18 20:01:59 +00:00
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<h2><?php echo $page_title; ?></h2>
|
|
|
|
|
|
|
|
<form class="form-inline">
|
2023-06-20 19:09:13 +00:00
|
|
|
<label class="my-1 mr-2" for="band"><?php echo lang('gridsquares_band'); ?></label>
|
2023-06-18 20:01:59 +00:00
|
|
|
<select class="custom-select my-1 mr-sm-2" id="band">
|
|
|
|
<option value="All">All</option>
|
2023-07-07 14:04:19 +00:00
|
|
|
<?php foreach($bands as $band) {
|
|
|
|
echo '<option value="'.$band.'"';
|
2023-10-16 20:39:33 +00:00
|
|
|
if ($user_default_band == $band) {
|
2023-07-07 14:04:19 +00:00
|
|
|
echo ' selected="selected"';
|
|
|
|
}
|
|
|
|
echo '>'.$band.'</option>'."\n";
|
2023-06-18 20:01:59 +00:00
|
|
|
} ?>
|
|
|
|
</select>
|
2023-06-19 09:29:46 +00:00
|
|
|
<?php if (count($sats_available) != 0) { ?>
|
2023-06-20 19:09:13 +00:00
|
|
|
<label class="my-1 mr-2" for="distplot_sats"><?php echo lang('gridsquares_sat'); ?></label>
|
2023-10-16 20:39:33 +00:00
|
|
|
<select class="custom-select my-1 mr-sm-2" id="sats" <?php if ($user_default_band != "SAT") { ?>disabled<?php } ?>>
|
2023-06-19 09:29:46 +00:00
|
|
|
<option value="All">All</option>
|
|
|
|
<?php foreach($sats_available as $sat) {
|
|
|
|
echo '<option value="' . $sat . '"' . '>' . $sat . '</option>'."\n";
|
|
|
|
} ?>
|
|
|
|
</select>
|
|
|
|
<?php } else { ?>
|
|
|
|
<input id="sats" type="hidden" value="All"></input>
|
|
|
|
<?php } ?>
|
2023-06-20 19:09:13 +00:00
|
|
|
<label class="my-1 mr-2" for="mode"><?php echo lang('gridsquares_mode'); ?></label>
|
2023-06-18 20:01:59 +00:00
|
|
|
<select class="custom-select my-1 mr-sm-2" id="mode">
|
|
|
|
<option value="All">All</option>
|
2023-06-19 09:29:46 +00:00
|
|
|
<?php
|
|
|
|
foreach($modes as $mode){
|
2023-08-26 09:11:44 +00:00
|
|
|
if ($mode->submode ?? '' == '') {
|
2023-06-19 09:29:46 +00:00
|
|
|
echo '<option value="' . $mode . '">' . strtoupper($mode) . '</option>'."\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
2023-06-18 20:01:59 +00:00
|
|
|
</select>
|
2023-06-20 19:09:13 +00:00
|
|
|
<label class="my-1 mr-2"><?php echo lang('gridsquares_confirmation'); ?></label>
|
2023-06-18 20:01:59 +00:00
|
|
|
<div>
|
|
|
|
<div class="form-check-inline">
|
2023-07-07 14:04:19 +00:00
|
|
|
<?php echo '<input class="form-check-input" type="checkbox" name="qsl" id="qsl"';
|
2023-10-16 20:39:33 +00:00
|
|
|
if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Q') !== false) {
|
2023-07-07 14:04:19 +00:00
|
|
|
echo ' checked' ;
|
|
|
|
}
|
|
|
|
echo '>'; ?>
|
2023-06-18 20:01:59 +00:00
|
|
|
<label class="form-check-label" for="qsl">QSL</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check-inline">
|
2023-07-07 14:04:19 +00:00
|
|
|
<?php echo '<input class="form-check-input" type="checkbox" name="lotw" id="lotw"';
|
2023-10-16 20:39:33 +00:00
|
|
|
if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'L') !== false) {
|
2023-07-07 14:04:19 +00:00
|
|
|
echo ' checked' ;
|
|
|
|
}
|
|
|
|
echo '>'; ?>
|
2023-06-18 20:01:59 +00:00
|
|
|
<label class="form-check-label" for="lotw">LoTW</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check-inline">
|
2023-07-07 14:04:19 +00:00
|
|
|
<?php echo '<input class="form-check-input" type="checkbox" name="eqsl" id="eqsl"';
|
2023-10-16 20:39:33 +00:00
|
|
|
if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'E') !== false) {
|
2023-07-07 14:04:19 +00:00
|
|
|
echo ' checked' ;
|
|
|
|
}
|
|
|
|
echo '>'; ?>
|
2023-06-18 20:01:59 +00:00
|
|
|
<label class="form-check-label" for="eqsl">eQSL</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-07-15 13:42:42 +00:00
|
|
|
<button id="plot" type="button" name="plot" class="btn btn-primary mr-1 ld-ext-right ld-ext-right-plot" onclick="gridPlot(this.form)"><?php echo lang('gridsquares_button_plot'); ?><div class="ld ld-ring ld-spin"></div></button>
|
|
|
|
<button id="clear" type="button" name="clear" class="btn btn-primary mr-1 ld-ext-right ld-ext-right-clear" onclick="clearMarkers()">Clear markers<div class="ld ld-ring ld-spin"></div></button>
|
2023-06-18 20:01:59 +00:00
|
|
|
</form>
|
|
|
|
|
|
|
|
<?php if($this->session->flashdata('message')) { ?>
|
|
|
|
<!-- Display Message -->
|
|
|
|
<div class="alert-message error">
|
|
|
|
<p><?php echo $this->session->flashdata('message'); ?></p>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="gridmapcontainer">
|
|
|
|
<div id="gridsquare_map" style="width: 100%; height: 800px"></div>
|
|
|
|
</div>
|
2023-07-03 18:52:42 +00:00
|
|
|
<div class="coordinates d-flex">
|
2023-07-02 14:50:06 +00:00
|
|
|
<div class="cohidden">Latitude: </div>
|
|
|
|
<div class="cohidden col-auto text-success font-weight-bold" id="latDeg"></div>
|
|
|
|
<div class="cohidden">Longitude: </div>
|
|
|
|
<div class="cohidden col-auto text-success font-weight-bold" id="lngDeg"></div>
|
|
|
|
<div class="cohidden">Gridsquare: </div>
|
|
|
|
<div class="cohidden col-auto text-success font-weight-bold" id="locator"></div>
|
|
|
|
<div class="cohidden">Distance: </div>
|
|
|
|
<div class="cohidden col-auto text-success font-weight-bold" id="distance"></div>
|
|
|
|
<div class="cohidden">Bearing: </div>
|
|
|
|
<div class="cohidden col-auto text-success font-weight-bold" id="bearing"></div>
|
|
|
|
</div>
|
2023-06-20 16:39:37 +00:00
|
|
|
<script>var gridsquaremap = true;
|
2023-09-11 14:59:05 +00:00
|
|
|
var type = "worked";
|
2023-06-20 16:39:37 +00:00
|
|
|
<?php
|
|
|
|
echo 'var jslayer ="' . $layer .'";';
|
|
|
|
echo "var jsattribution ='" . $attribution . "';";
|
2023-07-02 14:50:06 +00:00
|
|
|
echo "var homegrid ='" . strtoupper($homegrid[0]) . "';";
|
2023-06-20 19:09:13 +00:00
|
|
|
|
|
|
|
echo 'var gridsquares_gridsquares = "' . $gridsquares_gridsquares . '";';
|
|
|
|
echo 'var gridsquares_gridsquares_confirmed = "' . $gridsquares_gridsquares_confirmed . '";';
|
|
|
|
echo 'var gridsquares_gridsquares_not_confirmed = "' . $gridsquares_gridsquares_not_confirmed . '";';
|
|
|
|
echo 'var gridsquares_gridsquares_total_worked = "' . $gridsquares_gridsquares_total_worked . '";';
|
2023-06-20 16:39:37 +00:00
|
|
|
?>
|
2023-07-07 14:04:19 +00:00
|
|
|
</script>
|