geopackage-ts
    Preparing search index...

    Interface BoundingBox

    Represents an axis-aligned bounding box in two-dimensional space.

    Bounding boxes are used throughout the GeoPackage specification to describe the spatial extent of contents, tile matrix sets, and other geospatial entities. Coordinates are typically expressed in the spatial reference system (SRS) associated with the relevant table or layer.

    interface BoundingBox {
        maxX: number;
        maxY: number;
        minX: number;
        minY: number;
    }
    Index

    Properties

    Properties

    maxX: number

    Maximum x-coordinate (eastern boundary in geographic SRS).

    maxY: number

    Maximum y-coordinate (northern boundary in geographic SRS).

    minX: number

    Minimum x-coordinate (western boundary in geographic SRS).

    minY: number

    Minimum y-coordinate (southern boundary in geographic SRS).