tileMatrixSetId property

String tileMatrixSetId

The tile matrix set identifier for this WMTS layer.

This value cannot be changed on loaded layers, or on layers created from a WmtsLayerInfo.

Implementation

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