attributionText property

String attributionText

The attribution text for the data that is currently displayed in the GeoViewController.

Attribution text includes data providers or sources for layers and copyright text. The full attribution text is concatenated into a single string that is displayed in a banner along the bottom edge of the view.

Implementation

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