Type alias GeoS2AnalyzerDescription

GeoS2AnalyzerDescription: GenericAnalyzerDescription & {
    properties: {
        description: {
            maxCells: number;
            maxLevel: number;
            minLevel: number;
        };
        format: "latLngDouble" | "latLngInt" | "s2Point";
        type: "shape" | "centroid" | "point";
    };
    type: "geo_s2";
}

(Enterprise Edition only.) An object describing a GeoS2 Analyzer

Type declaration

  • properties: {
        description: {
            maxCells: number;
            maxLevel: number;
            minLevel: number;
        };
        format: "latLngDouble" | "latLngInt" | "s2Point";
        type: "shape" | "centroid" | "point";
    }
    • description: {
          maxCells: number;
          maxLevel: number;
          minLevel: number;
      }
      • maxCells: number
      • maxLevel: number
      • minLevel: number
    • format: "latLngDouble" | "latLngInt" | "s2Point"
    • type: "shape" | "centroid" | "point"
  • type: "geo_s2"