Skip to content

Commit 354bab8

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

16 files changed

+49
-13
lines changed

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

+4-3
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

+1-1
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

+1-1
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

+1-1
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

+2
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

+1-1
Large diffs are not rendered by default.

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

+1-1
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

+1-1
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

+1
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

+1-1
Original file line numberDiff line numberDiff line change

dist/en/main/ol/expr/expression.js

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ import {toSize} from '../size.js';
9696
* * `['any', value1, value2, ...]` returns `true` if any of the inputs are `true`, `false` otherwise.
9797
* * `['has', attributeName, keyOrArrayIndex, ...]` returns `true` if feature properties include the (nested) key `attributeName`,
9898
* `false` otherwise.
99+
* Note that for WebGL layers, the hardcoded value `-9999999` is used to distinguish when a property is not defined.
99100
* * `['between', value1, value2, value3]` returns `true` if `value1` is contained between `value2` and `value3`
100101
* (inclusively), or `false` otherwise.
101102
* * `['in', needle, haystack]` returns `true` if `needle` is found in `haystack`, and

dist/en/main/ol/expr/gpu.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@ export function buildExpression(encoded: import("./expression.js").EncodedExpres
9797
export const PALETTE_TEXTURE_ARRAY: "u_paletteTextures";
9898
export const FEATURE_ID_PROPERTY_NAME: "featureId";
9999
export const GEOMETRY_TYPE_PROPERTY_NAME: "geometryType";
100+
/**
101+
* The value `-9999999` will be used to indicate that a property on a feature is not defined, similar to a "no data" value.
102+
*/
103+
export const UNDEFINED_PROP_VALUE: -9999999;
100104
export type ParsingContext = import("./expression.js").ParsingContext;
101105
export type Expression = import("./expression.js").Expression;
102106
export type LiteralExpression = import("./expression.js").LiteralExpression;

dist/en/main/ol/expr/gpu.d.ts.map

+1-1
Original file line numberDiff line numberDiff line change

dist/en/main/ol/expr/gpu.js

+17
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,11 @@ export const PALETTE_TEXTURE_ARRAY = 'u_paletteTextures';
166166
export const FEATURE_ID_PROPERTY_NAME = 'featureId';
167167
export const GEOMETRY_TYPE_PROPERTY_NAME = 'geometryType';
168168

169+
/**
170+
* The value `-9999999` will be used to indicate that a property on a feature is not defined, similar to a "no data" value.
171+
*/
172+
export const UNDEFINED_PROP_VALUE = -9999999;
173+
169174
/**
170175
* @typedef {string} CompiledExpression
171176
*/
@@ -244,6 +249,18 @@ const compilers = {
244249
}
245250
return uniformNameForVariable(varName);
246251
},
252+
[Ops.Has]: (context, expression) => {
253+
const firstArg = /** @type {LiteralExpression} */ (expression.args[0]);
254+
const propName = /** @type {string} */ (firstArg.value);
255+
const isExisting = propName in context.properties;
256+
if (!isExisting) {
257+
context.properties[propName] = {
258+
name: propName,
259+
type: expression.type,
260+
};
261+
}
262+
return `(a_prop_${propName} != ${numberToGlsl(UNDEFINED_PROP_VALUE)})`;
263+
},
247264
[Ops.Resolution]: () => 'u_resolution',
248265
[Ops.Zoom]: () => 'u_zoom',
249266
[Ops.Time]: () => 'u_time',

dist/en/main/ol/render/webgl/renderinstructions.d.ts.map

+1-1
Original file line numberDiff line numberDiff line change

dist/en/main/ol/render/webgl/renderinstructions.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/**
22
* @module ol/render/webgl/renderinstructions
33
*/
4+
import {UNDEFINED_PROP_VALUE} from '../../expr/gpu.js';
45
import {transform2D} from '../../geom/flat/transform.js';
56
import {apply as applyTransform} from '../../transform.js';
67

@@ -21,7 +22,16 @@ function pushCustomAttributesInRenderInstructions(
2122
for (const key in customAttributes) {
2223
const attr = customAttributes[key];
2324
const value = attr.callback.call(batchEntry, batchEntry.feature);
24-
renderInstructions[currentIndex + shift++] = value?.[0] ?? value;
25+
let first = value?.[0] ?? value;
26+
if (first === UNDEFINED_PROP_VALUE) {
27+
console.warn('The "has" operator might return false positives.'); // eslint-disable-line no-console
28+
}
29+
if (first === undefined) {
30+
first = UNDEFINED_PROP_VALUE;
31+
} else if (first === null) {
32+
first = 0;
33+
}
34+
renderInstructions[currentIndex + shift++] = first;
2535
if (!attr.size || attr.size === 1) {
2636
continue;
2737
}

0 commit comments

Comments
 (0)