Files
leaflet/docs/examples/zoom-levels/example-zero.md
2022-10-20 21:18:26 +02:00

508 B

layout, title
layout title
tutorial_frame Zoom Levels Tutorial
<script> const map = L.map('map', { minZoom: 0, maxZoom: 0 }); const cartodbAttribution = '© OpenStreetMap contributors, © CARTO'; const positron = L.tileLayer('https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png', { attribution: cartodbAttribution }).addTo(map); map.setView([0, 0], 0); </script>