Files
phpvms/public/assets/vendor/leaflet/docs/examples/zoom-levels/example-zero.md
2017-12-27 17:20:34 -06:00

485 B

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