@arcgis/core-adapter 4.33.0-next.67 → 4.33.0-next.68
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/dist/index.cjs +13 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +13 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1294,6 +1294,17 @@ async function newLayersPointCloudFiltersPointCloudBitfieldFilter(properties) {
|
|
|
1294
1294
|
const ModConstructor = await importLayersPointCloudFiltersPointCloudBitfieldFilter();
|
|
1295
1295
|
return new ModConstructor(properties);
|
|
1296
1296
|
}
|
|
1297
|
+
async function importLayersParquetLayer() {
|
|
1298
|
+
if (isAMD) {
|
|
1299
|
+
return await window.$arcgis.import("esri/layers/ParquetLayer");
|
|
1300
|
+
}
|
|
1301
|
+
const module2 = await import("@arcgis/core/layers/ParquetLayer.js");
|
|
1302
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1303
|
+
}
|
|
1304
|
+
async function newLayersParquetLayer(properties) {
|
|
1305
|
+
const ModConstructor = await importLayersParquetLayer();
|
|
1306
|
+
return new ModConstructor(properties);
|
|
1307
|
+
}
|
|
1297
1308
|
async function importLayersPointCloudLayer() {
|
|
1298
1309
|
if (isAMD) {
|
|
1299
1310
|
return await window.$arcgis.import("esri/layers/PointCloudLayer");
|
|
@@ -10608,6 +10619,7 @@ exports.importLayersOpenStreetMapLayer = importLayersOpenStreetMapLayer;
|
|
|
10608
10619
|
exports.importLayersOrientedImageryLayer = importLayersOrientedImageryLayer;
|
|
10609
10620
|
exports.importLayersOrientedImageryTransformationsImageToWorld = importLayersOrientedImageryTransformationsImageToWorld;
|
|
10610
10621
|
exports.importLayersOrientedImageryTransformationsWorldToImage = importLayersOrientedImageryTransformationsWorldToImage;
|
|
10622
|
+
exports.importLayersParquetLayer = importLayersParquetLayer;
|
|
10611
10623
|
exports.importLayersPointCloudFiltersPointCloudBitfieldFilter = importLayersPointCloudFiltersPointCloudBitfieldFilter;
|
|
10612
10624
|
exports.importLayersPointCloudFiltersPointCloudFilter = importLayersPointCloudFiltersPointCloudFilter;
|
|
10613
10625
|
exports.importLayersPointCloudFiltersPointCloudReturnFilter = importLayersPointCloudFiltersPointCloudReturnFilter;
|
|
@@ -11524,6 +11536,7 @@ exports.newLayersMediaLayer = newLayersMediaLayer;
|
|
|
11524
11536
|
exports.newLayersOGCFeatureLayer = newLayersOGCFeatureLayer;
|
|
11525
11537
|
exports.newLayersOpenStreetMapLayer = newLayersOpenStreetMapLayer;
|
|
11526
11538
|
exports.newLayersOrientedImageryLayer = newLayersOrientedImageryLayer;
|
|
11539
|
+
exports.newLayersParquetLayer = newLayersParquetLayer;
|
|
11527
11540
|
exports.newLayersPointCloudFiltersPointCloudBitfieldFilter = newLayersPointCloudFiltersPointCloudBitfieldFilter;
|
|
11528
11541
|
exports.newLayersPointCloudFiltersPointCloudFilter = newLayersPointCloudFiltersPointCloudFilter;
|
|
11529
11542
|
exports.newLayersPointCloudFiltersPointCloudReturnFilter = newLayersPointCloudFiltersPointCloudReturnFilter;
|
package/dist/index.d.cts
CHANGED
|
@@ -243,6 +243,8 @@ export declare function importLayersPointCloudFiltersPointCloudValueFilter(): Pr
|
|
|
243
243
|
export declare function newLayersPointCloudFiltersPointCloudValueFilter(properties: __esri.PointCloudValueFilterProperties): Promise<__esri.PointCloudValueFilter>;
|
|
244
244
|
export declare function importLayersPointCloudFiltersPointCloudBitfieldFilter(): Promise<typeof __esri.PointCloudBitfieldFilter>;
|
|
245
245
|
export declare function newLayersPointCloudFiltersPointCloudBitfieldFilter(properties: __esri.PointCloudBitfieldFilterProperties): Promise<__esri.PointCloudBitfieldFilter>;
|
|
246
|
+
export declare function importLayersParquetLayer(): Promise<typeof __esri.ParquetLayer>;
|
|
247
|
+
export declare function newLayersParquetLayer(properties: __esri.ParquetLayerProperties): Promise<__esri.ParquetLayer>;
|
|
246
248
|
export declare function importLayersPointCloudLayer(): Promise<typeof __esri.PointCloudLayer>;
|
|
247
249
|
export declare function newLayersPointCloudLayer(properties: __esri.PointCloudLayerProperties): Promise<__esri.PointCloudLayer>;
|
|
248
250
|
export declare function importLayersRouteLayer(): Promise<typeof __esri.RouteLayer>;
|
package/dist/index.d.ts
CHANGED
|
@@ -243,6 +243,8 @@ export declare function importLayersPointCloudFiltersPointCloudValueFilter(): Pr
|
|
|
243
243
|
export declare function newLayersPointCloudFiltersPointCloudValueFilter(properties: __esri.PointCloudValueFilterProperties): Promise<__esri.PointCloudValueFilter>;
|
|
244
244
|
export declare function importLayersPointCloudFiltersPointCloudBitfieldFilter(): Promise<typeof __esri.PointCloudBitfieldFilter>;
|
|
245
245
|
export declare function newLayersPointCloudFiltersPointCloudBitfieldFilter(properties: __esri.PointCloudBitfieldFilterProperties): Promise<__esri.PointCloudBitfieldFilter>;
|
|
246
|
+
export declare function importLayersParquetLayer(): Promise<typeof __esri.ParquetLayer>;
|
|
247
|
+
export declare function newLayersParquetLayer(properties: __esri.ParquetLayerProperties): Promise<__esri.ParquetLayer>;
|
|
246
248
|
export declare function importLayersPointCloudLayer(): Promise<typeof __esri.PointCloudLayer>;
|
|
247
249
|
export declare function newLayersPointCloudLayer(properties: __esri.PointCloudLayerProperties): Promise<__esri.PointCloudLayer>;
|
|
248
250
|
export declare function importLayersRouteLayer(): Promise<typeof __esri.RouteLayer>;
|
package/dist/index.js
CHANGED
|
@@ -1270,6 +1270,17 @@ async function newLayersPointCloudFiltersPointCloudBitfieldFilter(properties) {
|
|
|
1270
1270
|
const ModConstructor = await importLayersPointCloudFiltersPointCloudBitfieldFilter();
|
|
1271
1271
|
return new ModConstructor(properties);
|
|
1272
1272
|
}
|
|
1273
|
+
async function importLayersParquetLayer() {
|
|
1274
|
+
if (isAMD) {
|
|
1275
|
+
return await window.$arcgis.import("esri/layers/ParquetLayer");
|
|
1276
|
+
}
|
|
1277
|
+
const module = await import("@arcgis/core/layers/ParquetLayer.js");
|
|
1278
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1279
|
+
}
|
|
1280
|
+
async function newLayersParquetLayer(properties) {
|
|
1281
|
+
const ModConstructor = await importLayersParquetLayer();
|
|
1282
|
+
return new ModConstructor(properties);
|
|
1283
|
+
}
|
|
1273
1284
|
async function importLayersPointCloudLayer() {
|
|
1274
1285
|
if (isAMD) {
|
|
1275
1286
|
return await window.$arcgis.import("esri/layers/PointCloudLayer");
|
|
@@ -10585,6 +10596,7 @@ export {
|
|
|
10585
10596
|
importLayersOrientedImageryLayer,
|
|
10586
10597
|
importLayersOrientedImageryTransformationsImageToWorld,
|
|
10587
10598
|
importLayersOrientedImageryTransformationsWorldToImage,
|
|
10599
|
+
importLayersParquetLayer,
|
|
10588
10600
|
importLayersPointCloudFiltersPointCloudBitfieldFilter,
|
|
10589
10601
|
importLayersPointCloudFiltersPointCloudFilter,
|
|
10590
10602
|
importLayersPointCloudFiltersPointCloudReturnFilter,
|
|
@@ -11501,6 +11513,7 @@ export {
|
|
|
11501
11513
|
newLayersOGCFeatureLayer,
|
|
11502
11514
|
newLayersOpenStreetMapLayer,
|
|
11503
11515
|
newLayersOrientedImageryLayer,
|
|
11516
|
+
newLayersParquetLayer,
|
|
11504
11517
|
newLayersPointCloudFiltersPointCloudBitfieldFilter,
|
|
11505
11518
|
newLayersPointCloudFiltersPointCloudFilter,
|
|
11506
11519
|
newLayersPointCloudFiltersPointCloudReturnFilter,
|