@squawk
    Preparing search index...

    Interface BoundingBox

    Axis-aligned bounding box in decimal degrees. Useful as a fast rejection pre-filter before running a full point-in-polygon test.

    interface BoundingBox {
        maxLat: number;
        maxLon: number;
        minLat: number;
        minLon: number;
    }
    Index

    Properties

    maxLat: number

    Maximum latitude.

    maxLon: number

    Maximum longitude.

    minLat: number

    Minimum latitude.

    minLon: number

    Minimum longitude.