isGeographic property

bool isGeographic

True if spatial reference is a Geographic Coordinate System.

Implementation

bool get isGeographic {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_SpatialReference_getIsGeographic(
        _handle, errorHandler);
  });
}