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:
Ole-Morten Duesund 2025-08-24 21:09:33 +02:00
commit 215456e281
2 changed files with 2 additions and 2 deletions

View file

@ -93,7 +93,7 @@
<span>Site Positions</span>
</label>
<label>
<input type="checkbox" id="show-range-rings">
<input type="checkbox" id="show-range-rings" checked>
<span>Range Rings</span>
</label>
<label>

View file

@ -9,7 +9,7 @@ export class MapManager {
this.sourceMarkers = new Map();
this.rangeCircles = new Map();
this.showSources = true;
this.showRange = false;
this.showRange = true;
this.selectedSource = null;
this.heatmapLayer = null;