wheelScrollable
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
- JSON
- Javascript
- React
- Angular
- Vue@2
- Vue@3
- Svelte
{
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.
- JSON
- Javascript
- React
- Angular
- Vue@2
- Vue@3
- Svelte
{
wheelScrollable: true,
projection: new EquirectProjection({
src: "/pano/equirect/veste.jpg",
})
}