geometryType property

GeometryType geometryType

The type of geometry of the features stored in this table.

If FeatureTable.hasGeometry is false, then the geometry type is GeometryType.unknown.

Implementation

GeometryType get geometryType {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_FeatureTable_getGeometryType(
      _handle,
      errorHandler,
    );
  });
  return GeometryType._fromCoreValue(
    coreValue,
  );
}