UNPKG

@dp_unity/dpu-gis-viewer

Version:

DPU GIS Viewer version Beta

33 lines (32 loc) 913 B
import { Viewer } from "cesium"; import '../styles/dataProperties.css'; interface DataElement { name: string; value: string; } export declare class DataPropeties { viewer: Viewer; containerId: string; IdGenneral: string; modal: any; private dialog; private onClosedCallback; private listPicked; private handler; objs: DataElement[]; constructor(containerId: string, viewer: any); setClosedCallback(callback: (status: boolean) => void): void; notifyCallBack(status: boolean): void; createModalDataElement: () => void; showHideModalDataElement: (show: boolean) => void; private handleCloseModal; private containerDiv; private renderTableData; private clearContainer; private pickDataElement; private _isCtrlLick; private _handlePickedCesium; private removeAllEvents; private _checkIfAllGuidAreTheSame; } export {};