mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-08-15 22:36:58 +00:00

Signed-off-by: Jon Koops <jonkoops@gmail.com> Co-authored-by: Florian Bischof <design.falke@gmail.com>
32 lines
819 B
HTML
32 lines
819 B
HTML
<!doctype html>
|
|
<html dir="rtl">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Leaflet debug page - RTL2</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>
|
|
<div id="map"></div>
|
|
<script type="module">
|
|
import {Map, TileLayer, Popup} from 'leaflet';
|
|
|
|
const map = new Map('map').setView([51.505, -0.09], 13);
|
|
|
|
new TileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);
|
|
|
|
map.on('click', (e) => {
|
|
new Popup().setLatLng(e.latlng).setContent('Hello').openOn(map);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|