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

Hierarchy (View Summary)

  • BaseGeoJson<"GeometryCollection">
    • GeoJsonGeometryCollection

Properties

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