layerId property

String layerId

The id of the WMTS layer.

WmtsLayer.layerId cannot be changed on loaded layers, or on layers created from a WmtsLayerInfo.

Implementation

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