hasM property

bool hasM

True if the geometry has m values (measure values), false otherwise.

M is a vertex value that is stored with the geometry. These values typically represent non-spatial measurements or attributes.

Implementation

bool get hasM {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Geometry_getHasM(
      _handle,
      errorHandler,
    );
  });
}