@carto/api-client 0.4.3 → 0.4.5-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,7 @@
1
1
  import { Filter, FilterLogicalOperator, MapType, QueryParameters, SpatialFilter } from '../types.js';
2
2
  import { ModelRequestOptions } from './common.js';
3
3
  import { ApiVersion } from '../constants.js';
4
+ import { SpatialDataType, SpatialFilterPolyfillMode } from '../sources/types.js';
4
5
  /** @internalRemarks Source: @carto/react-api */
5
6
  declare const AVAILABLE_MODELS: readonly ["category", "histogram", "formula", "pick", "timeseries", "range", "scatterplot", "table"];
6
7
  export type Model = (typeof AVAILABLE_MODELS)[number];
@@ -14,9 +15,14 @@ export interface ModelSource {
14
15
  data: string;
15
16
  filters?: Record<string, Filter>;
16
17
  filtersLogicalOperator?: FilterLogicalOperator;
17
- geoColumn?: string;
18
18
  spatialFilter?: SpatialFilter;
19
19
  queryParameters?: QueryParameters;
20
+ spatialDataColumn?: string;
21
+ spatialDataType?: SpatialDataType;
22
+ spatialFiltersResolution?: number;
23
+ spatialFiltersMode?: SpatialFilterPolyfillMode;
24
+ /** original resolution of the spatial index data as stored in the DW */
25
+ dataResolution?: number;
20
26
  }
21
27
  /**
22
28
  * Execute a SQL model request.
@@ -38,6 +38,30 @@ export type SourceOptionalOptions = {
38
38
  * @default {@link DEFAULT_MAX_LENGTH_URL}
39
39
  */
40
40
  maxLengthURL?: number;
41
+ /**
42
+ * The column name and the type of geospatial support.
43
+ *
44
+ * If not present, defaults to `'geom'` for generic queries, `'quadbin'` for Quadbin sources and `'h3'` for H3 sources.
45
+ */
46
+ spatialDataColumn?: string;
47
+ /**
48
+ * The type of geospatial support. Defaults to `'geo'`.
49
+ */
50
+ spatialDataType?: SpatialDataType;
51
+ /**
52
+ * Relative resolution of a tile. Higher values increase density and data size. At `tileResolution = 1`, tile geometry is
53
+ * quantized to a 1024x1024 grid. Increasing or decreasing the resolution will increase or decrease the dimensions of
54
+ * the quantization grid proportionately.
55
+ *
56
+ * Supported `tileResolution` values, with corresponding grid sizes:
57
+ *
58
+ * - 0.25: 256x256
59
+ * - 0.5: 512x512
60
+ * - 1: 1024x1024
61
+ * - 2: 2048x2048
62
+ * - 4: 4096x4096
63
+ */
64
+ tileResolution?: TileResolution;
41
65
  /**
42
66
  * By default, local in-memory caching is enabled.
43
67
  */
@@ -73,6 +97,10 @@ export type AggregationOptions = {
73
97
  * @default 6 for quadbin and 4 for h3 sources
74
98
  */
75
99
  aggregationResLevel?: number;
100
+ /**
101
+ * Original resolution of the spatial index data as stored in the DW
102
+ */
103
+ dataResolution?: number;
76
104
  };
