interface GeoJsonGeometryCollection {
    crs?: {
        properties: {
            name: string;
        };
        type: "name";
    };
    geometries: GeoJson[];
    properties?: Record<string, unknown>;
    type: "GeometryCollection";
}

Hierarchy (view full)

  • BaseGeoJson<"GeometryCollection">
    • GeoJsonGeometryCollection

Properties

crs?: {
    properties: {
        name: string;
    };
    type: "name";
}

Type declaration

  • properties: {
        name: string;
    }
    • name: string
  • type: "name"
geometries: GeoJson[]
properties?: Record<string, unknown>
type: "GeometryCollection"