spatialReferenceName property

String spatialReferenceName

The spatial reference name of the specified item.

The coordinate system of the specified item.

Implementation

String get spatialReferenceName {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Item_getSpatialReferenceName(_handle, errorHandler);
  });
  return stringHandle.toDartString();
}