@carto/api-client 0.5.4-alpha.0 → 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 +2 -2
- 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 +2 -2
- package/build/api-client.js.map +1 -1
- package/build/worker.js +2 -2
- package/build/worker.js.map +1 -1
- package/package.json +1 -1
- package/src/filters/tileFeatures.ts +3 -3
- package/src/filters/tileFeaturesGeometries.ts +8 -5
package/build/api-client.cjs
CHANGED
|
@@ -5788,7 +5788,7 @@ function tileFeatures({
|
|
|
5788
5788
|
spatialDataColumn = DEFAULT_GEO_COLUMN,
|
|
5789
5789
|
spatialDataType,
|
|
5790
5790
|
rasterMetadata,
|
|
5791
|
-
|
|
5791
|
+
storeGeometry = false
|
|
5792
5792
|
}) {
|
|
5793
5793
|
if (spatialDataType === "geo") {
|
|
5794
5794
|
return tileFeaturesGeometries({
|
|
@@ -5796,7 +5796,7 @@ function tileFeatures({
|
|
|
5796
5796
|
tileFormat,
|
|
5797
5797
|
spatialFilter,
|
|
5798
5798
|
uniqueIdProperty,
|
|
5799
|
-
options
|
|
5799
|
+
options: { storeGeometry }
|
|
5800
5800
|
});
|
|
5801
5801
|
}
|
|
5802
5802
|
if (tiles.some(isRasterTile)) {
|