Skip to main content

wheelScrollable

Typeboolean
Defaulttrue
Added inv4.0.0

If set to true, the page can be scrolled using the mouse wheel within the canvas area.

caution

If this value is enabled, zooming is not possible using the mouse wheel.

Example

{
wheelScrollable: false,
projection: new EquirectProjection({
src: "/pano/equirect/veste.jpg",
})
}

The below example is the case using the option wheelScrollable: true.
You should use the mouse input to check this example.

{
wheelScrollable: true,
projection: new EquirectProjection({
src: "/pano/equirect/veste.jpg",
})
}