From 6ce7b580204d18763b14fc9b93d82b8a20f6e79e Mon Sep 17 00:00:00 2001 From: Simon Seyock Date: Thu, 5 Aug 2021 11:02:51 +0200 Subject: [PATCH] Make attribution getters public. --- src/ol/source/Source.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ol/source/Source.js b/src/ol/source/Source.js index e2b50a8f6d..8c3a5436ae 100644 --- a/src/ol/source/Source.js +++ b/src/ol/source/Source.js @@ -95,6 +95,7 @@ class Source extends BaseObject { /** * Get the attribution function for the source. * @return {?Attribution} Attribution function. + * @api */ getAttributions() { return this.attributions_; @@ -102,6 +103,7 @@ class Source extends BaseObject { /** * @return {boolean} Attributions are collapsible. + * @api */ getAttributionsCollapsible() { return this.attributionsCollapsible_;