@carto/api-client 0.5.3 → 0.5.4-alpha.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/build/api-client.cjs +46 -21
- package/build/api-client.cjs.map +1 -1
- package/build/api-client.d.cts +6 -5
- package/build/api-client.d.ts +6 -5
- package/build/api-client.js +43 -20
- package/build/api-client.js.map +1 -1
- package/build/worker.js +2 -2
- package/build/worker.js.map +1 -1
- package/package.json +3 -2
- package/src/filters/tileFeatures.ts +3 -3
- package/src/filters/tileFeaturesGeometries.ts +8 -5
- package/src/sources/h3-query-source.ts +6 -1
- package/src/sources/h3-table-source.ts +6 -1
- package/src/sources/quadbin-query-source.ts +6 -1
- package/src/sources/quadbin-table-source.ts +6 -1
- package/src/utils.ts +20 -1
package/build/worker.js
CHANGED
|
@@ -5440,7 +5440,7 @@ function tileFeatures({
|
|
|
5440
5440
|
spatialDataColumn = DEFAULT_GEO_COLUMN,
|
|
5441
5441
|
spatialDataType,
|
|
5442
5442
|
rasterMetadata,
|
|
5443
|
-
|
|
5443
|
+
storeGeometry = false
|
|
5444
5444
|
}) {
|
|
5445
5445
|
if (spatialDataType === "geo") {
|
|
5446
5446
|
return tileFeaturesGeometries({
|
|
@@ -5448,7 +5448,7 @@ function tileFeatures({
|
|
|
5448
5448
|
tileFormat,
|
|
5449
5449
|
spatialFilter,
|
|
5450
5450
|
uniqueIdProperty,
|
|
5451
|
-
options
|
|
5451
|
+
options: { storeGeometry }
|
|
5452
5452
|
});
|
|
5453
5453
|
}
|
|
5454
5454
|
if (tiles.some(isRasterTile)) {
|