Skip to content

Commit 40a7b42

Browse files
committed
Website updates
1 parent 2e623d5 commit 40a7b42

File tree

9 files changed

+62
-7
lines changed

9 files changed

+62
-7
lines changed

dist/en/main/apidoc/module-ol_source_GeoTIFF-GeoTIFFSource.html

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ <h4 class="name">
166166

167167
<div class="tag-source">
168168
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/GeoTIFF.js">source/GeoTIFF.js</a>,
169-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/GeoTIFF.js#L385">line 385</a>
169+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/GeoTIFF.js#L386">line 386</a>
170170
</div>
171171

172172
</div>
@@ -203,6 +203,31 @@ <h4 class="name">
203203
<tbody>
204204

205205

206+
<tr class="">
207+
208+
<td class="name"><code>attributions</code></td>
209+
210+
211+
212+
<td class="type">
213+
214+
215+
<span class="param-type"><a href="module-ol_source_Source.html#~AttributionLike">AttributionLike</a></span>
216+
217+
| undefined
218+
219+
220+
</td>
221+
222+
223+
224+
<td class="description last">
225+
226+
<p>Attributions.</p></td>
227+
</tr>
228+
229+
230+
206231
<tr class="">
207232

208233
<td class="name"><code>sources</code></td>
@@ -1781,7 +1806,7 @@ <h4 class="name">
17811806

17821807
<div class="tag-source">
17831808
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/GeoTIFF.js">source/GeoTIFF.js</a>,
1784-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/GeoTIFF.js#L1043">line 1043</a>
1809+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/GeoTIFF.js#L1045">line 1045</a>
17851810
</div>
17861811

17871812
</div>

dist/en/main/apidoc/module-ol_source_GeoTIFF.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -970,6 +970,29 @@ <h5 class="subsection-title">Properties:</h5>
970970
<tbody>
971971

972972

973+
<tr>
974+
975+
<td class="name"><code>attributions</code></td>
976+
977+
978+
<td class="type">
979+
980+
981+
<span class="param-type"><a href="module-ol_source_Source.html#~AttributionLike">AttributionLike</a></span>
982+
983+
| undefined
984+
985+
986+
</td>
987+
988+
<td class="description last">
989+
<p>Attributions.</p>
990+
991+
</td>
992+
</tr>
993+
994+
995+
973996
<tr>
974997

975998
<td class="name"><code>sources</code></td>

dist/en/main/examples/common.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/examples/common.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/dist/ol.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/dist/ol.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/source/GeoTIFF.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ export type GeoTIFFSourceOptions = {
123123
cacheSize?: number | undefined;
124124
};
125125
export type Options = {
126+
/**
127+
* Attributions.
128+
*/
129+
attributions?: import("./Source.js").AttributionLike | undefined;
126130
/**
127131
* List of information about GeoTIFF sources.
128132
* Multiple sources can be combined when their resolution sets are equal after applying a scale.
@@ -187,6 +191,7 @@ export type Options = {
187191
*/
188192
/**
189193
* @typedef {Object} Options
194+
* @property {import("./Source.js").AttributionLike} [attributions] Attributions.
190195
* @property {Array<SourceInfo>} sources List of information about GeoTIFF sources.
191196
* Multiple sources can be combined when their resolution sets are equal after applying a scale.
192197
* The list of sources defines a mapping between input bands as they are read from each GeoTIFF and

dist/en/main/ol/source/GeoTIFF.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/source/GeoTIFF.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,7 @@ function getMaxForDataType(array) {
348348

349349
/**
350350
* @typedef {Object} Options
351+
* @property {import("./Source.js").AttributionLike} [attributions] Attributions.
351352
* @property {Array<SourceInfo>} sources List of information about GeoTIFF sources.
352353
* Multiple sources can be combined when their resolution sets are equal after applying a scale.
353354
* The list of sources defines a mapping between input bands as they are read from each GeoTIFF and
@@ -388,6 +389,7 @@ class GeoTIFFSource extends DataTile {
388389
*/
389390
constructor(options) {
390391
super({
392+
attributions: options.attributions,
391393
state: 'loading',
392394
tileGrid: null,
393395
projection: options.projection || null,

0 commit comments

Comments
 (0)