Description
The type IndexedGeometry
represents an indexed geometry. An indexed geometry is a geometry that is associated with an identifier.
Attributes
Attribute | Type | Description |
---|---|---|
id | GeometryID | The identifier of the geometry. |
geometry | IndexableGeometry | The geometry. |
payload | optionalPayload | The optional payload associated with the geometry. |
Proto Definition
message IndexedGeometry {
GeometryID id = 1;
IndexableGeometry geometry = 2;
optional Payload payload = 3;
}