Home > @i2analyze/i2connect > spi > Feature
spi.Feature type
A geospatial feature, which can be a point, a polygon, or a multi-polygon.
Signature:
export type Feature = {
type: 'Feature';
geometry: Geometry;
id?: string;
properties?: Record<string, string>;
};
References: Geometry