API generation

This commit is contained in:
delvedor
2021-08-17 09:53:49 +02:00
parent 5dab5d0abd
commit 08b80844da
2 changed files with 9 additions and 9 deletions

View File

@ -2183,9 +2183,9 @@ export interface Search<T = RequestBody> extends Generic {
export interface SearchMvt<T = RequestBody> extends Generic {
index: string | string[];
field: string;
zoom: integer;
x: integer;
y: integer;
zoom: number;
x: number;
y: number;
exact_bounds?: boolean;
extent?: number;
grid_precision?: number;

View File

@ -9001,9 +9001,9 @@ _Default:_ `5`
client.searchMvt({
index: string | string[],
field: string,
zoom: integer,
x: integer,
y: integer,
zoom: number,
x: number,
y: number,
exact_bounds: boolean,
extent: number,
grid_precision: number,
@ -9022,13 +9022,13 @@ link:{ref}/search-vector-tile-api.html[Documentation] +
|`string` - Field containing geospatial data to return
|`zoom`
|`integer` - Zoom level for the vector tile to search
|`number` - Zoom level for the vector tile to search
|`x`
|`integer` - X coordinate for the vector tile to search
|`number` - X coordinate for the vector tile to search
|`y`
|`integer` - Y coordinate for the vector tile to search
|`number` - Y coordinate for the vector tile to search
|`exact_bounds` or `exactBounds`
|`boolean` - If false, the meta layer's feature is the bounding box of the tile. If true, the meta layer's feature is a bounding box resulting from a `geo_bounds` aggregation.