Represents a single row from a GeoPackage feature table.
Extends UserRow by narrowing the table property to a FeatureTable, which includes geometry column metadata.
table
const featureRow: FeatureRow = { table: myFeatureTable, values: { id: 1, geometry: geomBlob, name: 'Building A' },}; Copy
const featureRow: FeatureRow = { table: myFeatureTable, values: { id: 1, geometry: geomBlob, name: 'Building A' },};
The feature table definition that this row belongs to.
A record mapping column names to their values for this row.
Represents a single row from a GeoPackage feature table.
Extends UserRow by narrowing the
tableproperty to a FeatureTable, which includes geometry column metadata.Example