The Geometry schema is a core part of the MVFv3 spec.
It adds a geometry property to the bundle, which is a Record<FloorId, GeometryCollection> object. Meaning,
for a given FloorId, there will be a GeometryCollection that contains all of the GeometryFeatures
present on that floor. In the bundle, this will be a folder called geometry with a geojson file for each FloorId.
The Geometry schema is a core part of the MVFv3 spec.
It adds a
geometryproperty to the bundle, which is aRecord<FloorId, GeometryCollection>object. Meaning, for a given FloorId, there will be a GeometryCollection that contains all of the GeometryFeatures present on that floor. In the bundle, this will be a folder calledgeometrywith a geojson file for each FloorId.Example
This is a fundamental concept in MVF that is used by many other extensions.
There will almost certainly be a GeometryCollection for every FloorId in the bundle, though they may possibly have an empty array of features.
See
GeometryCollection
Interface