mobility-toolbox-js
Version:
Toolbox for JavaScript applications in the domains of mobility and logistics.
18 lines (17 loc) • 475 B
TypeScript
import { Coordinate } from 'ol/coordinate';
import { LayerGetFeatureInfoResponse } from '../../types';
import Layer, { MobilityLayerOptions } from './Layer';
/**
* @deprecated
*/
declare class VectorLayer extends Layer {
/**
* @deprecated
*/
clone(newOptions: MobilityLayerOptions): VectorLayer;
/**
* @deprecated
*/
getFeatureInfoAtCoordinate(coordinate: Coordinate): Promise<LayerGetFeatureInfoResponse>;
}
export default VectorLayer;