Skip to content

Commit 25b8e4f

Browse files
committed
Website updates
1 parent 7bc7977 commit 25b8e4f

File tree

132 files changed

+1116
-519
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+1116
-519
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ <h4 class="name">
278278
<div class="anchor" id="~ImageLike">
279279
</div>
280280
<h4 class="name">
281-
ImageLike<span class="type-signature type htmlimageelement">{HTMLImageElement}</span> <span class="type-signature type htmlcanvaselement">{HTMLCanvasElement}</span> <span class="type-signature type htmlvideoelement">{HTMLVideoElement}</span> <span class="type-signature type imagebitmap">{ImageBitmap}</span>
281+
ImageLike<span class="type-signature type htmlimageelement">{HTMLImageElement}</span> <span class="type-signature type htmlcanvaselement">{HTMLCanvasElement}</span> <span class="type-signature type offscreencanvas">{OffscreenCanvas}</span> <span class="type-signature type htmlvideoelement">{HTMLVideoElement}</span> <span class="type-signature type imagebitmap">{ImageBitmap}</span>
282282

283283

284284
</h4>

dist/en/main/apidoc/module-ol_ImageTile-ImageTile.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -352,15 +352,15 @@ <h5>Returns:</h5>
352352
<div class="anchor" id="getImage">
353353
</div>
354354
<h4 class="name">
355-
getImage<span class="signature">()</span><span class="fa fa-arrow-circle-right"></span><span class="type-signature returnType">{HTMLCanvasElement | HTMLImageElement | HTMLVideoElement}</span>
355+
getImage<span class="signature">()</span><span class="fa fa-arrow-circle-right"></span><span class="type-signature returnType">{HTMLCanvasElement | OffscreenCanvas | HTMLImageElement | HTMLVideoElement}</span>
356356

357357

358358

359359
</h4>
360360

361361
<div class="tag-source">
362362
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/ImageTile.js">ImageTile.js</a>,
363-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/ImageTile.js#L64">line 64</a>
363+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/ImageTile.js#L71">line 71</a>
364364
</div>
365365

366366
</div>
@@ -373,7 +373,7 @@ <h4 class="name">
373373

374374

375375
<div class="description">
376-
<p>Get the HTML image element for this tile (may be a Canvas, Image, or Video).</p>
376+
<p>Get the HTML image element for this tile (may be a Canvas, OffscreenCanvas, Image, or Video).</p>
377377
</div>
378378

379379

@@ -542,7 +542,7 @@ <h4 class="name">
542542

543543
<div class="tag-source">
544544
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/ImageTile.js">ImageTile.js</a>,
545-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/ImageTile.js#L144">line 144</a>
545+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/ImageTile.js#L164">line 164</a>
546546
</div>
547547

548548
</div>

dist/en/main/apidoc/module-ol_Map-Map.html

Lines changed: 45 additions & 38 deletions
Large diffs are not rendered by default.

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

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@ <h5 class="subsection-title">Properties:</h5>
982982

983983
<td class="description last">
984984
<p>Controls initially added to the map. If not specified,
985-
<a href="module-ol_control_defaults.html#.defaults"><code>defaults</code></a> is used.</p>
985+
<a href="module-ol_control_defaults.html#.defaults"><code>defaults</code></a> is used. In a worker, no controls are added by default.</p>
986986

987987
</td>
988988
</tr>
@@ -1035,7 +1035,7 @@ <h5 class="subsection-title">Properties:</h5>
10351035

10361036
<td class="description last">
10371037
<p>Interactions that are initially added to the map. If not specified,
1038-
<a href="module-ol_interaction_defaults.html#.defaults"><code>defaults</code></a> is used.</p>
1038+
<a href="module-ol_interaction_defaults.html#.defaults"><code>defaults</code></a> is used. In a worker, no interactions are added by default.</p>
10391039

10401040
</td>
10411041
</tr>
@@ -1201,6 +1201,12 @@ <h5 class="subsection-title">Properties:</h5>
12011201
|
12021202

12031203
<span class="param-type">string</span>
1204+
|
1205+
1206+
<span class="param-type">HTMLCanvasElement</span>
1207+
|
1208+
1209+
<span class="param-type">OffscreenCanvas</span>
12041210

12051211
| undefined
12061212

