Variable ControlsComponentConst
ControlsComponent: {
data: (() => {
hasLasso: boolean;
ready: boolean;
});
methods: {
doClear: (() => void);
panMode: (() => void);
redo: (() => void);
selectMode: (() => void);
undo: (() => void);
zoomToFit: (() => void);
};
name: string;
props: {
className: {
default: string;
type: StringConstructor;
};
clear: {
default: boolean;
type: BooleanConstructor;
};
clearMessage: {
default: string;
type: StringConstructor;
};
onMaybeClear: {
type: FunctionConstructor;
};
orientation: {
default: string;
type: StringConstructor;
};
surfaceId: {
default: string;
type: StringConstructor;
};
undoRedo: {
default: boolean;
type: BooleanConstructor;
};
zoomToExtents: {
default: boolean;
type: BooleanConstructor;
};
};
mounted(): void;
render(): VNode<RendererNode, RendererElement, {
[key: string]: any;
}>;
} = ...
Provides a controls component offering buttons to zoom to extents, set surface mode, undo/redo etc.