29 lines
761 B
HTML
29 lines
761 B
HTML
<!doctype html>
|
|
|
|
<html>
|
|
<body>
|
|
<button id="locate">
|
|
<i data-lucide="locate-fixed"></i>
|
|
</button>
|
|
<div id="info">
|
|
<div class="info-box">
|
|
<p class="title">Layer ID</p>
|
|
<div id="layer">0</div>
|
|
</div>
|
|
<div class="info-box">
|
|
<p class="title">LatLng</p>
|
|
<div id="lnglat">00.00 00.00</div>
|
|
</div>
|
|
<div class="info-box">
|
|
<p class="title">Selected</p>
|
|
<div id="selected">
|
|
<div>None</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="map"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|