intersectByBounds abstract method

PointSeries<E> intersectByBounds(
  1. Bounds<Point<num>> bounds, {
  2. bool lazy = false,
})
inherited

Returns a new series where items intersects with bounds.

The intersected series is populated by default. If lazy is set true then returns a new lazy series with items intersected lazily.

Even if an item on this series has a complex geometry, only bounds of that geometry is tested (intersection) with the given bounds.

Those items that has empty bounds are not matched.

Implementation

S intersectByBounds(Bounds bounds, {bool lazy = false});