docs/api-reference/widgets/scrollbar-widget.md
import {ScrollbarWidgetDemo} from '@site/src/doc-demos/widgets'; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
<ScrollbarWidgetDemo />This widget renders a scrollbar UI that mimics the native HTML scrolling behavior. It works with the OrthographicView to create a "scrollable" canvas of arbitrary size.
<Tabs groupId="language"> <TabItem value="js" label="JavaScript">import {Deck, OrthographicView} from '@deck.gl/core';
import {ScatterplotLayer} from '@deck.gl/layers';
import {ScrollbarWidget} from '@deck.gl/widgets';
import '@deck.gl/widgets/stylesheet.css';
const data = Array.from({length: 1000}, (_, i) => [i * 100, 0]);
new Deck({
views: new OrthographicView({'ortho'}),
controller: {scrollZoom: false},
initialViewState: {
target: [0, 0, 0],
zoom: 0
},
layers: [
new ScatterplotLayer({
id: 'points',
data,
getPosition: d => d,
getRadius: 20,
getFillColor: [200, 0, 80]
})
],
widgets: [
new ScrollbarWidget({
viewId: 'ortho',
contentBounds: [
[-100, 0, 0],
[100 * 1001, 0, 0]
],
orientation: 'horizontal',
captureWheel: true
})
]
});
import {Deck, OrthographicView} from '@deck.gl/core';
import {ScatterplotLayer} from '@deck.gl/layers';
import {ScrollbarWidget} from '@deck.gl/widgets';
import '@deck.gl/widgets/stylesheet.css';
type Point = [x: number, y: number];
const data = Array.from({length: 1000}, (_, i) => [i * 100, 0] as Point);
new Deck({
views: new OrthographicView({'ortho'}),
controller: {scrollZoom: false},
initialViewState: {
target: [0, 0, 0],
zoom: 0
},
layers: [
new ScatterplotLayer<Point>({
id: 'points',
data,
getPosition: d => d,
getRadius: 20,
getFillColor: [200, 0, 80]
})
],
widgets: [
new ScrollbarWidget({
viewId: 'ortho',
contentBounds: [
[-100, 0, 0],
[100 * 1001, 0, 0]
],
orientation: 'horizontal',
captureWheel: true
})
]
});
import React from 'react';
import DeckGL, {ScrollbarWidget} from '@deck.gl/react';
import {OrthographicView} from '@deck.gl/core';
import {ScatterplotLayer} from '@deck.gl/layers';
import '@deck.gl/widgets/stylesheet.css';
type Point = [x: number, y: number];
const data = Array.from({length: 1000}, (_, i) => [i * 100, 0] as Point);
function App() {
return (
<DeckGL
views={new OrthographicView({'ortho'})}
controller={{scrollZoom: false}}
initialViewState={{
target: [0, 0, 0],
zoom: 0
}}
layers={[
new ScatterplotLayer<Point>({
id: 'points',
data,
getPosition: d => d,
getRadius: 20,
getFillColor: [200, 0, 80]
})
]}
>
<ScrollbarWidget
viewId="ortho"
contentBounds={[
[-100, 0, 0],
[100 * 1001, 0, 0]
]}
orientation="horizontal"
captureWheel
/>
</DeckGL>
);
}
import {ScrollbarWidget, type ScrollbarWidgetProps} from '@deck.gl/widgets';
new ScrollbarWidget({} satisfies ScrollbarWidgetProps);
ScrollbarWidgetProps {#scrollbarwidgetprops}The ScrollbarWidget accepts the generic WidgetProps and:
The full extent of the scrollable content, in world coordinates. The widget relies on this value to calculate the position and size of the slider button and track. If not supplied, falls back to maxBounds of the controller. If no bounds definition is found, the scrollbar will always be hidden.
Direction of the scrollbar. 'horizontal' scrolls the camera along the X axis, and 'vertical' scrolls the camera along the Y axis.
'vertical'Pixels scrolled when clicked on the navigation buttons.
Pixels scrolled when clicked on the track.
Label of the step button at the start.
'Scroll left' if horizontal, 'Scroll up' if verticalLabel of the step button at the end.
'Scroll right' if horizontal, 'Scroll down' if verticalIf true, mouse wheel events over the canvas will be intercepted by this scrollbar. This is useful when the app wants to simulate the HTML native page scrolling behavior.
falseCustom markers to overlay on the track. This can serve as visual reference or highlights of areas of interest even when they are outside of the current viewport.
A ScrollbarDecoration object
contentBounds ([min: number[], max: number[]]) - world position that the decoration representscolor (string) - CSS color of the decorationtitle (string, optional) - Tooltip when the decoration is hoveredonClick (function, optional) - Callback when the decoration is clicked.
Receives the following parameters:
event (MouseEvent)
Return true to mark the event as handled, and prevent the default behavior.The ScrollbarWidget uses theme CSS variables for RangeInput.