Documentation
    Preparing search index...

    A coordinate is defined by its x and y values, specifying the geographical point in a two-dimensional coordinate system

    type Coordinate = {
        x?: number;
        y?: number;
    }
    Index

    Properties

    Properties

    x?: number

    The value in x-direction (west to east), longitude for WGS84.

    y?: number

    The value in y-direction (south to north), latitude for WGS84.