@carto/api-client 0.5.15-alpha.raster-5 → 0.5.16
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 +9 -0
- package/build/api-client.cjs +325 -979
- package/build/api-client.cjs.map +1 -1
- package/build/api-client.d.cts +87 -154
- package/build/api-client.d.ts +87 -154
- package/build/api-client.js +319 -965
- package/build/api-client.js.map +1 -1
- package/build/worker-compat.js +1395 -1276
- package/build/worker-compat.js.map +1 -1
- package/build/worker.js +34 -0
- package/build/worker.js.map +1 -1
- package/package.json +3 -5
- package/src/fetch-map/basemap-styles.ts +1 -1
- package/src/fetch-map/index.ts +1 -6
- package/src/fetch-map/layer-map.ts +40 -130
- package/src/fetch-map/parse-map.ts +165 -284
- package/src/fetch-map/types.ts +7 -21
- package/src/fetch-map/utils.ts +0 -56
- package/src/index.ts +1 -7
- package/src/models/model.ts +1 -0
- package/src/sources/index.ts +12 -0
- package/src/sources/trajectory-query-source.ts +101 -0
- package/src/sources/trajectory-table-source.ts +96 -0
- package/src/sources/types.ts +12 -53
- package/src/widget-sources/types.ts +29 -1
- package/src/widget-sources/widget-remote-source.ts +30 -0
- package/src/widget-sources/widget-source.ts +11 -0
- package/src/widget-sources/widget-tileset-source-impl.ts +49 -0
- package/src/widget-sources/widget-tileset-source.ts +13 -0
- package/src/workers/constants.ts +1 -0
- package/src/fetch-map/raster-layer.ts +0 -536
- package/src/fetch-map/vec-expr-evaluator.ts +0 -374
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## 0.5
|
|
4
4
|
|
|
5
|
+
### 0.5.16
|
|
6
|
+
|
|
7
|
+
- feat(widgets): Add getAggregations() method (#229)
|
|
8
|
+
- chore(deps): bump h3-js from 4.2.1 to 4.3.0 (#232)
|
|
9
|
+
|
|
10
|
+
### 0.5.15
|
|
11
|
+
|
|
12
|
+
- feat(sources): Add support for trajectory data sources (#227, #228)
|
|
13
|
+
|
|
5
14
|
### 0.5.14
|
|
6
15
|
|
|
7
16
|
- feat(widgets): Add 'getExtent()' method, experimental (#220)
|