notMatchBoundingBox method

LogicalChannel notMatchBoundingBox({
  1. required double westLongitude,
  2. required double southLatitude,
  3. required double eastLongitude,
  4. required double northLatitude,
})
inherited

The negated representation of matchBoundingBox.

Implementation

LogicalChannel notMatchBoundingBox({
  required double westLongitude,
  required double southLatitude,
  required double eastLongitude,
  required double northLatitude,
}) =>
    _buffer.appendOperator(
      _standaloneOperation.createNegatedBoundingBox(
        westLongitude,
        southLatitude,
        eastLongitude,
        northLatitude,
      ),
    );