Leon4gr45's picture
Upload folder using huggingface_hub (part 9)
4a288a7 verified
Raw
History Blame Contribute Delete
587 Bytes
// @flow
import type {StylePropertySpecification} from '../style-spec';
export function supportsPropertyExpression(spec: StylePropertySpecification): boolean {
return spec['property-type'] === 'data-driven' || spec['property-type'] === 'cross-faded-data-driven';
}
export function supportsZoomExpression(spec: StylePropertySpecification): boolean {
return !!spec.expression && spec.expression.parameters.indexOf('zoom') > -1;
}
export function supportsInterpolation(spec: StylePropertySpecification): boolean {
return !!spec.expression && spec.expression.interpolated;
}