Lazy load tile layers thumbnails

The list can be pretty big (like on OSMfr).
This commit is contained in:
David Larlet 2023-05-18 12:54:36 -04:00
parent d0f89c3be2
commit 18cb5ba7c6

View file

@ -975,6 +975,7 @@ L.U.TileLayerControl = L.Control.extend({
img = L.DomUtil.create('img', '', el), img = L.DomUtil.create('img', '', el),
name = L.DomUtil.create('div', '', el) name = L.DomUtil.create('div', '', el)
img.src = L.Util.template(tilelayer.options.url_template, this.map.demoTileInfos) img.src = L.Util.template(tilelayer.options.url_template, this.map.demoTileInfos)
img.loading = 'lazy'
name.textContent = tilelayer.options.name name.textContent = tilelayer.options.name
L.DomEvent.on( L.DomEvent.on(
el, el,