mobility-toolbox-js
Version:
Toolbox for JavaScript applications in the domains of mobility and logistics.
21 lines (20 loc) • 635 B
TypeScript
import { Vector } from 'ol/layer';
import type { Coordinate } from 'ol/coordinate';
import type { Options } from 'ol/layer/Vector';
import type { LayerGetFeatureInfoResponse } from '../../types';
import type { MobilityLayerOptions } from './Layer';
/**
* @deprecated
*/
declare class VectorLayer extends Vector {
constructor(options: MobilityLayerOptions & Options);
/**
* @deprecated
*/
clone(newOptions: MobilityLayerOptions & Options): VectorLayer;
/**
* @deprecated
*/
getFeatureInfoAtCoordinate(coordinate: Coordinate): Promise<LayerGetFeatureInfoResponse>;
}
export default VectorLayer;