Skip to content

Commit 354bab8

Browse files
committed
Website updates
1 parent 5b0f9ce commit 354bab8

File tree

16 files changed

+49
-13
lines changed

16 files changed

+49
-13
lines changed

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

Lines changed: 4 additions & 3 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#L601">line 601</a>
190+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/expr/expression.js#L602">line 602</a>
191191
</div>
192192

193193
</div>
@@ -449,7 +449,8 @@ <h4 class="name">
449449
<li><code>['all', value1, value2, ...]</code> returns <code>true</code> if all the inputs are <code>true</code>, <code>false</code> otherwise.</li>
450450
<li><code>['any', value1, value2, ...]</code> returns <code>true</code> if any of the inputs are <code>true</code>, <code>false</code> otherwise.</li>
451451
<li><code>['has', attributeName, keyOrArrayIndex, ...]</code> returns <code>true</code> if feature properties include the (nested) key <code>attributeName</code>,
452-
<code>false</code> otherwise.</li>
452+
<code>false</code> otherwise.
453+
Note that for WebGL layers, the hardcoded value <code>-9999999</code> is used to distinguish when a property is not defined.</li>
453454
<li><code>['between', value1, value2, value3]</code> returns <code>true</code> if <code>value1</code> is contained between <code>value2</code> and <code>value3</code>
454455
(inclusively), or <code>false</code> otherwise.</li>
455456
<li><code>['in', needle, haystack]</code> returns <code>true</code> if <code>needle</code> is found in <code>haystack</code>, and
@@ -584,7 +585,7 @@ <h4 class="name">
584585

585586
<div class="tag-source">
586587
<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#L428">line 428</a>
588+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/expr/expression.js#L429">line 429</a>
588589
</div>
589590

590591
</div>

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/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/ol/dist/ol.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ declare namespace ol {
182182
export { _ol_expr_gpu$FEATURE_ID_PROPERTY_NAME as FEATURE_ID_PROPERTY_NAME };
183183
export { _ol_expr_gpu$GEOMETRY_TYPE_PROPERTY_NAME as GEOMETRY_TYPE_PROPERTY_NAME };
184184
export { _ol_expr_gpu$PALETTE_TEXTURE_ARRAY as PALETTE_TEXTURE_ARRAY };
185+
export { _ol_expr_gpu$UNDEFINED_PROP_VALUE as UNDEFINED_PROP_VALUE };
185186
export { _ol_expr_gpu$arrayToGlsl as arrayToGlsl };
186187
export { _ol_expr_gpu$buildExpression as buildExpression };
187188
export { _ol_expr_gpu$colorToGlsl as colorToGlsl };
@@ -1179,6 +1180,7 @@ import { typeName as _ol_expr_expression$typeName } from '../../ol/expr/expressi
11791180
import { FEATURE_ID_PROPERTY_NAME as _ol_expr_gpu$FEATURE_ID_PROPERTY_NAME } from '../../ol/expr/gpu.js';
11801181
import { GEOMETRY_TYPE_PROPERTY_NAME as _ol_expr_gpu$GEOMETRY_TYPE_PROPERTY_NAME } from '../../ol/expr/gpu.js';
11811182
import { PALETTE_TEXTURE_ARRAY as _ol_expr_gpu$PALETTE_TEXTURE_ARRAY } from '../../ol/expr/gpu.js';
1183+
import { UNDEFINED_PROP_VALUE as _ol_expr_gpu$UNDEFINED_PROP_VALUE } from '../../ol/expr/gpu.js';
11821184
import { arrayToGlsl as _ol_expr_gpu$arrayToGlsl } from '../../ol/expr/gpu.js';
11831185
import { buildExpression as _ol_expr_gpu$buildExpression } from '../../ol/expr/gpu.js';
11841186
import { colorToGlsl as _ol_expr_gpu$colorToGlsl } from '../../ol/expr/gpu.js';

dist/en/main/ol/dist/ol.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/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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ export type ArgValidator = (arg0: Array<EncodedExpression>, arg1: number, arg2:
203203
* * `['any', value1, value2, ...]` returns `true` if any of the inputs are `true`, `false` otherwise.
204204
* * `['has', attributeName, keyOrArrayIndex, ...]` returns `true` if feature properties include the (nested) key `attributeName`,
205205
* `false` otherwise.
206+
* Note that for WebGL layers, the hardcoded value `-9999999` is used to distinguish when a property is not defined.
206207
* * `['between', value1, value2, value3]` returns `true` if `value1` is contained between `value2` and `value3`
207208
* (inclusively), or `false` otherwise.
208209
* * `['in', needle, haystack]` returns `true` if `needle` is found in `haystack`, and

dist/en/main/ol/expr/expression.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.

0 commit comments

Comments
 (0)