Why does mapbox map zoom not work in safari using mouse wheel? Also can’t find information about similar problem on internet
// I tried many things like:
map.scrollZoom.enable();
//or
map.on('wheel', function(e) {
if (!e.originalEvent.ctrlKey) {
e.preventDefault();
map.scrollZoom.disable();
} else {
map.scrollZoom.enable();
}
});
New contributor
Daryna Diakovska is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.