Leaflet/debug/map/max-bounds.html

42 lines
997 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>Leaflet debug page</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="../../dist/leaflet.css" />
<link rel="stylesheet" href="../css/mobile.css" />
<script src="../leaflet-include.js"></script>
</head>
<body>
<div id="map"></div>
2017-02-04 23:17:51 +08:00
<script>
2014-03-04 23:54:41 +08:00
var osmUrl = 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
2014-03-05 00:04:00 +08:00
osmAttrib = '&copy; <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors',
osm = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib}),
bounds = new L.LatLngBounds(new L.LatLng(49.5, -11.3), new L.LatLng(61.2, 2.5));
var map = new L.Map('map', {
center: bounds.getCenter(),
zoom: 7,
2014-03-04 23:54:41 +08:00
layers: [osm],
maxBounds: bounds
});
2016-06-28 21:14:24 +08:00
var latlngs = L.rectangle(bounds).getLatLngs();
2016-06-28 21:14:24 +08:00
L.polyline(latlngs[0].concat(latlngs[0][0])).addTo(map);
2015-04-29 17:02:51 +08:00
map.setMaxBounds(bounds); // Should not enter infinite recursion
</script>
</body>
</html>