/
githubmirror
/
Leaflet
Обзор
Документация
Войти
/
githubmirror
/
Leaflet
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.2.0
debug/map/max-bounds.html
41 строка
997 B
Thach Hoang
Fix debug examples after rollup (#5417)
28 мар 2017, 09:40
28 мар 2017, 09:40
0d1eae3
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <title>Leaflet debug page</title> <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> <link rel="stylesheet" href="../../dist/leaflet.css" /> <link rel="stylesheet" href="../css/mobile.css" /> <script src="../leaflet-include.js"></script> </head> <body> <div id="map"></div> <script> var osmUrl = 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', osmAttrib = '© <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors', osm = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib}), bounds = new L.LatLngBounds(new L.LatLng(49.5, -11.3), new L.LatLng(61.2, 2.5)); var map = new L.Map('map', { center: bounds.getCenter(), zoom: 7, layers: [osm], maxBounds: bounds }); var latlngs = L.rectangle(bounds).getLatLngs(); L.polyline(latlngs[0].concat(latlngs[0][0])).addTo(map); map.setMaxBounds(bounds); // Should not enter infinite recursion </script> </body> </html>