Interface EmptyGeometryValueExperimental

interface EmptyGeometryValue {
    crs: CrsBinding;
    expectedType?:
        | "Point"
        | "MultiPoint"
        | "LineString"
        | "MultiLineString"
        | "Polygon"
        | "MultiPolygon"
        | "GeometryCollection";
    layout: "unknown" | CoordinateLayout;
    state: "empty";
}

Properties

expectedType?:
    | "Point"
    | "MultiPoint"
    | "LineString"
    | "MultiLineString"
    | "Polygon"
    | "MultiPolygon"
    | "GeometryCollection"
layout: "unknown" | CoordinateLayout
state