Type alias GeoJsonAnalyzerDescription

GeoJsonAnalyzerDescription: GenericAnalyzerDescription & {
    properties: {
        description: {
            maxCells: number;
            maxLevel: number;
            minLevel: number;
        };
        type: "shape" | "centroid" | "point";
    };
    type: "geojson";
}

An object describing a GeoJSON Analyzer

Generated using TypeDoc