Files
phpvms/public/assets/vendor/leaflet/docs/examples/video-overlay/example-bounds.md
2017-12-27 17:20:34 -06:00

689 B

layout, title
layout title
tutorial_frame Video Overlay Tutorial
<script> var map = L.map('map'); L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', { maxZoom: 18, attribution: 'Map data © OpenStreetMap contributors, ' + 'CC-BY-SA, ' + 'Imagery © Mapbox', id: 'mapbox.satellite' }).addTo(map); bounds = L.latLngBounds( 32, -130], [ 13, -100); L.rectangle(bounds).addTo(map); map.fitBounds(bounds); </script>