2023-09-11 14:59:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
/*Legend specific*/
|
|
|
|
.legend {
|
|
|
|
padding: 6px 8px;
|
|
|
|
font: 14px Arial, Helvetica, sans-serif;
|
|
|
|
background: white;
|
|
|
|
line-height: 24px;
|
|
|
|
color: #555;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
.coordinates {
|
|
|
|
justify-content: center;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
.cohidden {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
#latDeg, #lngDeg {
|
|
|
|
width: 170px;
|
|
|
|
}
|
|
|
|
#locator, #distance, #bearing {
|
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
2023-11-05 16:46:30 +00:00
|
|
|
<h2><?php echo lang('gridsquares_activated_gridsquare_map'); ?></h2>
|
2023-09-11 14:59:05 +00:00
|
|
|
|
2023-11-14 12:35:53 +00:00
|
|
|
<form class="d-flex align-items-center">
|
|
|
|
<label class="my-1 me-2" for="band"><?php echo lang('gridsquares_band'); ?></label>
|
2023-11-15 17:00:11 +00:00
|
|
|
<select class="form-select my-1 me-sm-2 w-auto" id="band">
|
2023-11-05 16:46:30 +00:00
|
|
|
<option value="All"><?php echo lang('general_word_all')?></option>
|
2023-09-11 14:59:05 +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-09-11 14:59:05 +00:00
|
|
|
echo ' selected="selected"';
|
|
|
|
}
|
|
|
|
echo '>'.$band.'</option>'."\n";
|
|
|
|
} ?>
|
|
|
|
</select>
|
|
|
|
<?php if (count($sats_available) != 0) { ?>
|
2023-11-14 12:35:53 +00:00
|
|
|
<label class="my-1 me-2" for="distplot_sats"><?php echo lang('gridsquares_sat'); ?></label>
|
2023-11-15 17:00:11 +00:00
|
|
|
<select class="form-select my-1 me-sm-2 w-auto" id="sats" <?php if ($user_default_band != "SAT") { ?>disabled<?php } ?>>
|
2023-11-05 16:46:30 +00:00
|
|
|
<option value="All"><?php echo lang('general_word_all')?></option>
|
2023-09-11 14:59:05 +00:00
|
|
|
<?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-11-14 12:35:53 +00:00
|
|
|
<label class="my-1 me-2" for="mode"><?php echo lang('gridsquares_mode'); ?></label>
|
2023-11-15 17:00:11 +00:00
|
|
|
<select class="form-select my-1 me-sm-2 w-auto" id="mode">
|
2023-11-05 16:46:30 +00:00
|
|
|
<option value="All"><?php echo lang('general_word_all')?></option>
|
2023-09-11 14:59:05 +00:00
|
|
|
<?php
|
|
|
|
foreach($modes as $mode){
|
|
|
|
if ($mode->submode ?? '' == '') {
|
|
|
|
echo '<option value="' . $mode . '">' . strtoupper($mode) . '</option>'."\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
2023-11-14 12:35:53 +00:00
|
|
|
<label class="my-1 me-2"><?php echo lang('gridsquares_confirmation'); ?></label>
|
2023-09-11 14:59:05 +00:00
|
|
|
<div>
|
|
|
|
<div class="form-check-inline">
|
|
|
|
<?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-09-11 14:59:05 +00:00
|
|
|
echo ' checked' ;
|
|
|
|
}
|
|
|
|
echo '>'; ?>
|
|
|
|
<label class="form-check-label" for="qsl">QSL</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check-inline">
|
|
|
|
<?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-09-11 14:59:05 +00:00
|
|
|
echo ' checked' ;
|
|
|
|
}
|
|
|
|
echo '>'; ?>
|
|
|
|
<label class="form-check-label" for="lotw">LoTW</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check-inline">
|
|
|
|
<?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-09-11 14:59:05 +00:00
|
|
|
echo ' checked' ;
|
|
|
|
}
|
|
|
|
echo '>'; ?>
|
|
|
|
<label class="form-check-label" for="eqsl">eQSL</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-11-14 12:35:53 +00:00
|
|
|
<button id="plot" type="button" name="plot" class="btn btn-primary me-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 me-1 ld-ext-right ld-ext-right-clear" onclick="clearMarkers()"><?php echo lang('gridsquares_button_clear_markers'); ?><div class="ld ld-ring ld-spin"></div></button>
|
2023-09-11 14:59:05 +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>
|
|
|
|
<div class="coordinates d-flex">
|
2023-11-30 09:37:57 +00:00
|
|
|
<div class="cohidden"><?php echo lang('gen_hamradio_latitude')?>: </div>
|
2023-11-14 12:35:53 +00:00
|
|
|
<div class="cohidden col-auto text-success fw-bold" id="latDeg"></div>
|
2023-11-30 09:37:57 +00:00
|
|
|
<div class="cohidden"><?php echo lang('gen_hamradio_longitude')?>: </div>
|
2023-11-14 12:35:53 +00:00
|
|
|
<div class="cohidden col-auto text-success fw-bold" id="lngDeg"></div>
|
2023-11-30 09:37:57 +00:00
|
|
|
<div class="cohidden"><?php echo lang('gen_hamradio_gridsquare')?>: </div>
|
2023-11-14 12:35:53 +00:00
|
|
|
<div class="cohidden col-auto text-success fw-bold" id="locator"></div>
|
2023-11-30 09:37:57 +00:00
|
|
|
<div class="cohidden"><?php echo lang('gen_hamradio_distance')?>: </div>
|
2023-11-14 12:35:53 +00:00
|
|
|
<div class="cohidden col-auto text-success fw-bold" id="distance"></div>
|
2023-11-30 09:37:57 +00:00
|
|
|
<div class="cohidden"><?php echo lang('gen_hamradio_bearing')?>: </div>
|
2023-11-14 12:35:53 +00:00
|
|
|
<div class="cohidden col-auto text-success fw-bold" id="bearing"></div>
|
2023-09-11 14:59:05 +00:00
|
|
|
</div>
|
2023-11-30 09:37:57 +00:00
|
|
|
<script>
|
|
|
|
var gridsquaremap = true;
|
2023-09-11 14:59:05 +00:00
|
|
|
var type = "activated";
|
2023-11-30 09:37:57 +00:00
|
|
|
<?php if ($visitor == true) { ?>
|
|
|
|
var visitor = true;
|
|
|
|
<?php } else { ?>
|
|
|
|
var visitor = false;
|
|
|
|
<?php } ?>
|
2023-09-11 14:59:05 +00:00
|
|
|
<?php
|
|
|
|
echo 'var jslayer ="' . $layer .'";';
|
|
|
|
echo "var jsattribution ='" . $attribution . "';";
|
|
|
|
echo "var homegrid ='" . strtoupper($homegrid[0]) . "';";
|
|
|
|
|
|
|
|
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_activated . '";';
|
|
|
|
?>
|
|
|
|
</script>
|