@carto/api-client 0.5.1-alpha.2 → 0.5.1
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.
- package/CHANGELOG.md +7 -2
- package/build/api-client.cjs +22 -29
- package/build/api-client.cjs.map +1 -1
- package/build/api-client.d.cts +38 -15
- package/build/api-client.d.ts +38 -15
- package/build/api-client.js +18 -29
- package/build/api-client.js.map +1 -1
- package/build/worker.js +3 -0
- package/build/worker.js.map +1 -1
- package/package.json +3 -4
- package/src/fetch-map/fetch-map.ts +1 -7
- package/src/fetch-map/parse-map.ts +2 -1
- package/src/fetch-map/source.ts +12 -3
- package/src/fetch-map/types.ts +3 -2
- package/src/index.ts +1 -0
- package/src/sources/base-source.ts +8 -22
- package/src/sources/boundary-query-source.ts +1 -5
- package/src/sources/boundary-table-source.ts +1 -5
- package/src/sources/h3-query-source.ts +1 -1
- package/src/sources/h3-table-source.ts +1 -1
- package/src/sources/h3-tileset-source.ts +2 -2
- package/src/sources/index.ts +18 -10
- package/src/sources/quadbin-query-source.ts +1 -1
- package/src/sources/quadbin-table-source.ts +1 -1
- package/src/sources/quadbin-tileset-source.ts +2 -2
- package/src/sources/raster-source.ts +3 -3
- package/src/sources/types.ts +6 -8
- package/src/sources/vector-query-source.ts +1 -1
- package/src/sources/vector-table-source.ts +1 -1
- package/src/sources/vector-tileset-source.ts +2 -2
- package/src/types-internal.ts +0 -24
- package/src/widget-sources/types.ts +2 -2
- package/src/widget-sources/widget-tileset-source-impl.ts +4 -0
package/build/api-client.d.cts
CHANGED
|
@@ -219,10 +219,6 @@ type PositionalQueryParameter = QueryParameterValue[];
|
|
|
219
219
|
/** @privateRemarks Source: @deck.gl/carto */
|
|
220
220
|
type QueryParameters = NamedQueryParameter | PositionalQueryParameter;
|
|
221
221
|
|
|
222
|
-
/******************************************************************************
|
|
223
|
-
* COMMON
|
|
224
|
-
*/
|
|
225
|
-
|
|
226
222
|
/******************************************************************************
|
|
227
223
|
* LOCAL CALCULATIONS
|
|
228
224
|
*/
|
|
@@ -323,8 +319,6 @@ type SourceOptionalOptions = {
|
|
|
323
319
|
value?: number;
|
|
324
320
|
};
|
|
325
321
|
clientId: string;
|
|
326
|
-
/** @deprecated use `query` instead **/
|
|
327
|
-
format: Format;
|
|
328
322
|
/**
|
|
329
323
|
* Maximum URL character length. Above this limit, requests use POST.
|
|
330
324
|
* Used to avoid browser and CDN limits.
|
|
@@ -637,11 +631,6 @@ type RasterMetadata = {
|
|
|
637
631
|
type TilejsonResult = Tilejson & {
|
|
638
632
|
accessToken: string;
|
|
639
633
|
};
|
|
640
|
-
type GeojsonResult = {
|
|
641
|
-
type: 'FeatureCollection';
|
|
642
|
-
features: Feature[];
|
|
643
|
-
};
|
|
644
|
-
type JsonResult = any[];
|
|
645
634
|
type QueryResult = {
|
|
646
635
|
meta: {
|
|
647
636
|
cacheHit: boolean;
|
|
@@ -786,6 +775,7 @@ type KeplerMapConfig = {
|
|
|
786
775
|
styleType: string;
|
|
787
776
|
visibleLayerGroups: Record<string, boolean>;
|
|
788
777
|
};
|
|
778
|
+
legendSettings?: any;
|
|
789
779
|
popupSettings: any;
|
|
790
780
|
visState: {
|
|
791
781
|
layers: MapConfigLayer[];
|
|
@@ -864,7 +854,7 @@ type Dataset = {
|
|
|
864
854
|
cache?: number;
|
|
865
855
|
connectionName: string;
|
|
866
856
|
geoColumn: string;
|
|
867
|
-
data: TilejsonResult
|
|
857
|
+
data: TilejsonResult;
|
|
868
858
|
columns: string[];
|
|
869
859
|
format: Format;
|
|
870
860
|
aggregationExp: string;
|
|
@@ -926,6 +916,7 @@ declare function parseMap(json: any): {
|
|
|
926
916
|
visibleLayerGroups: Record<string, boolean>;
|
|
927
917
|
};
|
|
928
918
|
popupSettings: any;
|
|
919
|
+
legendSettings: any;
|
|
929
920
|
token: any;
|
|
930
921
|
layers: (LayerDescriptor | undefined)[];
|
|
931
922
|
};
|
|
@@ -1162,9 +1153,9 @@ interface TableRequestOptions extends BaseRequestOptions {
|
|
|
1162
1153
|
sortByColumnType?: SortColumnType;
|
|
1163
1154
|
offset?: number;
|
|
1164
1155
|
limit?: number;
|
|
1165
|
-
/**
|
|
1156
|
+
/** @deprecated Supported for tilesets only. Prefer `filters` (for all sources) instead. */
|
|
1166
1157
|
searchFilterColumn?: string;
|
|
1167
|
-
/**
|
|
1158
|
+
/** @deprecated Supported for tilesets only. Prefer `filters` (for all sources) instead. */
|
|
1168
1159
|
searchFilterText?: string;
|
|
1169
1160
|
}
|
|
1170
1161
|
/** Options for {@link WidgetRemoteSource#getTimeSeries}. */
|
|
@@ -1737,4 +1728,36 @@ declare function makeIntervalComplete(intervals: FilterInterval[]): FilterInterv
|
|
|
1737
1728
|
*/
|
|
1738
1729
|
declare function transformToTileCoords<T extends Geometry>(geometry: T, bbox: BBox): T;
|
|
1739
1730
|
|
|
1740
|
-
|
|
1731
|
+
type FetchDatasetOptions = {
|
|
1732
|
+
accessToken: string;
|
|
1733
|
+
apiBaseUrl: string;
|
|
1734
|
+
connection: string;
|
|
1735
|
+
headers?: Record<string, string>;
|
|
1736
|
+
localCache?: {
|
|
1737
|
+
cacheControl: 'no-cache'[];
|
|
1738
|
+
};
|
|
1739
|
+
maxLengthURL?: number;
|
|
1740
|
+
};
|
|
1741
|
+
type FetchDataset = {
|
|
1742
|
+
dataset: Dataset;
|
|
1743
|
+
filters?: Filter;
|
|
1744
|
+
options: FetchDatasetOptions;
|
|
1745
|
+
};
|
|
1746
|
+
declare function configureSource({ dataset, filters, options, }: FetchDataset): Promise<TilejsonResult>;
|
|
1747
|
+
/**
|
|
1748
|
+
* @internal
|
|
1749
|
+
* State of `aggregationResLevel` in the UI and backend config is based on an assumption of
|
|
1750
|
+
* 512x512px tiles. Because we may change tile resolution for performance goals, the
|
|
1751
|
+
* `aggregationResLevel` passed to the deck.gl layer must be scaled with tile resolution.
|
|
1752
|
+
*/
|
|
1753
|
+
declare function scaleAggregationResLevel(aggregationResLevel: number, tileResolution: number): number | undefined;
|
|
1754
|
+
/**
|
|
1755
|
+
* @internal
|
|
1756
|
+
*/
|
|
1757
|
+
declare function getColumnNameFromGeoColumn(geoColumn: string | null | undefined): string | null | undefined;
|
|
1758
|
+
/**
|
|
1759
|
+
* @internal
|
|
1760
|
+
*/
|
|
1761
|
+
declare function getSpatialIndexFromGeoColumn(geoColumn: string): SpatialIndex | null;
|
|
1762
|
+
|
|
1763
|
+
export { AGGREGATION, type APIErrorContext, type APIRequestType, type AddFilterOptions, type AggregationFunction, type AggregationType, ApiVersion, type Attribute, _default as BASEMAP, type BaseRequestOptions, type Basemap, type BoundaryQuerySourceOptions, type BoundaryQuerySourceResponse, type BoundaryTableSourceOptions, type BoundaryTableSourceResponse, CartoAPIError, type CategoryRequestOptions, type CategoryResponse, type ColumnsOption, DEFAULT_API_BASE_URL, FEATURE_GEOM_PROPERTY, type FeaturesRequestOptions, type FeaturesResponse, type FetchMapOptions, type FetchMapResult, type Filter, type FilterFunction, type FilterInterval, type FilterIntervalComplete, type FilterIntervalExtremum, type FilterLogicalOperator, type FilterOptions, FilterType, type Filters, type Format, type FormulaRequestOptions, type FormulaResponse, type GetFilterOptions, type GoogleBasemap, type GroupByFeature, type GroupDateType, type H3QuerySourceOptions, type H3QuerySourceResponse, type H3TableSourceOptions, type H3TableSourceResponse, type H3TilesetSourceOptions, type H3TilesetSourceResponse, type HasFilterOptions, type HistogramRequestOptions, type HistogramResponse, type KeplerMapConfig, type Layer, type LayerDescriptor, type LayerType, type MapLibreBasemap, type MapType, type NamedQueryParameter, OPACITY_MAP, type ParseMapResult, type PositionalQueryParameter, Provider, type ProviderType, type QuadbinQuerySourceOptions, type QuadbinQuerySourceResponse, type QuadbinTableSourceOptions, type QuadbinTableSourceResponse, type QuadbinTilesetSourceOptions, type QuadbinTilesetSourceResponse, type QueryOptions, type QueryParameterValue, type QueryParameters, type QueryResult, type QuerySourceOptions, type RangeRequestOptions, type RangeResponse, type Raster, RasterBandColorinterp, type RasterBandType, type RasterMetadata, type RasterMetadataBand, type RasterMetadataBandStats, type RasterSourceOptions, type RasterTile, type RemoveFilterOptions, type SCALE_TYPE, SOURCE_DEFAULTS, type ScatterPlotFeature, type ScatterRequestOptions, type ScatterResponse, type SortColumnType, type SortDirection, type SourceOptionalOptions, type SourceOptions, type SourceRequiredOptions, type SpatialDataType, type SpatialFilter, type SpatialFilterPolyfillMode, SpatialIndex, SpatialIndexColumn, type SpatialIndexTile, type StringSearchOptions, type TableRequestOptions, type TableResponse, type TableSourceOptions, type Tile, type TileFeatureExtractOptions, type TileFeatures, type TileFeaturesSpatialIndexOptions, TileFormat, type TileResolution, type Tilejson, type TilejsonResult, type TilesetSourceOptions, type Tilestats, type TimeSeriesRequestOptions, type TimeSeriesResponse, type VectorLayer, type VectorQuerySourceOptions, type VectorQuerySourceResponse, type VectorTableSourceOptions, type VectorTableSourceResponse, type VectorTilesetSourceOptions, type VectorTilesetSourceResponse, type ViewState, type Viewport, WidgetQuerySource, type WidgetQuerySourceResult, WidgetRasterSource, type WidgetRasterSourceProps, type WidgetRasterSourceResult, WidgetRemoteSource, type WidgetRemoteSourceProps, WidgetSource, type WidgetSourceProps, WidgetTableSource, type WidgetTableSourceResult, WidgetTilesetSource, type WidgetTilesetSourceProps, type WidgetTilesetSourceResult, type _DataFilterExtensionProps, _buildFeatureFilter, domainFromValues as _domainFromValues, _getHexagonResolution, addFilter, aggregate, aggregationFunctions, applyFilters, applySorting, boundaryQuerySource, boundaryTableSource, buildBinaryFeatureFilter, buildPublicMapUrl, buildStatsUrl, clearFilters, configureSource, createPolygonSpatialFilter, createViewportSpatialFilter, fetchBasemapProps, fetchMap, filterFunctions, geojsonFeatures, getClient, getColorAccessor, getColorValueAccessor, getColumnNameFromGeoColumn, getDataFilterExtensionProps, getFilter, getIconUrlAccessor, getLayerProps, getMaxMarkerSize, getSizeAccessor, getSpatialIndexFromGeoColumn, getTextAccessor, groupValuesByColumn, groupValuesByDateColumn, h3QuerySource, h3TableSource, h3TilesetSource, hasFilter, histogram, makeIntervalComplete, negateAccessor, opacityToAlpha, parseMap, quadbinQuerySource, quadbinTableSource, quadbinTilesetSource, query, rasterSource, removeFilter, requestWithParameters, scaleAggregationResLevel, scatterPlot, setClient, tileFeatures, tileFeaturesGeometries, tileFeaturesSpatialIndex, transformToTileCoords, vectorQuerySource, vectorTableSource, vectorTilesetSource };
|
package/build/api-client.d.ts
CHANGED
|
@@ -219,10 +219,6 @@ type PositionalQueryParameter = QueryParameterValue[];
|
|
|
219
219
|
/** @privateRemarks Source: @deck.gl/carto */
|
|
220
220
|
type QueryParameters = NamedQueryParameter | PositionalQueryParameter;
|
|
221
221
|
|
|
222
|
-
/******************************************************************************
|
|
223
|
-
* COMMON
|
|
224
|
-
*/
|
|
225
|
-
|
|
226
222
|
/******************************************************************************
|
|
227
223
|
* LOCAL CALCULATIONS
|
|
228
224
|
*/
|
|
@@ -323,8 +319,6 @@ type SourceOptionalOptions = {
|
|
|
323
319
|
value?: number;
|
|
324
320
|
};
|
|
325
321
|
clientId: string;
|
|
326
|
-
/** @deprecated use `query` instead **/
|
|
327
|
-
format: Format;
|
|
328
322
|
/**
|
|
329
323
|
* Maximum URL character length. Above this limit, requests use POST.
|
|
330
324
|
* Used to avoid browser and CDN limits.
|
|
@@ -637,11 +631,6 @@ type RasterMetadata = {
|
|
|
637
631
|
type TilejsonResult = Tilejson & {
|
|
638
632
|
accessToken: string;
|
|
639
633
|
};
|
|
640
|
-
type GeojsonResult = {
|
|
641
|
-
type: 'FeatureCollection';
|
|
642
|
-
features: Feature[];
|
|
643
|
-
};
|
|
644
|
-
type JsonResult = any[];
|
|
645
634
|
type QueryResult = {
|
|
646
635
|
meta: {
|
|
647
636
|
cacheHit: boolean;
|
|
@@ -786,6 +775,7 @@ type KeplerMapConfig = {
|
|
|
786
775
|
styleType: string;
|
|
787
776
|
visibleLayerGroups: Record<string, boolean>;
|
|
788
777
|
};
|
|
778
|
+
legendSettings?: any;
|
|
789
779
|
popupSettings: any;
|
|
790
780
|
visState: {
|
|
791
781
|
layers: MapConfigLayer[];
|
|
@@ -864,7 +854,7 @@ type Dataset = {
|
|
|
864
854
|
cache?: number;
|
|
865
855
|
connectionName: string;
|
|
866
856
|
geoColumn: string;
|
|
867
|
-
data: TilejsonResult
|
|
857
|
+
data: TilejsonResult;
|
|
868
858
|
columns: string[];
|
|
869
859
|
format: Format;
|
|
870
860
|
aggregationExp: string;
|
|
@@ -926,6 +916,7 @@ declare function parseMap(json: any): {
|
|
|
926
916
|
visibleLayerGroups: Record<string, boolean>;
|
|
927
917
|
};
|
|
928
918
|
popupSettings: any;
|
|
919
|
+
legendSettings: any;
|
|
929
920
|
token: any;
|
|
930
921
|
layers: (LayerDescriptor | undefined)[];
|
|
931
922
|
};
|
|
@@ -1162,9 +1153,9 @@ interface TableRequestOptions extends BaseRequestOptions {
|
|
|
1162
1153
|
sortByColumnType?: SortColumnType;
|
|
1163
1154
|
offset?: number;
|
|
1164
1155
|
limit?: number;
|
|
1165
|
-
/**
|
|
1156
|
+
/** @deprecated Supported for tilesets only. Prefer `filters` (for all sources) instead. */
|
|
1166
1157
|
searchFilterColumn?: string;
|
|
1167
|
-
/**
|
|
1158
|
+
/** @deprecated Supported for tilesets only. Prefer `filters` (for all sources) instead. */
|
|
1168
1159
|
searchFilterText?: string;
|
|
1169
1160
|
}
|
|
1170
1161
|
/** Options for {@link WidgetRemoteSource#getTimeSeries}. */
|
|
@@ -1737,4 +1728,36 @@ declare function makeIntervalComplete(intervals: FilterInterval[]): FilterInterv
|
|
|
1737
1728
|
*/
|
|
1738
1729
|
declare function transformToTileCoords<T extends Geometry>(geometry: T, bbox: BBox): T;
|
|
1739
1730
|
|
|
1740
|
-
|
|
1731
|
+
type FetchDatasetOptions = {
|
|
1732
|
+
accessToken: string;
|
|
1733
|
+
apiBaseUrl: string;
|
|
1734
|
+
connection: string;
|
|
1735
|
+
headers?: Record<string, string>;
|
|
1736
|
+
localCache?: {
|
|
1737
|
+
cacheControl: 'no-cache'[];
|
|
1738
|
+
};
|
|
1739
|
+
maxLengthURL?: number;
|
|
1740
|
+
};
|
|
1741
|
+
type FetchDataset = {
|
|
1742
|
+
dataset: Dataset;
|
|
1743
|
+
filters?: Filter;
|
|
1744
|
+
options: FetchDatasetOptions;
|
|
1745
|
+
};
|
|
1746
|
+
declare function configureSource({ dataset, filters, options, }: FetchDataset): Promise<TilejsonResult>;
|
|
1747
|
+
/**
|
|
1748
|
+
* @internal
|
|
1749
|
+
* State of `aggregationResLevel` in the UI and backend config is based on an assumption of
|
|
1750
|
+
* 512x512px tiles. Because we may change tile resolution for performance goals, the
|
|
1751
|
+
* `aggregationResLevel` passed to the deck.gl layer must be scaled with tile resolution.
|
|
1752
|
+
*/
|
|
1753
|
+
declare function scaleAggregationResLevel(aggregationResLevel: number, tileResolution: number): number | undefined;
|
|
1754
|
+
/**
|
|
1755
|
+
* @internal
|
|
1756
|
+
*/
|
|
1757
|
+
declare function getColumnNameFromGeoColumn(geoColumn: string | null | undefined): string | null | undefined;
|
|
1758
|
+
/**
|
|
1759
|
+
* @internal
|
|
1760
|
+
*/
|
|
1761
|
+
declare function getSpatialIndexFromGeoColumn(geoColumn: string): SpatialIndex | null;
|
|
1762
|
+
|
|
1763
|
+
export { AGGREGATION, type APIErrorContext, type APIRequestType, type AddFilterOptions, type AggregationFunction, type AggregationType, ApiVersion, type Attribute, _default as BASEMAP, type BaseRequestOptions, type Basemap, type BoundaryQuerySourceOptions, type BoundaryQuerySourceResponse, type BoundaryTableSourceOptions, type BoundaryTableSourceResponse, CartoAPIError, type CategoryRequestOptions, type CategoryResponse, type ColumnsOption, DEFAULT_API_BASE_URL, FEATURE_GEOM_PROPERTY, type FeaturesRequestOptions, type FeaturesResponse, type FetchMapOptions, type FetchMapResult, type Filter, type FilterFunction, type FilterInterval, type FilterIntervalComplete, type FilterIntervalExtremum, type FilterLogicalOperator, type FilterOptions, FilterType, type Filters, type Format, type FormulaRequestOptions, type FormulaResponse, type GetFilterOptions, type GoogleBasemap, type GroupByFeature, type GroupDateType, type H3QuerySourceOptions, type H3QuerySourceResponse, type H3TableSourceOptions, type H3TableSourceResponse, type H3TilesetSourceOptions, type H3TilesetSourceResponse, type HasFilterOptions, type HistogramRequestOptions, type HistogramResponse, type KeplerMapConfig, type Layer, type LayerDescriptor, type LayerType, type MapLibreBasemap, type MapType, type NamedQueryParameter, OPACITY_MAP, type ParseMapResult, type PositionalQueryParameter, Provider, type ProviderType, type QuadbinQuerySourceOptions, type QuadbinQuerySourceResponse, type QuadbinTableSourceOptions, type QuadbinTableSourceResponse, type QuadbinTilesetSourceOptions, type QuadbinTilesetSourceResponse, type QueryOptions, type QueryParameterValue, type QueryParameters, type QueryResult, type QuerySourceOptions, type RangeRequestOptions, type RangeResponse, type Raster, RasterBandColorinterp, type RasterBandType, type RasterMetadata, type RasterMetadataBand, type RasterMetadataBandStats, type RasterSourceOptions, type RasterTile, type RemoveFilterOptions, type SCALE_TYPE, SOURCE_DEFAULTS, type ScatterPlotFeature, type ScatterRequestOptions, type ScatterResponse, type SortColumnType, type SortDirection, type SourceOptionalOptions, type SourceOptions, type SourceRequiredOptions, type SpatialDataType, type SpatialFilter, type SpatialFilterPolyfillMode, SpatialIndex, SpatialIndexColumn, type SpatialIndexTile, type StringSearchOptions, type TableRequestOptions, type TableResponse, type TableSourceOptions, type Tile, type TileFeatureExtractOptions, type TileFeatures, type TileFeaturesSpatialIndexOptions, TileFormat, type TileResolution, type Tilejson, type TilejsonResult, type TilesetSourceOptions, type Tilestats, type TimeSeriesRequestOptions, type TimeSeriesResponse, type VectorLayer, type VectorQuerySourceOptions, type VectorQuerySourceResponse, type VectorTableSourceOptions, type VectorTableSourceResponse, type VectorTilesetSourceOptions, type VectorTilesetSourceResponse, type ViewState, type Viewport, WidgetQuerySource, type WidgetQuerySourceResult, WidgetRasterSource, type WidgetRasterSourceProps, type WidgetRasterSourceResult, WidgetRemoteSource, type WidgetRemoteSourceProps, WidgetSource, type WidgetSourceProps, WidgetTableSource, type WidgetTableSourceResult, WidgetTilesetSource, type WidgetTilesetSourceProps, type WidgetTilesetSourceResult, type _DataFilterExtensionProps, _buildFeatureFilter, domainFromValues as _domainFromValues, _getHexagonResolution, addFilter, aggregate, aggregationFunctions, applyFilters, applySorting, boundaryQuerySource, boundaryTableSource, buildBinaryFeatureFilter, buildPublicMapUrl, buildStatsUrl, clearFilters, configureSource, createPolygonSpatialFilter, createViewportSpatialFilter, fetchBasemapProps, fetchMap, filterFunctions, geojsonFeatures, getClient, getColorAccessor, getColorValueAccessor, getColumnNameFromGeoColumn, getDataFilterExtensionProps, getFilter, getIconUrlAccessor, getLayerProps, getMaxMarkerSize, getSizeAccessor, getSpatialIndexFromGeoColumn, getTextAccessor, groupValuesByColumn, groupValuesByDateColumn, h3QuerySource, h3TableSource, h3TilesetSource, hasFilter, histogram, makeIntervalComplete, negateAccessor, opacityToAlpha, parseMap, quadbinQuerySource, quadbinTableSource, quadbinTilesetSource, query, rasterSource, removeFilter, requestWithParameters, scaleAggregationResLevel, scatterPlot, setClient, tileFeatures, tileFeaturesGeometries, tileFeaturesSpatialIndex, transformToTileCoords, vectorQuerySource, vectorTableSource, vectorTilesetSource };
|
package/build/api-client.js
CHANGED
|
@@ -11282,7 +11282,6 @@ function excludeURLParameters(baseUrlString, parameters) {
|
|
|
11282
11282
|
// src/sources/base-source.ts
|
|
11283
11283
|
var SOURCE_DEFAULTS = {
|
|
11284
11284
|
apiBaseUrl: DEFAULT_API_BASE_URL,
|
|
11285
|
-
format: "tilejson",
|
|
11286
11285
|
headers: {},
|
|
11287
11286
|
maxLengthURL: DEFAULT_MAX_LENGTH_URL
|
|
11288
11287
|
};
|
|
@@ -11301,7 +11300,7 @@ async function baseSource(endpoint, options, urlParameters) {
|
|
|
11301
11300
|
}
|
|
11302
11301
|
}
|
|
11303
11302
|
const baseUrl = buildSourceUrl(mergedOptions);
|
|
11304
|
-
const { clientId, maxLengthURL,
|
|
11303
|
+
const { clientId, maxLengthURL, localCache } = mergedOptions;
|
|
11305
11304
|
const headers = {
|
|
11306
11305
|
Authorization: `Bearer ${options.accessToken}`,
|
|
11307
11306
|
...options.headers
|
|
@@ -11321,7 +11320,7 @@ async function baseSource(endpoint, options, urlParameters) {
|
|
|
11321
11320
|
maxLengthURL,
|
|
11322
11321
|
localCache
|
|
11323
11322
|
});
|
|
11324
|
-
const dataUrl = mapInstantiation
|
|
11323
|
+
const dataUrl = mapInstantiation.tilejson.url[0];
|
|
11325
11324
|
if (cache) {
|
|
11326
11325
|
cache.value = parseInt(
|
|
11327
11326
|
new URL(dataUrl).searchParams.get("cache") || "",
|
|
@@ -11329,21 +11328,7 @@ async function baseSource(endpoint, options, urlParameters) {
|
|
|
11329
11328
|
);
|
|
11330
11329
|
}
|
|
11331
11330
|
errorContext.requestType = "Map data";
|
|
11332
|
-
|
|
11333
|
-
const json = await requestWithParameters({
|
|
11334
|
-
baseUrl: dataUrl,
|
|
11335
|
-
parameters: { client: clientId },
|
|
11336
|
-
headers,
|
|
11337
|
-
errorContext,
|
|
11338
|
-
maxLengthURL,
|
|
11339
|
-
localCache
|
|
11340
|
-
});
|
|
11341
|
-
if (accessToken) {
|
|
11342
|
-
json.accessToken = accessToken;
|
|
11343
|
-
}
|
|
11344
|
-
return json;
|
|
11345
|
-
}
|
|
11346
|
-
return await requestWithParameters({
|
|
11331
|
+
const json = await requestWithParameters({
|
|
11347
11332
|
baseUrl: dataUrl,
|
|
11348
11333
|
parameters: { client: clientId },
|
|
11349
11334
|
headers,
|
|
@@ -11351,6 +11336,10 @@ async function baseSource(endpoint, options, urlParameters) {
|
|
|
11351
11336
|
maxLengthURL,
|
|
11352
11337
|
localCache
|
|
11353
11338
|
});
|
|
11339
|
+
if (accessToken) {
|
|
11340
|
+
json.accessToken = accessToken;
|
|
11341
|
+
}
|
|
11342
|
+
return json;
|
|
11354
11343
|
}
|
|
11355
11344
|
|
|
11356
11345
|
// src/sources/boundary-query-source.ts
|
|
@@ -11375,11 +11364,7 @@ var boundaryQuerySource = async function(options) {
|
|
|
11375
11364
|
if (queryParameters) {
|
|
11376
11365
|
urlParameters.queryParameters = queryParameters;
|
|
11377
11366
|
}
|
|
11378
|
-
return baseSource(
|
|
11379
|
-
"boundary",
|
|
11380
|
-
options,
|
|
11381
|
-
urlParameters
|
|
11382
|
-
);
|
|
11367
|
+
return baseSource("boundary", options, urlParameters);
|
|
11383
11368
|
};
|
|
11384
11369
|
|
|
11385
11370
|
// src/sources/boundary-table-source.ts
|
|
@@ -11395,11 +11380,7 @@ var boundaryTableSource = async function(options) {
|
|
|
11395
11380
|
if (filters) {
|
|
11396
11381
|
urlParameters.filters = filters;
|
|
11397
11382
|
}
|
|
11398
|
-
return baseSource(
|
|
11399
|
-
"boundary",
|
|
11400
|
-
options,
|
|
11401
|
-
urlParameters
|
|
11402
|
-
);
|
|
11383
|
+
return baseSource("boundary", options, urlParameters);
|
|
11403
11384
|
};
|
|
11404
11385
|
|
|
11405
11386
|
// src/widget-sources/widget-source.ts
|
|
@@ -12648,6 +12629,9 @@ var WidgetTilesetSourceImpl = class extends WidgetSource {
|
|
|
12648
12629
|
return { rows: [], totalCount: 0 };
|
|
12649
12630
|
}
|
|
12650
12631
|
if (searchFilterColumn && searchFilterText) {
|
|
12632
|
+
console.warn(
|
|
12633
|
+
'WidgetTilesetSource: "searchFilterText" is deprecated, use "filters" and FilterType.STRING_SEARCH instead.'
|
|
12634
|
+
);
|
|
12651
12635
|
filteredFeatures = filteredFeatures.filter(
|
|
12652
12636
|
(row) => row[searchFilterColumn] && String(row[searchFilterColumn]).toLowerCase().includes(String(searchFilterText).toLowerCase())
|
|
12653
12637
|
);
|
|
@@ -14445,7 +14429,7 @@ function parseMap(json) {
|
|
|
14445
14429
|
const { keplerMapConfig, datasets, token } = json;
|
|
14446
14430
|
assert2(keplerMapConfig.version === "v1", "Only support Kepler v1");
|
|
14447
14431
|
const config2 = keplerMapConfig.config;
|
|
14448
|
-
const { filters, mapState, mapStyle, popupSettings } = config2;
|
|
14432
|
+
const { filters, mapState, mapStyle, popupSettings, legendSettings } = config2;
|
|
14449
14433
|
const { layers, layerBlending, interactionConfig } = config2.visState;
|
|
14450
14434
|
return {
|
|
14451
14435
|
id: json.id,
|
|
@@ -14457,6 +14441,7 @@ function parseMap(json) {
|
|
|
14457
14441
|
/** @deprecated Use `basemap`. */
|
|
14458
14442
|
mapStyle,
|
|
14459
14443
|
popupSettings,
|
|
14444
|
+
legendSettings,
|
|
14460
14445
|
token,
|
|
14461
14446
|
layers: layers.reverse().map(({ id, type, config: config3, visualChannels }) => {
|
|
14462
14447
|
try {
|
|
@@ -15402,6 +15387,7 @@ export {
|
|
|
15402
15387
|
buildPublicMapUrl,
|
|
15403
15388
|
buildStatsUrl,
|
|
15404
15389
|
clearFilters,
|
|
15390
|
+
configureSource,
|
|
15405
15391
|
createPolygonSpatialFilter,
|
|
15406
15392
|
createViewportSpatialFilter,
|
|
15407
15393
|
fetchBasemapProps,
|
|
@@ -15411,12 +15397,14 @@ export {
|
|
|
15411
15397
|
getClient,
|
|
15412
15398
|
getColorAccessor,
|
|
15413
15399
|
getColorValueAccessor,
|
|
15400
|
+
getColumnNameFromGeoColumn,
|
|
15414
15401
|
getDataFilterExtensionProps,
|
|
15415
15402
|
getFilter,
|
|
15416
15403
|
getIconUrlAccessor,
|
|
15417
15404
|
getLayerProps,
|
|
15418
15405
|
getMaxMarkerSize,
|
|
15419
15406
|
getSizeAccessor,
|
|
15407
|
+
getSpatialIndexFromGeoColumn,
|
|
15420
15408
|
getTextAccessor,
|
|
15421
15409
|
groupValuesByColumn,
|
|
15422
15410
|
groupValuesByDateColumn,
|
|
@@ -15436,6 +15424,7 @@ export {
|
|
|
15436
15424
|
rasterSource,
|
|
15437
15425
|
removeFilter,
|
|
15438
15426
|
requestWithParameters,
|
|
15427
|
+
scaleAggregationResLevel,
|
|
15439
15428
|
scatterPlot,
|
|
15440
15429
|
setClient,
|
|
15441
15430
|
tileFeatures,
|