@@ -1212,6 +1218,7 @@ <h5 class="subsection-title">Properties:</h5>
12121218
element itself or the <code>id</code> of the element. If not specified at construction
12131219
time, <a href="module-ol_Map-Map.html#setTarget"><code>setTarget</code></a> must be called for the map to be
12141220
rendered. If passed by element, the container can be in a secondary document.
1221+
For use in workers or when exporting a map, use an <code>OffscreenCanvas</code> or <code>HTMLCanvasElement</code> as target.
12151222
For accessibility (focus and keyboard events for map navigation), the <code>target</code> element must have a
12161223
properly configured <code>tabindex</code> attribute. If the <code>target</code> element is inside a Shadow DOM, the
12171224
<code>tabindex</code> atribute must be set on the custom element's host element.
@@ -1483,7 +1490,7 @@ <h4 class="name">
14831490

14841491
<div class="tag-source">
14851492
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/Map.js">Map.js</a>,
1486-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/Map.js#L74">line 74</a>
1493+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/Map.js#L79">line 79</a>
14871494
</div>
14881495

14891496
</div>

dist/en/main/apidoc/module-ol_render_Event-RenderEvent.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ <h3 class="subsection-title">Members</h3>
212212
<div class="anchor" id="context">
213213
</div>
214214
<h4 class="name">
215-
context<span class="type-signature type canvasrenderingcontext2d">{CanvasRenderingContext2D}</span> <span class="type-signature type webglrenderingcontext">{WebGLRenderingContext}</span> <span class="type-signature type undefined">{undefined}</span>
215+
context<span class="type-signature type canvasrenderingcontext2d">{CanvasRenderingContext2D}</span> <span class="type-signature type offscreencanvasrenderingcontext2d">{OffscreenCanvasRenderingContext2D}</span> <span class="type-signature type webglrenderingcontext">{WebGLRenderingContext}</span> <span class="type-signature type undefined">{undefined}</span>
216216

217217

218218
</h4>

dist/en/main/apidoc/module-ol_renderer_Composite-CompositeMapRenderer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ <h4 class="name">
127127

128128
<div class="tag-source">
129129
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/renderer/Composite.js">renderer/Composite.js</a>,
130-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/renderer/Composite.js#L20">line 20</a>
130+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/renderer/Composite.js#L22">line 22</a>
131131
</div>
132132

133133
</div>

dist/en/main/apidoc/module-ol_source_BingMaps-BingMaps.html

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

31973197
<div class="tag-source">
31983198
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js">source/TileImage.js</a>,
3199-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L280">line 280</a>
3199+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L281">line 281</a>
32003200
</div>
32013201

32023202
</div>
@@ -3324,7 +3324,7 @@ <h4 class="name">
33243324

33253325
<div class="tag-source">
33263326
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js">source/TileImage.js</a>,
3327-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L300">line 300</a>
3327+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L301">line 301</a>
33283328
</div>
33293329

33303330
</div>

dist/en/main/apidoc/module-ol_source_CartoDB-CartoDB.html

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

31853185
<div class="tag-source">
31863186
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js">source/TileImage.js</a>,
3187-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L280">line 280</a>
3187+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L281">line 281</a>
31883188
</div>
31893189

31903190
</div>
@@ -3312,7 +3312,7 @@ <h4 class="name">
33123312

33133313
<div class="tag-source">
33143314
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js">source/TileImage.js</a>,
3315-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L300">line 300</a>
3315+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L301">line 301</a>
33163316
</div>
33173317

33183318
</div>

dist/en/main/apidoc/module-ol_source_Google-Google.html

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

31723172
<div class="tag-source">
31733173
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js">source/TileImage.js</a>,
3174-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L280">line 280</a>
3174+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L281">line 281</a>
31753175
</div>
31763176

31773177
</div>
@@ -3299,7 +3299,7 @@ <h4 class="name">
32993299

33003300
<div class="tag-source">
33013301
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js">source/TileImage.js</a>,
3302-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L300">line 300</a>
3302+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L301">line 301</a>
33033303
</div>
33043304

33053305
</div>

dist/en/main/apidoc/module-ol_source_IIIF-IIIF.html

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

31983198
<div class="tag-source">
31993199
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js">source/TileImage.js</a>,
3200-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L280">line 280</a>
3200+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L281">line 281</a>
32013201
</div>
32023202

32033203
</div>
@@ -3325,7 +3325,7 @@ <h4 class="name">
33253325

33263326
<div class="tag-source">
33273327
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js">source/TileImage.js</a>,
3328-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L300">line 300</a>
3328+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/TileImage.js#L301">line 301</a>
33293329
</div>
33303330

33313331
</div>

0 commit comments

Comments
 (0)