UNPKG

c8y-openlayer

Version:

This module is designed to help integrate Openlayer with Cumulocity IoT

20 lines (17 loc) 714 B
import _ol_ from '../../index.js'; import _ol_format_filter_ComparisonBinary_ from '../filter/comparisonbinary.js'; /** * @classdesc * Represents a `<PropertyIsGreaterThan>` comparison operator. * * @constructor * @param {!string} propertyName Name of the context property to compare. * @param {!number} expression The value to compare. * @extends {ol.format.filter.ComparisonBinary} * @api */ var _ol_format_filter_GreaterThan_ = function(propertyName, expression) { _ol_format_filter_ComparisonBinary_.call(this, 'PropertyIsGreaterThan', propertyName, expression); }; _ol_.inherits(_ol_format_filter_GreaterThan_, _ol_format_filter_ComparisonBinary_); export default _ol_format_filter_GreaterThan_;