GeoJSON Geometry.

{"type":"Point","coordinates":[10.74609,59.91273]}
interface DocumentGeoJsonGeometry {
    coordinates?:
        | number[]
        | number[][]
        | number[][][]
        | number[] & number[][] & number[][][];
    geometries?: DocumentGeoJsonGeometry[];
    type: string;
}

Properties

coordinates?:
    | number[]
    | number[][]
    | number[][][]
    | number[] & number[][] & number[][][]

Coordinates of the geometry.

List of geometries for a GeometryCollection. Nested GeometryCollection is not supported

type: string

Type of the GeoJSON Geometry. When filtering there is a limit of specifying up to 100 positions in the data.

Point