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>
43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Leaflet debug page - Reuse Popups</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 {Map, Marker, TileLayer, Popup} from 'leaflet';
|
|
|
|
const map = new Map('map');
|
|
|
|
new Marker([51.5, -0.09])
|
|
.bindPopup('<b>Hello world!</b><br />I am a popup.')
|
|
.addTo(map);
|
|
|
|
const marker2 = new Marker([51.525, -0.09])
|
|
.addTo(map);
|
|
|
|
map.setView([51.505, -0.09], 13);
|
|
|
|
new TileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
|
|
}).addTo(map);
|
|
|
|
const popup = new Popup().setContent('Previously created');
|
|
|
|
marker2.bindPopup(popup);
|
|
</script>
|
|
</body>
|
|
</html>
|