Leaflet/docs/examples/video-overlay/example-bounds.md

24 lines
702 B
Markdown
Raw Normal View History

---
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,
2018-05-04 20:18:40 +08:00
attribution: 'Map data &copy; <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, ' +
2018-05-04 20:17:13 +08:00
'<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
2018-05-04 20:17:41 +08:00
'Imagery © <a href="https://www.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>