All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.style-spec.util.properties.js Maven / Gradle / Ivy

The newest version!
// @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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy