@valkey/valkey-glide
    Preparing search index...

    Interface GeospatialData

    Represents a geographic position defined by longitude and latitude. The exact limits, as specified by EPSG:900913 / EPSG:3785 / OSGEO:41001 are the following:

    Valid longitudes are from -180 to 180 degrees. Valid latitudes are from -85.05112878 to 85.05112878 degrees.

    interface GeospatialData {
        latitude: number;
        longitude: number;
    }
    Index

    Properties

    Properties

    latitude: number

    The latitude coordinate.

    longitude: number

    The longitude coordinate.