Default range rings to enabled
- Set showRange to true by default in map-manager.js - Check range rings checkbox by default in HTML - Provides better initial user experience with distance reference 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
50c27b6259
commit
215456e281
2 changed files with 2 additions and 2 deletions
|
|
@ -93,7 +93,7 @@
|
||||||
<span>Site Positions</span>
|
<span>Site Positions</span>
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" id="show-range-rings">
|
<input type="checkbox" id="show-range-rings" checked>
|
||||||
<span>Range Rings</span>
|
<span>Range Rings</span>
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ export class MapManager {
|
||||||
this.sourceMarkers = new Map();
|
this.sourceMarkers = new Map();
|
||||||
this.rangeCircles = new Map();
|
this.rangeCircles = new Map();
|
||||||
this.showSources = true;
|
this.showSources = true;
|
||||||
this.showRange = false;
|
this.showRange = true;
|
||||||
this.selectedSource = null;
|
this.selectedSource = null;
|
||||||
this.heatmapLayer = null;
|
this.heatmapLayer = null;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue