/
githubmirror
/
Leaflet
Обзор
Документация
Войти
/
githubmirror
/
Leaflet
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
debug/vector/vector-simple.html
40 строк
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> <head> <meta charset="utf-8" /> <title>Leaflet debug page - Vector Simple</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 {LeafletMap, TileLayer, Marker, Circle, Polygon} from 'leaflet'; const map = new LeafletMap('map') .setView([51.505, -0.09], 13); map.addLayer(new TileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {maxZoom: 18})); new Marker([51.5, -0.09]) .bindPopup('<b>Hello world!</b><br />I am a popup.') .addTo(map); new Circle([51.508, -0.11], 500, {color: '#f03', opacity: 0.7}) .bindPopup('I am a circle.') .addTo(map); new Polygon([[51.509, -0.08], [51.503, -0.06], [51.51, -0.047]]) .bindPopup('I am a polygon.') .addTo(map); </script> </body> </html>