@cercalia/sdk
    Preparing search index...

    Interface BoundingBox

    Represents a rectangular geographic area defined by minimum and maximum coordinates.

    interface BoundingBox {
        maxLat: number;
        maxLng: number;
        minLat: number;
        minLng: number;
    }
    Index

    Properties

    maxLat: number

    Maximum latitude of the bounding box.

    maxLng: number

    Maximum longitude of the bounding box.

    minLat: number

    Minimum latitude of the bounding box.

    minLng: number

    Minimum longitude of the bounding box.