@mapwhit/style-expressions
Version:
Process expressions in map style.
58 lines (53 loc) • 1.28 kB
JavaScript
import CompoundExpression from './compound_expression.js';
export function isFeatureConstant(e) {
if (e instanceof CompoundExpression) {
if (e.name === 'get' && e.args.length === 1) {
return false;
}
if (e.name === 'feature-state') {
return false;
}
if (e.name === 'has' && e.args.length === 1) {
return false;
}
if (e.name === 'properties' || e.name === 'geometry-type' || e.name === 'id') {
return false;
}
if (/^filter-/.test(e.name)) {
return false;
}
}
let result = true;
e.eachChild(arg => {
if (result && !isFeatureConstant(arg)) {
result = false;
}
});
return result;
}
export function isStateConstant(e) {
if (e instanceof CompoundExpression) {
if (e.name === 'feature-state') {
return false;
}
}
let result = true;
e.eachChild(arg => {
if (result && !isStateConstant(arg)) {
result = false;
}
});
return result;
}
export function isGlobalPropertyConstant(e, properties) {
if (e instanceof CompoundExpression && properties.indexOf(e.name) >= 0) {
return false;
}
let result = true;
e.eachChild(arg => {
if (result && !isGlobalPropertyConstant(arg, properties)) {
result = false;
}
});
return result;
}