GeoLeaf Core API - v3.0.0
    Preparing search index...

    Variable GeoJSONStyleResolverConst

    GeoJSONStyleResolver: {
        getNestedValue(
            obj: Record<string, unknown> | null,
            path: string,
        ): unknown;
        evaluateCondition(
            feature: GeoJSONFeature,
            condition: StyleRuleWhen,
            STYLE_OPERATORS: Record<string, (a: unknown, b: unknown) => boolean>,
            Log: { warn?: (a: string, b?: unknown) => void },
        ): boolean;
        evaluateStyleRules(
            feature: GeoJSONFeature,
            styleRules: GeoJSONStyleRule[] | null | undefined,
        ): Record<string, unknown> | null;
    } = ...

    Type Declaration

    • getNestedValue: function
      • Parameters

        • obj: Record<string, unknown> | null
        • path: string

        Returns unknown

    • evaluateCondition: function
      • Parameters

        • feature: GeoJSONFeature
        • condition: StyleRuleWhen
        • STYLE_OPERATORS: Record<string, (a: unknown, b: unknown) => boolean>
        • Log: { warn?: (a: string, b?: unknown) => void }

        Returns boolean

    • evaluateStyleRules: function