Skip to content

Commit a5028b7

Browse files
committed
Website updates
1 parent 694b72f commit a5028b7

28 files changed

+241
-47
lines changed

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

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

188188
<div class="tag-source">
189189
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/expr/expression.js">expr/expression.js</a>,
190-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/expr/expression.js#L599">line 599</a>
190+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/expr/expression.js#L601">line 601</a>
191191
</div>
192192

193193
</div>
@@ -584,7 +584,7 @@ <h4 class="name">
584584

585585
<div class="tag-source">
586586
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/expr/expression.js">expr/expression.js</a>,
587-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/expr/expression.js#L426">line 426</a>
587+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/expr/expression.js#L428">line 428</a>
588588
</div>
589589

590590
</div>
@@ -780,6 +780,29 @@ <h5 class="subsection-title">Properties:</h5>
780780
</tr>
781781

782782

783+
784+
<tr>
785+
786+
<td class="name"><code>mapState</code></td>
787+
788+
789+
<td class="type">
790+
791+
792+
<span class="param-type">boolean</span>
793+
794+
795+
796+
797+
</td>
798+
799+
<td class="description last">
800+
<p>The style uses the map state (view state or time elapsed).</p>
801+
802+
</td>
803+
</tr>
804+
805+
783806
</tbody>
784807
</table></dl>
785808

dist/en/main/examples/common.js

Lines changed: 7 additions & 7 deletions
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/examples/offscreen-canvas.worker.worker.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/offscreen-canvas.worker.worker.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/examples/webgl-vector-tiles.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/webgl-vector-tiles.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/expr/expression.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export function isType(type: number, expected: number): boolean;
3131
* @property {Set<string>} properties Properties referenced with the 'get' operator.
3232
* @property {boolean} featureId The style uses the feature id.
3333
* @property {boolean} geometryType The style uses the feature geometry type.
34+
* @property {boolean} mapState The style uses the map state (view state or time elapsed).
3435
*/
3536
/**
3637
* @return {ParsingContext} A new parsing context.
@@ -107,6 +108,10 @@ export type ParsingContext = {
107108
* The style uses the feature geometry type.
108109
*/
109110
geometryType: boolean;
111+
/**
112+
* The style uses the map state (view state or time elapsed).
113+
*/
114+
mapState: boolean;
110115
};
111116
export type EncodedExpression = LiteralValue | any[];
112117
/**

0 commit comments

Comments
 (0)