@ulb-darmstadt/photogrammetry-viewer
Version:
```console npm i photogrammetry-viewer ``` This library provides an HTML web component that displays photogrammetric data. The component consists of a combined 3D and 2D viewer. For each view of the 3D model, the 2D image closest to the view is loaded. Fo
11 lines (10 loc) • 373 B
TypeScript
import { LitElement } from 'lit';
import { ViewerSettings } from './viewer-settings';
export declare class ControlPanel extends LitElement {
currentViewModeIndex: number;
isColumnMode: boolean;
viewerSettings: ViewerSettings;
render(): import('lit-html').TemplateResult<1>;
private _handleSelectionChanged;
static styles: import('lit').CSSResult;
}