Skip to content

Commit 053cafb

Browse files
committed
Website updates
1 parent 456e1e9 commit 053cafb

8 files changed

Lines changed: 89 additions & 4 deletions

dist/en/main/apidoc/module-ol_layer_BaseImage-BaseImageLayer.html

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ <h4 class="name">
189189

190190
<div class="tag-source">
191191
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/layer/BaseImage.js">layer/BaseImage.js</a>,
192-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/layer/BaseImage.js#L47">line 47</a>
192+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/layer/BaseImage.js#L49">line 49</a>
193193
</div>
194194

195195
</div>
@@ -518,6 +518,32 @@ <h4 class="name">
518518

519519

520520

521+
<tr class="">
522+
523+
<td class="name"><code>background</code></td>
524+
525+
526+
527+
<td class="type">
528+
529+
530+
<span class="param-type"><a href="module-ol_layer_Base.html#~BackgroundColor">BackgroundColor</a></span>
531+
532+
| undefined
533+
534+
535+
</td>
536+
537+
538+
539+
<td class="description last">
540+
541+
<p>Background color for the layer. If not specified, no background
542+
will be rendered.</p></td>
543+
</tr>
544+
545+
546+
521547
<tr class="">
522548

523549
<td class="name"><code>properties</code></td>

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,30 @@ <h5 class="subsection-title">Properties:</h5>
472472

473473

474474

475+
<tr>
476+
477+
<td class="name"><code>background</code></td>
478+
479+
480+
<td class="type">
481+
482+
483+
<span class="param-type"><a href="module-ol_layer_Base.html#~BackgroundColor">BackgroundColor</a></span>
484+
485+
| undefined
486+
487+
488+
</td>
489+
490+
<td class="description last">
491+
<p>Background color for the layer. If not specified, no background
492+
will be rendered.</p>
493+
494+
</td>
495+
</tr>
496+
497+
498+
475499
<tr>
476500

477501
<td class="name"><code>properties</code></td>

dist/en/main/apidoc/module-ol_layer_Image-ImageLayer.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -519,6 +519,32 @@ <h4 class="name">
519519

520520

521521

522+
<tr class="">
523+
524+
<td class="name"><code>background</code></td>
525+
526+
527+
528+
<td class="type">
529+
530+
531+
<span class="param-type"><a href="module-ol_layer_Base.html#~BackgroundColor">BackgroundColor</a></span>
532+
533+
| undefined
534+
535+
536+
</td>
537+
538+
539+
540+
<td class="description last">
541+
542+
<p>Background color for the layer. If not specified, no background
543+
will be rendered.</p></td>
544+
</tr>
545+
546+
547+
522548
<tr class="">
523549

524550
<td class="name"><code>properties</code></td>

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.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/layer/BaseImage.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ export type Options<ImageSourceType extends import("../source/Image.js").default
5555
* Source for this layer.
5656
*/
5757
source?: ImageSourceType | undefined;
58+
/**
59+
* Background color for the layer. If not specified, no background
60+
* will be rendered.
61+
*/
62+
background?: import("./Base.js").BackgroundColor | undefined;
5863
/**
5964
* Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.
6065
*/
@@ -87,6 +92,8 @@ export type Options<ImageSourceType extends import("../source/Image.js").default
8792
* temporary layers. The standard way to add a layer to a map and have it managed by the map is to
8893
* use {@link import("../Map.js").default#addLayer map.addLayer()}.
8994
* @property {ImageSourceType} [source] Source for this layer.
95+
* @property {import('./Base.js').BackgroundColor} [background] Background color for the layer. If not specified, no background
96+
* will be rendered.
9097
* @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.
9198
*/
9299
/**

dist/en/main/ol/layer/BaseImage.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/layer/BaseImage.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ import Layer from './Layer.js';
2828
* temporary layers. The standard way to add a layer to a map and have it managed by the map is to
2929
* use {@link import("../Map.js").default#addLayer map.addLayer()}.
3030
* @property {ImageSourceType} [source] Source for this layer.
31+
* @property {import('./Base.js').BackgroundColor} [background] Background color for the layer. If not specified, no background
32+
* will be rendered.
3133
* @property {Object<string, *>} [properties] Arbitrary observable properties. Can be accessed with `#get()` and `#set()`.
3234
*/
3335

0 commit comments

Comments
 (0)