/** * Issues a simple WFS GetFeature request for a single layer to fetch * specific features using their ids. * * Requirements: * - the layer must exist within the loaded themes * - it must be queryable * - it must support WFS * - feature ids must exist * * @param {string} layer Name of the layer to query * @param {string[]} ids List of ids * @returns {Promise[]>} Promise. * @hidden */ export function getFeaturesFromIds(layer: string, ids: string[]): Promise[]>; /** * @param {string} layer Name of the layer to query * @param {number[]} coordinate Coordinate. * @param {number} resolution Resolution * @returns {Promise>} Promise. * @hidden */ export function getFeaturesFromCoordinates(layer: string, coordinate: number[], resolution: number): Promise>;