Skip to content

gi-nx


gi-nx / GeoJsonPolygon

ts
type GeoJsonPolygon = {
  geometry: {
     coordinates: [number, number][][];
     type: "Polygon";
  };
  properties: Record<string, any>;
  type: "Feature";
};

Properties

PropertyType
geometry.coordinates[number, number][][]
geometry.type"Polygon"
propertiesRecord<string, any>
type"Feature"