/
githubmirror
/
Leaflet
Обзор
Документация
Войти
/
githubmirror
/
Leaflet
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
debug/map/scroll.html
45 строк
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 - Scroll</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 style="position: absolute; top: 100px; left: 100px; border: 1px solid green"> <div style="position: relative; margin-top: 500px; width: 800px; border: 1px solid red; margin-left: 200px"> <div style="height: 600px; overflow: auto"> <div id="map" style="width: 600px; height: 1000px; border: 1px solid #ccc"></div> </div> </div> </div> <script type="module"> import {TileLayer, LatLng, LeafletMap, Popup} from 'leaflet'; const osmUrl = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png'; const osm = new TileLayer(osmUrl, {maxZoom: 18}); const latlng = new LatLng(50.5, 30.51); const map = new LeafletMap('map', {center: latlng, zoom: 15, layers: [osm]}); let s = ''; for (let i = 0; i < 100; i++) { s += 'Test<br>'; } new Popup({maxHeight: 100}) .setContent(s) .setLatLng(latlng) .openOn(map); </script> </body> </html>