GeoLeaf Core API - v3.0.0
    Preparing search index...

    Immutable axis-aligned geographic bounding box.

    All four edges are required; partial bounds are not supported to avoid ambiguity between "not set" and "zero-sized box".

    interface GeoLeafBounds {
        north: number;
        south: number;
        east: number;
        west: number;
    }
    Index

    Properties

    Properties

    north: number

    Northern edge latitude (decimal degrees).

    south: number

    Southern edge latitude (decimal degrees).

    east: number

    Eastern edge longitude (decimal degrees).

    west: number

    Western edge longitude (decimal degrees).