UNPKG

c8y-openlayer

Version:

This module is designed to help integrate Openlayer with Cumulocity IoT

47 lines (40 loc) 1.3 kB
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. * Represents a spatial operator to test whether a geometry-valued property * relates to a given geometry. * * 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} geometryName Geometry name to use. * @param {!ol.geom.Geometry} geometry Geometry. * @param {string=} opt_srsName SRS name. No srsName attribute will be * set on geometries when this is not provided. * @extends {ol.format.filter.Filter} * @api */ var _ol_format_filter_Spatial_ = function(tagName, geometryName, geometry, opt_srsName) { _ol_format_filter_Filter_.call(this, tagName); /** * @public * @type {!string} */ this.geometryName = geometryName || 'the_geom'; /** * @public * @type {ol.geom.Geometry} */ this.geometry = geometry; /** * @public * @type {string|undefined} */ this.srsName = opt_srsName; }; _ol_.inherits(_ol_format_filter_Spatial_, _ol_format_filter_Filter_); export default _ol_format_filter_Spatial_;