DMRmap/static/index.html
2026-02-08 15:20:12 +01:00

44 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>DMRmap</title>
<link rel="stylesheet" href="lib/leaflet.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="map"></div>
<div id="controls">
<div class="controls-row">
<label class="band-label band-2m"><input type="checkbox" id="band-2m" checked> 2m</label>
<label class="band-label band-70cm"><input type="checkbox" id="band-70cm" checked> 70cm</label>
<span id="count" class="count"></span>
<button id="theme-toggle" class="theme-toggle" title="Toggle dark mode"></button>
</div>
<div class="controls-row route-row autocomplete-wrap">
<input type="text" id="route-from" placeholder="From address" autocomplete="off" />
<ul class="autocomplete-list" id="ac-from"></ul>
</div>
<div class="controls-row route-row autocomplete-wrap">
<input type="text" id="route-to" placeholder="To address" autocomplete="off" />
<ul class="autocomplete-list" id="ac-to"></ul>
</div>
<div class="controls-row route-row">
<button id="route-btn">Route</button>
<button id="clear-btn">Clear</button>
</div>
<div id="coords" class="coords-row"></div>
<div class="attribution">
Repeater data provided by <a href="https://radioid.net/database/dumps" target="_blank" rel="noopener">RadioID</a>.
Not affiliated with or endorsed by RadioID.<br>
Geocoding by <a href="https://nominatim.openstreetmap.org" target="_blank" rel="noopener">Nominatim</a>.
Routing by <a href="https://project-osrm.org" target="_blank" rel="noopener">OSRM</a>.
Map by <a href="https://www.openstreetmap.org/copyright" target="_blank" rel="noopener">OpenStreetMap</a>.<br>
Built by DA6KM. <a href="https://git.kida.io/marcus/DMRmap" target="_blank" rel="noopener">Source code</a>.
</div>
</div>
<script src="lib/leaflet.js"></script>
<script src="app.js"></script>
</body>
</html>