/
githubmirror
/
Leaflet
Обзор
Документация
Войти
/
githubmirror
/
Leaflet
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
debug/map/markers.html
52 строки
1 KB
Simon Legner
Rename `Map` to `LeafletMap` and keep `Map` as alias (#9892)
11 ноя 2025, 21:28
Не верифицирован
11 ноя 2025, 21:28
2e9b617
Код
Авторство
О чём код?
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Leaflet debug page - Markers</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 {LeafletMap, Marker, Polygon, TileLayer} from 'leaflet'; const map = new LeafletMap('map', {center: [0, 0], zoom: 3, maxZoom: 4}); const markerStatic = new Marker([0, -10], { draggable: false, title: 'Static' }); map.addLayer(markerStatic); markerStatic.bindPopup('Static'); const markerDraggable = new Marker([0, 10], { title: 'Draggable' }); map.addLayer(markerDraggable); markerDraggable.bindPopup('Draggable'); markerDraggable.dragging.enable(); const poly = new Polygon([[0, 10], [0, 15.5], [0, 50], [20, 20.5]]); map.addLayer(poly); poly.bindPopup('Polygon'); markerDraggable.on('click', () => console.log('markerDraggable click')); markerStatic.on('click', () => console.log('markerStatic click')); map.on('click', () => console.log('map click')); poly.on('click', () => console.log('poly click')); new TileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map); </script> </body> </html>