mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-12-08 21:26:14 +00:00
Signed-off-by: Jon Koops <jonkoops@gmail.com> Co-authored-by: Florian Bischof <design.falke@gmail.com>
52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Leaflet debug page - Max Bounds Bouncy</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" />
|
|
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
|
<link rel="stylesheet" href="../css/mobile.css" />
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"leaflet": "../../dist/leaflet-src.js"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Left: Bouncy maxBounds. Right: Not bouncy.</h1>
|
|
<div id="map1" style="float: left; width:45%; height: 80%;"></div>
|
|
<div id="map2" style="float: left; width:45%; height: 80%;"></div>
|
|
<script type="module">
|
|
import {TileLayer, LatLngBounds, LatLng, Map, Rectangle, Polyline} from 'leaflet';
|
|
|
|
const osmUrl = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png';
|
|
const osm1 = new TileLayer(osmUrl, {maxZoom: 18});
|
|
const osm2 = new TileLayer(osmUrl, {maxZoom: 18});
|
|
const bounds = new LatLngBounds(new LatLng(49.5, -11.3), new LatLng(61.2, 2.5));
|
|
|
|
const map1 = new Map('map1', {
|
|
center: bounds.getCenter(),
|
|
zoom: 5,
|
|
layers: [osm1],
|
|
maxBounds: bounds,
|
|
maxBoundsViscosity: 0.75
|
|
});
|
|
|
|
const map2 = new Map('map2', {
|
|
center: bounds.getCenter(),
|
|
zoom: 5,
|
|
layers: [osm2],
|
|
maxBounds: bounds,
|
|
maxBoundsViscosity: 1.0
|
|
});
|
|
|
|
const latlngs = new Rectangle(bounds).getLatLngs();
|
|
|
|
new Polyline(latlngs[0].concat(latlngs[0][0])).addTo(map1);
|
|
new Polyline(latlngs[0].concat(latlngs[0][0])).addTo(map2);
|
|
</script>
|
|
</body>
|
|
</html>
|