UNPKG

c8y-openlayer

Version:

This module is designed to help integrate Openlayer with Cumulocity IoT

31 lines (28 loc) 695 B
/** * @classdesc * Abstract class; normally only used for creating subclasses and not instantiated in apps. * Base class for WFS GetFeature 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. * @struct * @api */ var _ol_format_filter_Filter_ = function(tagName) { /** * @private * @type {!string} */ this.tagName_ = tagName; }; /** * The XML tag name for a filter. * @returns {!string} Name. */ _ol_format_filter_Filter_.prototype.getTagName = function() { return this.tagName_; }; export default _ol_format_filter_Filter_;