PMTiles service
This service exposes the Protomaps archive as cached MVT vector tiles.
A Leaflet frontend can connect to
https://tiles.ynv.rs/20260804/{z}/{x}/{y}.mvt with
protomaps-leaflet. No API key is required.
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css">
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<script src="https://unpkg.com/protomaps-leaflet@5.0.0/dist/protomaps-leaflet.js"></script>
<style>#map { height: 500px; }</style>
<div id="map"></div>
<script>
const map = L.map("map").setView([51.1657, 10.4515], 6);
protomapsL.leafletLayer({
url: "https://tiles.ynv.rs/20260804/{z}/{x}/{y}.mvt",
flavor: "light",
lang: "de"
}).addTo(map);
</script>