UNPKG

bcgis-type

Version:

The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.

70 lines (69 loc) 1.2 kB
import Widget from "../Widget"; /** * 坐标信息 * @noInheritDoc * @example * ```ts * viewer.locationBar.enable = true * ``` */ declare class LocationBar extends Widget { private _mouseEl; private _cameraEl; private _fpsEl; private _msEl; private _lastMouseSampleTime; private _lastCameraSampleTime; private _lastFpsSampleTime; private _lastMsSampleTime; private _fpsFrameCount; private _msFrameCount; private _pickMode; /** * @hidden */ constructor(); /** * @hidden */ get type(): any; set pickMode(str: any); get pickMode(): any; /** * * @private */ _installHook(): void; /** * * @private */ _bindEvent(): void; /** * * @private */ _unbindEvent(): void; /** * * @private */ _mountContent(): void; /** * * @param e * @private */ _onMove(e: any): void; /** * * @private */ _onCameraChanged(): void; /** * * @private */ _onPostUpdate(): void; } export default LocationBar;