dve/index.html
2026-05-02 10:24:59 +02:00

43 lines
971 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Tile Server Comparison Viewer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""
/>
<link
rel="stylesheet"
href="dve.css"
/>
<script
src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""
></script>
<script
src="dve.js"
></script>
</head>
<body>
<div id="container">
<div class="map-wrapper">
<select id="select1" class="selector"></select>
<div id="map1" class="map"></div>
</div>
<div class="map-wrapper">
<select id="select2" class="selector"></select>
<div id="map2" class="map"></div>
</div>
</div>
</body>
</html>