Open site modal after map transition

This commit is contained in:
Nicolò P 2024-11-21 21:32:12 +01:00
parent 906daecbcc
commit ff379acb13

View File

@ -213,12 +213,15 @@ UI.sitesMenu = function (menuListSel, map, sites) {
// zoom to layer...
const layer = sites.customGetLayer(layerId);
const data = await GIS.layerData(layerId);
this.openSiteModal(data, '#site-data');
map.setView(
layer.getBounds().getCenter(),
19,
{animate: true, duration: 1, easeLinearity: 0.25}
);
setTimeout(
() => this.openSiteModal(data, '#site-data'),
1200
);
}
});
}