ol
Version:
OpenLayers mapping library
32 lines • 733 B
JavaScript
/**
* @module ol/format/filter/Filter
*/
/**
* @classdesc
* Abstract class; normally only used for creating subclasses and not instantiated in apps.
* Base class for WFS GetFeature filters.
*
* @abstract
*/
var Filter = /** @class */ (function () {
/**
* @param {!string} tagName The XML tag name for this filter.
*/
function Filter(tagName) {
/**
* @private
* @type {!string}
*/
this.tagName_ = tagName;
}
/**
* The XML tag name for a filter.
* @returns {!string} Name.
*/
Filter.prototype.getTagName = function () {
return this.tagName_;
};
return Filter;
}());
export default Filter;
//# sourceMappingURL=Filter.js.map