UNPKG

leaflet

Version:

JavaScript library for mobile-friendly interactive maps

24 lines (17 loc) 689 B
--- layout: tutorial_frame title: 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 &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' + '<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' + 'Imagery © <a href="http://mapbox.com">Mapbox</a>', id: 'mapbox.satellite' }).addTo(map); bounds = L.latLngBounds([[ 32, -130], [ 13, -100]]); L.rectangle(bounds).addTo(map); map.fitBounds(bounds); </script>