An object implements Bounded if its geometry is spatially bounded. The bounds can then be requested as a Bounds object.

interface Bounded {
    bounds: null | Bounds;
}

Implemented by

Properties

Properties

bounds: null | Bounds

The Bounds by which the geometry of this Bounded object is bounded or null if the bounds is not defined.