fix: enable scroll wheel zoom in fullscreen mode
All checks were successful
Deploy Internet for Kids / Build & Push (push) Successful in 13s
Deploy Internet for Kids / Deploy (push) Successful in 5s
Deploy Internet for Kids / Health Check (push) Successful in 1s
Deploy Internet for Kids / Smoke Tests (push) Successful in 2s
Deploy Internet for Kids / IndexNow Ping (push) Successful in 7s
Deploy Internet for Kids / Promote to Latest (push) Successful in 2s
Deploy Internet for Kids / Rollback (push) Has been skipped
Deploy Internet for Kids / Audit (push) Successful in 2s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-04-03 16:07:20 +03:00
parent 00194c4ce8
commit 30a6642e18

View File

@@ -78,6 +78,15 @@ function ifkInitMap() {
window._ifkMap.addControl(new maplibregl.NavigationControl({ showCompass: false }), 'top-right');
window._ifkMap.addControl(new maplibregl.FullscreenControl(), 'top-right');
// Enable scroll zoom in fullscreen
document.addEventListener('fullscreenchange', function() {
if (document.fullscreenElement) {
window._ifkMap.scrollZoom.enable();
} else {
window._ifkMap.scrollZoom.disable();
}
});
window._ifkMap.on('load', function() {
fetch('{{ "data/countries-50m.json" | relURL }}')
.then(function(r) { return r.json(); })