77
105
  export type FilterOptions = {
78
106
  /**
@@ -81,28 +109,8 @@ export type FilterOptions = {
81
109
  filters?: Filters;
82
110
  };
83
111
  export type QuerySourceOptions = {
84
- /**
85
- * The column name and the type of geospatial support.
86
- *
87
- * If not present, defaults to `'geom'` for generic queries, `'quadbin'` for Quadbin sources and `'h3'` for H3 sources.
88
- */
89
- spatialDataColumn?: string;
90
- /** SQL query. */
112
+ /** Full SQL query with query paremeter placeholders (if any). */
91
113
  sqlQuery: string;
92
- /**
93
- * Relative resolution of a tile. Higher values increase density and data size. At `tileResolution = 1`, tile geometry is
94
- * quantized to a 1024x1024 grid. Increasing or decreasing the resolution will increase or decrease the dimensions of
95
- * the quantization grid proportionately.
96
- *
97
- * Supported `tileResolution` values, with corresponding grid sizes:
98
- *
99
- * - 0.25: 256x256
100
- * - 0.5: 512x512
101
- * - 1: 1024x1024
102
- * - 2: 2048x2048
103
- * - 4: 4096x4096
104
- */
105
- tileResolution?: TileResolution;
106
114
  /**
107
115
  * Values for named or positional paramteres in the query.
108
116
  *
@@ -142,26 +150,6 @@ export type TableSourceOptions = {
142
150
  * Fully qualified name of table.
143
151
  */
144
152
  tableName: string;
145
- /**
146
- * The column name and the type of geospatial support.
147
- *
148
- * If not present, defaults to `'geom'` for generic tables, `'quadbin'` for Quadbin sources and `'h3'` for H3 sources.
149
- */
150
- spatialDataColumn?: string;
151
- /**
152
- * Relative resolution of a tile. Higher values increase density and data size. At `tileResolution = 1`, tile geometry is
153
- * quantized to a 1024x1024 grid. Increasing or decreasing the resolution will increase or decrease the dimensions of
154
- * the quantization grid proportionately.
155
- *
156
- * Supported `tileResolution` values, with corresponding grid sizes:
157
- *
158
- * - 0.25: 256x256
159
- * - 0.5: 512x512
160
- * - 1: 1024x1024
161
- * - 2: 2048x2048
162
- * - 4: 4096x4096
163
- */
164
- tileResolution?: TileResolution;
165
153
  /**
166
154
  * Comma-separated aggregation expressions. If assigned on a vector source, source is grouped by geometry and then aggregated.
167
155
  *
@@ -186,6 +174,13 @@ export type ColumnsOption = {
186
174
  columns?: string[];
187
175
  };
188
176
  export type SpatialDataType = 'geo' | 'h3' | 'quadbin';
177
+ /**
178
+ * Strategy used for covering spatial filter geometry with spatial indexes.
179
+ * See https://docs.carto.com/data-and-analysis/analytics-toolbox-for-bigquery/sql-reference/quadbin#quadbin_polyfill_mode
180
+ * or https://docs.carto.com/data-and-analysis/analytics-toolbox-for-bigquery/sql-reference/h3#h3_polyfill_mode for more information.
181
+ * @internalRemarks Source: cloud-native maps-api
182
+ * */
183
+ export type SpatialFilterPolyfillMode = 'center' | 'intersects' | 'contains';
189
184
  export type TilejsonMapInstantiation = MapInstantiation & {
190
185
  tilejson: {
191
186
  url: string[];
@@ -0,0 +1,8 @@
1
+ import type { ModelSource } from './models/model';
2
+ import type { AggregationOptions } from './sources/types';
3
+ import type { ViewState } from './widget-sources';
4
+ export declare function getSpatialFiltersResolution(source: Partial<ModelSource & AggregationOptions>, viewState: ViewState): number | undefined;
5
+ export declare function getHexagonResolution(viewport: {
6
+ zoom: number;
7
+ latitude: number;
8
+ }, tileSize: number): number;
package/build/utils.d.ts CHANGED
@@ -14,7 +14,7 @@ type Row<T> = Record<string, T> | Record<string, T>[] | T[] | T;
14
14
  */
15
15
  export declare function normalizeObjectKeys<T, R extends Row<T>>(el: R): R;
16
16
  /** @internalRemarks Source: @carto/react-core */
17
- export declare function assert(condition: unknown, message: string): void;
17
+ export declare function assert(condition: unknown, message: string): asserts condition;
18
18
  /**
19
19
  * @internalRemarks Source: @carto/react-core
20
20
  * @internal
@@ -1,11 +1,19 @@
1
- import { TileResolution } from '../sources/types';
1
+ import { SpatialFilterPolyfillMode, TileResolution } from '../sources/types';
2
2
  import { GroupDateType, SortColumnType, SortDirection, SpatialFilter } from '../types';
3
3
  /******************************************************************************
4
4
  * WIDGET API REQUESTS
5
5
  */
6
+ export interface ViewState {
7
+ zoom: number;
8
+ latitude: number;
9
+ longitude: number;
10
+ }
6
11
  /** Common options for {@link WidgetBaseSource} requests. */
7
12
  interface BaseRequestOptions {
8
13
  spatialFilter?: SpatialFilter;
14
+ spatialFiltersMode?: SpatialFilterPolyfillMode;
15
+ /** Required for table- and query-based spatial index sources (H3, Quadbin). */
16
+ spatialIndexReferenceViewState?: ViewState;
9
17
  abortController?: AbortController;
10
18
  filterOwner?: string;
11
19
  }
@@ -1,11 +1,10 @@
1
- import { CategoryRequestOptions, CategoryResponse, FeaturesRequestOptions, FeaturesResponse, FormulaRequestOptions, FormulaResponse, HistogramRequestOptions, HistogramResponse, RangeRequestOptions, RangeResponse, ScatterRequestOptions, ScatterResponse, TableRequestOptions, TableResponse, TimeSeriesRequestOptions, TimeSeriesResponse } from './types.js';
2
- import { FilterLogicalOperator, Filter } from '../types.js';
1
+ import { CategoryRequestOptions, CategoryResponse, FeaturesRequestOptions, FeaturesResponse, FormulaRequestOptions, FormulaResponse, HistogramRequestOptions, HistogramResponse, RangeRequestOptions, RangeResponse, ScatterRequestOptions, ScatterResponse, TableRequestOptions, TableResponse, TimeSeriesRequestOptions, TimeSeriesResponse, ViewState } from './types.js';
2
+ import { FilterLogicalOperator, Filter, SpatialFilter } from '../types.js';
3
3
  import { ModelSource } from '../models/model.js';
4
4
  import { SourceOptions } from '../sources/index.js';
5
5
  import { ApiVersion } from '../constants.js';
6
6
  export interface WidgetBaseSourceProps extends Omit<SourceOptions, 'filters'> {
7
7
  apiVersion?: ApiVersion;
8
- geoColumn?: string;
9
8
  filters?: Record<string, Filter>;
10
9
  filtersLogicalOperator?: FilterLogicalOperator;
11
10
  }
@@ -27,6 +26,7 @@ export declare abstract class WidgetBaseSource<Props extends WidgetBaseSourcePro
27
26
  */
28
27
  protected abstract getModelSource(owner: string | undefined): ModelSource;
29
28
  protected _getModelSource(owner?: string): Omit<ModelSource, 'type' | 'data'>;
29
+ protected _getSpatialFiltersResolution(source: Omit<ModelSource, 'type' | 'data'>, spatialFilter?: SpatialFilter, referenceViewState?: ViewState): number | undefined;
30
30
  /****************************************************************************
31
31
  * CATEGORIES
32
32
  */
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "repository": "github:CartoDB/carto-api-client",
5
5
  "author": "Don McCurdy <donmccurdy@carto.com>",
6
6
  "packageManager": "yarn@4.3.1",
7
- "version": "0.4.3",
7
+ "version": "0.4.5-alpha.0",
8
8
  "license": "MIT",
9
9
  "publishConfig": {
10
10
  "access": "public",
@@ -57,46 +57,41 @@
57
57
  "@turf/helpers": "^7.1.0",
58
58
  "@turf/invariant": "^7.1.0",
59
59
  "@turf/union": "^7.1.0",
60
- "@types/geojson": "^7946.0.14"
60
+ "@types/geojson": "^7946.0.15"
61
61
  },
62
62
  "devDependencies": {
63
- "@deck.gl/aggregation-layers": "^9.0.30",
64
- "@deck.gl/carto": "^9.0.30",
65
- "@deck.gl/core": "^9.0.30",
66
- "@deck.gl/extensions": "^9.0.30",
67
- "@deck.gl/geo-layers": "^9.0.30",
68
- "@deck.gl/layers": "^9.0.30",
69
- "@deck.gl/mesh-layers": "^9.0.30",
70
- "@deck.gl/react": "^9.0.30",
71
- "@lit/react": "^1.0.5",
63
+ "@deck.gl/aggregation-layers": "^9.0.38",
64
+ "@deck.gl/carto": "^9.0.38",
65
+ "@deck.gl/core": "^9.0.38",
66
+ "@deck.gl/extensions": "^9.0.38",
67
+ "@deck.gl/geo-layers": "^9.0.38",
68
+ "@deck.gl/layers": "^9.0.38",
69
+ "@deck.gl/mesh-layers": "^9.0.38",
70
+ "@lit/react": "^1.0.6",
72
71
  "@lit/task": "^1.0.1",
73
- "@loaders.gl/core": "^4.2.3",
74
- "@luma.gl/core": "^9.0.27",
75
- "@luma.gl/engine": "^9.0.27",
76
- "@sveltejs/vite-plugin-svelte": "^3.1.2",
72
+ "@loaders.gl/core": "^4.3.3",
73
+ "@luma.gl/core": "9.0.27",
74
+ "@luma.gl/engine": "9.0.27",
77
75
  "@types/json-schema": "^7.0.15",
78
- "@types/react": "^18.3.3",
79
- "@types/react-dom": "^18.3.0",
76
+ "@types/react": "^18.3.18",
80
77
  "@types/semver": "^7.5.8",
81
- "@vitejs/plugin-vue": "^5.0.5",
82
- "@vitest/coverage-istanbul": "^1.6.0",
78
+ "@vitest/coverage-istanbul": "^2.1.8",
83
79
  "@webcomponents/webcomponentsjs": "^2.8.0",
84
- "concurrently": "^8.2.2",
85
- "echarts": "^5.5.0",
86
- "lit": "^3.1.4",
87
- "lit-analyzer": "^1.2.1",
88
- "maplibre-gl": "^4.6.0",
80
+ "concurrently": "^9.1.2",
81
+ "echarts": "^5.6.0",
82
+ "lit": "^3.2.1",
83
+ "lit-analyzer": "^2.0.3",
84
+ "maplibre-gl": "^5.0.0",
89
85
  "microbundle": "^0.15.1",
90
- "prettier": "^2.6.2",
91
- "react": "^18.3.1",
92
- "react-dom": "^18.3.1",
93
- "react-map-gl": "^7.1.7",
94
- "rimraf": "^3.0.2",
86
+ "prettier": "^3.4.2",
87
+ "rimraf": "^6.0.1",
95
88
  "semver": "^7.6.3",
96
- "svelte": "^4.2.17",
97
- "typescript": "~5.3.3",
98
- "vite": "^5.2.10",
99
- "vitest": "1.6.0",
100
- "vue": "^3.4.27"
101
- }
89
+ "typescript": "~5.7.3",
90
+ "vite": "^6.0.7",
91
+ "vitest": "2.1.8"
92
+ },
93
+ "resolutions": {
94
+ "rollup": "^4.20.0"
95
+ },
96
+ "stableVersion": "0.4.4"
102
97
  }
package/src/api/query.ts CHANGED
@@ -12,8 +12,7 @@ import {buildQueryUrl} from './endpoints';
12
12
  import {requestWithParameters} from './request-with-parameters';
13
13
  import {APIErrorContext} from './carto-api-error';
14
14
 
15
- export type QueryOptions = SourceOptions &
16
- Omit<QuerySourceOptions, 'spatialDataColumn'>;
15
+ export type QueryOptions = SourceOptions & QuerySourceOptions;
17
16
  type UrlParameters = {q: string; queryParameters?: string};
18
17
 
19
18
  export const query = async function (
@@ -7,9 +7,10 @@ import {
7
7
  SpatialFilter,
8
8
  } from '../types.js';
9
9
  import {$TODO} from '../types-internal.js';
10
- import {assert} from '../utils.js';
10
+ import {assert, isPureObject} from '../utils.js';
11
11
  import {ModelRequestOptions, makeCall} from './common.js';
12
12
  import {ApiVersion} from '../constants.js';
13
+ import {SpatialDataType, SpatialFilterPolyfillMode} from '../sources/types.js';
13
14
 
14
15
  /** @internalRemarks Source: @carto/react-api */
15
16
  const AVAILABLE_MODELS = [
@@ -35,9 +36,14 @@ export interface ModelSource {
35
36
  data: string;
36
37
  filters?: Record<string, Filter>;
37
38
  filtersLogicalOperator?: FilterLogicalOperator;
38
- geoColumn?: string;
39
39
  spatialFilter?: SpatialFilter;
40
40
  queryParameters?: QueryParameters;
41
+ spatialDataColumn?: string;
42
+ spatialDataType?: SpatialDataType;
43
+ spatialFiltersResolution?: number;
44
+ spatialFiltersMode?: SpatialFilterPolyfillMode;
45
+ /** original resolution of the spatial index data as stored in the DW */
46
+ dataResolution?: number;
41
47
  }
42
48
 
43
49
  const {V3} = ApiVersion;
@@ -79,50 +85,51 @@ export function executeModel(props: {
79
85
  data,
80
86
  filters,
81
87
  filtersLogicalOperator = 'and',
82
- geoColumn = DEFAULT_GEO_COLUMN,
88
+ spatialDataType = 'geo',
89
+ spatialFiltersMode = 'intersects',
90
+ spatialFiltersResolution = 0,
83
91
  } = source;
84
92
 
85
- const queryParameters = source.queryParameters
86
- ? JSON.stringify(source.queryParameters)
87
- : '';
88
-
89
- const queryParams: Record<string, string> = {
93
+ const queryParams: Record<string, unknown> = {
90
94
  type,
91
95
  client: clientId,
92
96
  source: data,
93
- params: JSON.stringify(params),
94
- queryParameters,
95
- filters: JSON.stringify(filters),
97
+ params,
98
+ queryParameters: source.queryParameters || '',
99
+ filters,
96
100
  filtersLogicalOperator,
97
101
  };
98
102
 
103
+ const spatialDataColumn = source.spatialDataColumn || DEFAULT_GEO_COLUMN;
104
+
99
105
  // Picking Model API requires 'spatialDataColumn'.
100
106
  if (model === 'pick') {
101
- queryParams.spatialDataColumn = geoColumn;
107
+ queryParams.spatialDataColumn = spatialDataColumn;
102
108
  }
103
109
 
104
- // API supports multiple filters, we apply it only to geoColumn
110
+ // API supports multiple filters, we apply it only to spatialDataColumn
105
111
  const spatialFilters = source.spatialFilter
106
- ? {[geoColumn]: source.spatialFilter}
112
+ ? {[spatialDataColumn]: source.spatialFilter}
107
113
  : undefined;
108
114
 
109
115
  if (spatialFilters) {
110
- queryParams.spatialFilters = JSON.stringify(spatialFilters);
116
+ queryParams.spatialFilters = spatialFilters;
117
+ queryParams.spatialDataColumn = spatialDataColumn;
118
+ queryParams.spatialDataType = spatialDataType;
119
+ }
120
+
121
+ if (spatialDataType !== 'geo') {
122
+ if (spatialFiltersResolution > 0) {
123
+ queryParams.spatialFiltersResolution = spatialFiltersResolution;
124
+ }
125
+ queryParams.spatialFiltersMode = spatialFiltersMode;
111
126
  }
112
127
 
113
128
  const urlWithSearchParams =
114
- url + '?' + new URLSearchParams(queryParams).toString();
129
+ url + '?' + objectToURLSearchParams(queryParams).toString();
115
130
  const isGet = urlWithSearchParams.length <= REQUEST_GET_MAX_URL_LENGTH;
116
131
  if (isGet) {
117
132
  url = urlWithSearchParams;
118
- } else {
119
- // undo the JSON.stringify, @TODO find a better pattern
120
- queryParams.params = params as $TODO;
121
- queryParams.filters = filters as $TODO;
122
- queryParams.queryParameters = source.queryParameters as $TODO;
123
- if (spatialFilters) {
124
- queryParams.spatialFilters = spatialFilters as $TODO;
125
- }
126
133
  }
127
134
  return makeCall({
128
135
  url,
@@ -134,3 +141,19 @@ export function executeModel(props: {
134
141
  },
135
142
  });
136
143
  }
144
+
145
+ function objectToURLSearchParams(object: Record<string, unknown>) {
146
+ const params = new URLSearchParams();
147
+ for (const key in object) {
148
+ if (isPureObject(object[key])) {
149
+ params.append(key, JSON.stringify(object[key]));
150
+ } else if (Array.isArray(object[key])) {
151
+ params.append(key, JSON.stringify(object[key]));
152
+ } else if (object[key] === null) {
153
+ params.append(key, 'null');
154
+ } else if (object[key] !== undefined) {
155
+ params.append(key, String(object[key]));
156
+ }
157
+ }
158
+ return params;
159
+ }
@@ -47,6 +47,7 @@ export const boundaryQuerySource = async function (
47
47
  if (queryParameters) {
48
48
  urlParameters.queryParameters = queryParameters;
49
49
  }
50
+
50
51
  return baseSource<UrlParameters>(
51
52
  'boundary',
52
53
  options,
@@ -35,6 +35,7 @@ export const boundaryTableSource = async function (
35
35
  if (filters) {
36
36
  urlParameters.filters = filters;
37
37
  }
38
+
38
39
  return baseSource<UrlParameters>(
39
40
  'boundary',
40
41
  options,
@@ -19,6 +19,7 @@ export type H3QuerySourceOptions = SourceOptions &
19
19
  QuerySourceOptions &
20
20
  AggregationOptions &
21
21
  FilterOptions;
22
+
22
23
  type UrlParameters = {
23
24
  aggregationExp: string;
24
25
  aggregationResLevel?: string;
@@ -42,10 +43,13 @@ export const h3QuerySource = async function (
42
43
  queryParameters,
43
44
  filters,
44
45
  } = options;
46
+
47
+ const spatialDataType = 'h3';
48
+
45
49
  const urlParameters: UrlParameters = {
46
50
  aggregationExp,
47
51
  spatialDataColumn,
48
- spatialDataType: 'h3',
52
+ spatialDataType,
49
53
  q: sqlQuery,
50
54
  };
51
55
 
@@ -58,10 +62,16 @@ export const h3QuerySource = async function (
58
62
  if (filters) {
59
63
  urlParameters.filters = filters;
60
64
  }
65
+
61
66
  return baseSource<UrlParameters>('query', options, urlParameters).then(
62
67
  (result) => ({
63
68
  ...(result as TilejsonResult),
64
- widgetSource: new WidgetQuerySource(options),
69
+ widgetSource: new WidgetQuerySource({
70
+ ...options,
71
+ // NOTE: Parameters with default values above must be explicitly passed here.
72
+ spatialDataColumn,
73
+ spatialDataType,
74
+ }),
65
75
  })
66
76
  );
67
77
  };
@@ -41,11 +41,14 @@ export const h3TableSource = async function (
41
41
  tableName,
42
42
  filters,
43
43
  } = options;
44
+
45
+ const spatialDataType = 'h3';
46
+
44
47
  const urlParameters: UrlParameters = {
45
48
  aggregationExp,
46
49
  name: tableName,
47
50
  spatialDataColumn,
48
- spatialDataType: 'h3',
51
+ spatialDataType,
49
52
  };
50
53
 
51
54
  if (aggregationResLevel) {
@@ -54,10 +57,16 @@ export const h3TableSource = async function (
54
57
  if (filters) {
55
58
  urlParameters.filters = filters;
56
59
  }
60
+
57
61
  return baseSource<UrlParameters>('table', options, urlParameters).then(
58
62
  (result) => ({
59
63
  ...(result as TilejsonResult),
60
- widgetSource: new WidgetTableSource(options),
64
+ widgetSource: new WidgetTableSource({
65
+ ...options,
66
+ // NOTE: Parameters with default values above must be explicitly passed here.
67
+ spatialDataColumn,
68
+ spatialDataType,
69
+ }),
61
70
  })
62
71
  );
63
72
  };
@@ -44,11 +44,14 @@ export const quadbinQuerySource = async function (
44
44
  queryParameters,
45
45
  filters,
46
46
  } = options;
47
+
48
+ const spatialDataType = 'quadbin';
49
+
47
50
  const urlParameters: UrlParameters = {
48
51
  aggregationExp,
49
52
  q: sqlQuery,
50
53
  spatialDataColumn,
51
- spatialDataType: 'quadbin',
54
+ spatialDataType,
52
55
  };
53
56
 
54
57
  if (aggregationResLevel) {
@@ -60,10 +63,16 @@ export const quadbinQuerySource = async function (
60
63
  if (filters) {
61
64
  urlParameters.filters = filters;
62
65
  }
66
+
63
67
  return baseSource<UrlParameters>('query', options, urlParameters).then(
64
68
  (result) => ({
65
69
  ...(result as TilejsonResult),
66
- widgetSource: new WidgetQuerySource(options),
70
+ widgetSource: new WidgetQuerySource({
71
+ ...options,
72
+ // NOTE: Parameters with default values above must be explicitly passed here.
73
+ spatialDataColumn,
74
+ spatialDataType,
75
+ }),
67
76
  })
68
77
  );
69
78
  };
@@ -43,11 +43,13 @@ export const quadbinTableSource = async function (
43
43
  filters,
44
44
  } = options;
45
45
 
46
+ const spatialDataType = 'quadbin';
47
+
46
48
  const urlParameters: UrlParameters = {
47
49
  aggregationExp,
48
50
  name: tableName,
49
51
  spatialDataColumn,
50
- spatialDataType: 'quadbin',
52
+ spatialDataType,
51
53
  };
52
54
 
53
55
  if (aggregationResLevel) {
@@ -56,10 +58,16 @@ export const quadbinTableSource = async function (
56
58
  if (filters) {
57
59
  urlParameters.filters = filters;
58
60
  }
61
+
59
62
  return baseSource<UrlParameters>('table', options, urlParameters).then(
60
63
  (result) => ({
61
64
  ...(result as TilejsonResult),
62
- widgetSource: new WidgetTableSource(options),
65
+ widgetSource: new WidgetTableSource({
66
+ ...options,
67
+ // NOTE: Parameters with default values above must be explicitly passed here.
68
+ spatialDataColumn,
69
+ spatialDataType,
70
+ }),
63
71
  })
64
72
  );
65
73
  };