geostyler-style
    Preparing search index...

    Interface Finterpolate

    Textual representation of a interpolate function. argument[0] is the interpolation type. argument[1] is the input value. argument[2] - argument[args.length] are objects with 'stop' and 'value'.

    Will produce continuous results by interpolating between pairs of FInterpolateParamters.

    interface Finterpolate {
        args: [
            FInterpolateTypeLinear,
            number
            | GeoStylerNumberFunction,
            FInterpolateParameter,
            FInterpolateParameter,
            ...FInterpolateParameter[],
        ];
        name: "interpolate";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    args: [
        FInterpolateTypeLinear,
        number
        | GeoStylerNumberFunction,
        FInterpolateParameter,
        FInterpolateParameter,
        ...FInterpolateParameter[],
    ]
    name: "interpolate"