isProjected property

bool isProjected

True if spatial reference is a Projected Coordinate System.

Implementation

bool get isProjected {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_SpatialReference_getIsProjected(
      _handle,
      errorHandler,
    );
  });
}