Type alias GeoPointAnalyzerDescription

GeoPointAnalyzerDescription: GenericAnalyzerDescription & {
    properties: {
        description: {
            maxLevel: number;
            minCells: number;
            minLevel: number;
        };
        latitude: string[];
        longitude: string[];
    };
    type: "geopoint";
}

An object describing a GeoPoint Analyzer

Type declaration

  • properties: {
        description: {
            maxLevel: number;
            minCells: number;
            minLevel: number;
        };
        latitude: string[];
        longitude: string[];
    }
    • description: {
          maxLevel: number;
          minCells: number;
          minLevel: number;
      }
      • maxLevel: number
      • minCells: number
      • minLevel: number
    • latitude: string[]
    • longitude: string[]
  • type: "geopoint"