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>
50 lines
1.3 KiB
HTML
50 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Leaflet debug page - Image Overlay</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/screen.css" />
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"leaflet": "../../dist/leaflet-src.js"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
<script type="module">
|
|
import {TileLayer, LatLng, Map, LatLngBounds, ImageOverlay} from 'leaflet';
|
|
|
|
const osmUrl = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png';
|
|
const osmAttrib = '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors';
|
|
const osm = new TileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib});
|
|
|
|
const map = new Map('map');
|
|
map.addLayer(osm);
|
|
|
|
const bounds = new LatLngBounds(
|
|
new LatLng(40.71222, -74.22655),
|
|
new LatLng(40.77394, -74.12544)
|
|
);
|
|
|
|
map.fitBounds(bounds);
|
|
|
|
const overlay = new ImageOverlay('https://maps.lib.utexas.edu/maps/historical/newark_nj_1922.jpg', bounds, {
|
|
opacity: 0.5,
|
|
interactive: true,
|
|
attribution: '© A.B.B Corp.'
|
|
});
|
|
|
|
map.addLayer(overlay);
|
|
|
|
overlay.on('dblclick', () => {
|
|
console.log('Double click on image.');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|