c8y-openlayer
Version:
This module is designed to help integrate Openlayer with Cumulocity IoT
23 lines (20 loc) • 738 B
JavaScript
import _ol_ from '../../index.js';
import _ol_format_filter_LogicalNary_ from '../filter/logicalnary.js';
/**
* @classdesc
* Represents a logical `<And>` operator between two or more filter conditions.
*
* deprecated: This class will no longer be exported starting from the next major version.
*
* @constructor
* @abstract
* @param {...ol.format.filter.Filter} conditions Conditions.
* @extends {ol.format.filter.LogicalNary}
* @api
*/
var _ol_format_filter_And_ = function(conditions) {
var params = ['And'].concat(Array.prototype.slice.call(arguments));
_ol_format_filter_LogicalNary_.apply(this, params);
};
_ol_.inherits(_ol_format_filter_And_, _ol_format_filter_LogicalNary_);
export default _ol_format_filter_And_;