151 行
		
	
	
	
		
			6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			151 行
		
	
	
	
		
			6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
|  | 
 | ||
|  | 
 | ||
|  | <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> | ||
|  | 
 | ||
|  | 	<h2><?php echo $page_title; ?></h2>
 | ||
|  | 
 | ||
|  | <form class="form-inline"> | ||
|  |             <label class="my-1 mr-2" for="band"><?php echo lang('gridsquares_band'); ?></label>
 | ||
|  |             <select class="custom-select my-1 mr-sm-2"  id="band"> | ||
|  |                 <option value="All">All</option> | ||
|  |                 <?php foreach($bands as $band) { | ||
|  |                     echo '<option value="'.$band.'"'; | ||
|  |                     if ($user_gridmap_default_band == $band) { | ||
|  |                         echo ' selected="selected"'; | ||
|  |                     } | ||
|  |                     echo '>'.$band.'</option>'."\n"; | ||
|  |                 } ?>
 | ||
|  |             </select> | ||
|  |             <?php if (count($sats_available) != 0) { ?>
 | ||
|  |                 <label class="my-1 mr-2" for="distplot_sats"><?php echo lang('gridsquares_sat'); ?></label>
 | ||
|  |                 <select class="custom-select my-1 mr-sm-2"  id="sats" <?php if ($user_gridmap_default_band != "SAT") { ?>disabled<?php } ?>>
 | ||
|  |                     <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 } ?>
 | ||
|  | 			<label class="my-1 mr-2" for="mode"><?php echo lang('gridsquares_mode'); ?></label>
 | ||
|  |             <select class="custom-select my-1 mr-sm-2"  id="mode"> | ||
|  | 			<option value="All">All</option> | ||
|  |                     <?php | ||
|  |                     foreach($modes as $mode){ | ||
|  |                         if ($mode->submode ?? '' == '') { | ||
|  |                             echo '<option value="' . $mode . '">' . strtoupper($mode) . '</option>'."\n"; | ||
|  |                         } | ||
|  |                     } | ||
|  |                     ?>
 | ||
|  |             </select> | ||
|  | 			<label class="my-1 mr-2"><?php echo lang('gridsquares_confirmation'); ?></label>
 | ||
|  |                 <div> | ||
|  |                     <div class="form-check-inline"> | ||
|  |                     <?php echo '<input class="form-check-input" type="checkbox" name="qsl" id="qsl"'; | ||
|  |                         if (isset($user_gridmap_confirmation) && strpos($user_gridmap_confirmation, 'Q') !== false) { | ||
|  |                             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"'; | ||
|  |                         if (isset($user_gridmap_confirmation) && strpos($user_gridmap_confirmation, 'L') !== false) { | ||
|  |                             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"'; | ||
|  |                         if (isset($user_gridmap_confirmation) && strpos($user_gridmap_confirmation, 'E') !== false) { | ||
|  |                             echo ' checked' ; | ||
|  |                         } | ||
|  |                         echo '>'; ?>
 | ||
|  |                         <label class="form-check-label" for="eqsl">eQSL</label> | ||
|  |                     </div> | ||
|  |                 </div> | ||
|  | 
 | ||
|  |             <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> | ||
|  | </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"> | ||
|  |         <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> | ||
|  | <script>var gridsquaremap = true; | ||
|  | var type = "activated"; | ||
|  | <?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> |