Description

The type IndexedGeometry represents an indexed geometry. An indexed geometry is a geometry that is associated with an identifier.

Attributes

AttributeTypeDescription
idGeometryIDThe identifier of the geometry.
geometryIndexableGeometryThe geometry.
payloadoptionalPayloadThe optional payload associated with the geometry.

Proto Definition

message IndexedGeometry {
  GeometryID id = 1;
  IndexableGeometry geometry = 2;
  optional Payload payload = 3;
}