UNPKG

mobility-toolbox-js

Version:

Toolbox for JavaScript applications in the domains of mobility and logistics.

9 lines (8 loc) 360 B
import { LayerGetFeatureInfoResponse } from '../../types'; import type { Coordinate } from 'ol/coordinate'; import type { Layer } from 'ol/layer'; /** * @private */ declare const getFeatureInfoAtCoordinate: (coordinate: Coordinate, layers: Layer[], hitTolerance?: number) => Promise<LayerGetFeatureInfoResponse[]>; export default getFeatureInfoAtCoordinate;