geometryType property

GeometryType geometryType

The sublayer's geometry type.

Implementation

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