UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

64 lines (63 loc) 2.79 kB
import { Layer, CompositeLayer, CompositeLayerProps, UpdateParameters, DefaultProps, Viewport } from '@deck.gl/core/typed'; import { ImageSource } from '@loaders.gl/wms'; import type { ImageSourceMetadata } from '@loaders.gl/loader-utils'; import type { ImageType, ImageServiceType } from '@loaders.gl/wms'; /** All props supported by the TileLayer */ export declare type WMSLayerProps = CompositeLayerProps & _WMSLayerProps; /** Props added by the TileLayer */ declare type _WMSLayerProps = { data: string | ImageSource; serviceType?: ImageServiceType | 'auto'; layers?: string[]; srs?: 'EPSG:4326' | 'EPSG:3857' | 'auto'; transparent?: boolean; onMetadataLoad?: (metadata: ImageSourceMetadata) => void; onMetadataLoadError?: (error: Error) => void; onImageLoadStart?: (requestId: unknown) => void; onImageLoad?: (requestId: unknown) => void; onImageLoadError?: (requestId: unknown, error: Error) => void; }; export default class WMSLayer extends CompositeLayer<Required<_WMSLayerProps>> { static layerName: string; static defaultProps: DefaultProps; state: { imageSource: ImageSource; image: ImageType; bounds: [number, number, number, number]; lastRequestParameters: { bbox: [number, number, number, number]; boundingBox: [[number, number], [number, number]]; layers: string[]; srs: 'EPSG:4326' | 'EPSG:3857'; width: number; height: number; }; lastRequestId: number; _nextRequestId: number; /** TODO: Change any => setTimeout return type. Different between Node and browser... */ _timeoutId: any; loadCounter: number; }; /** Returns true if all async resources are loaded */ get isLoaded(): boolean; /** Lets deck.gl know that we want viewport change events */ shouldUpdateState(): boolean; initializeState(): void; updateState({ changeFlags, props, oldProps }: UpdateParameters<this>): void; renderLayers(): Layer<any>; getFeatureInfoText(x: number, y: number): Promise<string | null>; _createImageSource(props: WMSLayerProps): ImageSource; /** Run a getMetadata on the image service */ _loadMetadata(): Promise<void>; /** Load an image */ loadImage(viewport: Viewport, _reason: string): Promise<void>; /** Global counter for issuing unique request ids */ private getRequestId; /** Runs an action in the future, cancels it if the new action is issued before it executes */ private debounce; } /** Projects EPSG:4326 to EPSG:3857 * This is a lightweight replacement of proj4. Use tests to ensure conformance. */ export declare function WGS84ToPseudoMercator(coord: [number, number]): [number, number]; export {};