Skip to content

Commit

Permalink
Better precision
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Kastl <[email protected]>
  • Loading branch information
dkastl committed Oct 3, 2024
1 parent 9de2952 commit bb8eab9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,14 @@ <h1>Meshtastic QR Code Generator</h1>
<legend>Module Settings</legend>

<div class="form-group">
<label for="positionPrecision">Position Precision (0-32):</label>
<input type="number" id="positionPrecision" name="positionPrecision" min="0" max="32" value="0">
<label for="positionPrecision">Position Precision:</label>
<select id="positionPrecision" name="positionPrecision">
<option value="0">Location data is never sent</option>
<option value="11">Large region (±11 kilometers)</option>
<option value="13">City-sized region (±3 kilometers)</option>
<option value="16">Neighborhood-level (±350 meters)</option>
<option value="32" selected="selected">Full precision</option>
</select>
</div>

<div class="form-group">
Expand Down

0 comments on commit bb8eab9

Please sign in to comment.