c8y-openlayer
Version:
This module is designed to help integrate Openlayer with Cumulocity IoT
31 lines (26 loc) • 907 B
JavaScript
import _ol_ from '../../index.js';
import _ol_format_filter_Filter_ from '../filter/filter.js';
/**
* @classdesc
* Abstract class; normally only used for creating subclasses and not instantiated in apps.
* Base class for WFS GetFeature property comparison filters.
*
* deprecated: This class will no longer be exported starting from the next major version.
*
* @constructor
* @abstract
* @param {!string} tagName The XML tag name for this filter.
* @param {!string} propertyName Name of the context property to compare.
* @extends {ol.format.filter.Filter}
* @api
*/
var _ol_format_filter_Comparison_ = function(tagName, propertyName) {
_ol_format_filter_Filter_.call(this, tagName);
/**
* @public
* @type {!string}
*/
this.propertyName = propertyName;
};
_ol_.inherits(_ol_format_filter_Comparison_, _ol_format_filter_Filter_);
export default _ol_format_filter_Comparison_;