@arcgis/core-adapter 4.34.7 → 4.34.9
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 +34 -0
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +34 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -898,6 +898,28 @@ async function newGeometryOperatorsSupportTransformation() {
|
|
|
898
898
|
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
899
899
|
return new ModConstructor();
|
|
900
900
|
}
|
|
901
|
+
async function importGeometrySupportGeographicTransformation() {
|
|
902
|
+
if (isAMD) {
|
|
903
|
+
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
904
|
+
}
|
|
905
|
+
const module2 = await import("@arcgis/core/geometry/support/GeographicTransformation.js");
|
|
906
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
907
|
+
}
|
|
908
|
+
async function newGeometrySupportGeographicTransformation(properties) {
|
|
909
|
+
const ModConstructor = await importGeometrySupportGeographicTransformation();
|
|
910
|
+
return new ModConstructor(properties);
|
|
911
|
+
}
|
|
912
|
+
async function importGeometrySupportGeographicTransformationStep() {
|
|
913
|
+
if (isAMD) {
|
|
914
|
+
return await window.$arcgis.import("esri/geometry/support/GeographicTransformationStep");
|
|
915
|
+
}
|
|
916
|
+
const module2 = await import("@arcgis/core/geometry/support/GeographicTransformationStep.js");
|
|
917
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
918
|
+
}
|
|
919
|
+
async function newGeometrySupportGeographicTransformationStep(properties) {
|
|
920
|
+
const ModConstructor = await importGeometrySupportGeographicTransformationStep();
|
|
921
|
+
return new ModConstructor(properties);
|
|
922
|
+
}
|
|
901
923
|
async function importGeometrySupportMeshComponent() {
|
|
902
924
|
if (isAMD) {
|
|
903
925
|
return await window.$arcgis.import("esri/geometry/support/MeshComponent");
|
|
@@ -9831,6 +9853,13 @@ async function importGeometryGeometryEngineAsync() {
|
|
|
9831
9853
|
const module2 = await import("@arcgis/core/geometry/geometryEngineAsync.js");
|
|
9832
9854
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9833
9855
|
}
|
|
9856
|
+
async function importGeometryProjection() {
|
|
9857
|
+
if (isAMD) {
|
|
9858
|
+
return await window.$arcgis.import("esri/geometry/projection");
|
|
9859
|
+
}
|
|
9860
|
+
const module2 = await import("@arcgis/core/geometry/projection.js");
|
|
9861
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
9862
|
+
}
|
|
9834
9863
|
async function importGeometryOperatorsAffineTransformOperator() {
|
|
9835
9864
|
if (isAMD) {
|
|
9836
9865
|
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
@@ -11437,8 +11466,11 @@ exports.importGeometryOperatorsWithinOperator = importGeometryOperatorsWithinOpe
|
|
|
11437
11466
|
exports.importGeometryPoint = importGeometryPoint;
|
|
11438
11467
|
exports.importGeometryPolygon = importGeometryPolygon;
|
|
11439
11468
|
exports.importGeometryPolyline = importGeometryPolyline;
|
|
11469
|
+
exports.importGeometryProjection = importGeometryProjection;
|
|
11440
11470
|
exports.importGeometrySpatialReference = importGeometrySpatialReference;
|
|
11441
11471
|
exports.importGeometrySupportGeodesicUtils = importGeometrySupportGeodesicUtils;
|
|
11472
|
+
exports.importGeometrySupportGeographicTransformation = importGeometrySupportGeographicTransformation;
|
|
11473
|
+
exports.importGeometrySupportGeographicTransformationStep = importGeometrySupportGeographicTransformationStep;
|
|
11442
11474
|
exports.importGeometrySupportJsonUtils = importGeometrySupportJsonUtils;
|
|
11443
11475
|
exports.importGeometrySupportMeshComponent = importGeometrySupportMeshComponent;
|
|
11444
11476
|
exports.importGeometrySupportMeshGeoreferencedVertexSpace = importGeometrySupportMeshGeoreferencedVertexSpace;
|
|
@@ -12441,6 +12473,8 @@ exports.newGeometryPoint = newGeometryPoint;
|
|
|
12441
12473
|
exports.newGeometryPolygon = newGeometryPolygon;
|
|
12442
12474
|
exports.newGeometryPolyline = newGeometryPolyline;
|
|
12443
12475
|
exports.newGeometrySpatialReference = newGeometrySpatialReference;
|
|
12476
|
+
exports.newGeometrySupportGeographicTransformation = newGeometrySupportGeographicTransformation;
|
|
12477
|
+
exports.newGeometrySupportGeographicTransformationStep = newGeometrySupportGeographicTransformationStep;
|
|
12444
12478
|
exports.newGeometrySupportMeshComponent = newGeometrySupportMeshComponent;
|
|
12445
12479
|
exports.newGeometrySupportMeshGeoreferencedVertexSpace = newGeometrySupportMeshGeoreferencedVertexSpace;
|
|
12446
12480
|
exports.newGeometrySupportMeshLocalVertexSpace = newGeometrySupportMeshLocalVertexSpace;
|
package/dist/index.d.cts
CHANGED
|
@@ -171,6 +171,10 @@ export declare function importGeometryOperatorsSupportGeographicTransformationSt
|
|
|
171
171
|
export declare function newGeometryOperatorsSupportGeographicTransformationStep(properties: __esri.GeographicTransformationStepProperties): Promise<__esri.GeographicTransformationStep>;
|
|
172
172
|
export declare function importGeometryOperatorsSupportTransformation(): Promise<typeof __esri.Transformation>;
|
|
173
173
|
export declare function newGeometryOperatorsSupportTransformation(): Promise<__esri.Transformation>;
|
|
174
|
+
export declare function importGeometrySupportGeographicTransformation(): Promise<typeof __esri.supportGeographicTransformation>;
|
|
175
|
+
export declare function newGeometrySupportGeographicTransformation(properties: any): Promise<__esri.supportGeographicTransformation>;
|
|
176
|
+
export declare function importGeometrySupportGeographicTransformationStep(): Promise<typeof __esri.supportGeographicTransformationStep>;
|
|
177
|
+
export declare function newGeometrySupportGeographicTransformationStep(properties: any): Promise<__esri.supportGeographicTransformationStep>;
|
|
174
178
|
export declare function importGeometrySupportMeshComponent(): Promise<typeof __esri.MeshComponent>;
|
|
175
179
|
export declare function newGeometrySupportMeshComponent(properties: __esri.MeshComponentProperties): Promise<__esri.MeshComponent>;
|
|
176
180
|
export declare function importGeometrySupportMeshGeoreferencedVertexSpace(): Promise<typeof __esri.MeshGeoreferencedVertexSpace>;
|
|
@@ -1790,6 +1794,7 @@ export declare function importGeometry(): Promise<typeof __esri.geometry>;
|
|
|
1790
1794
|
export declare function importGeometryCoordinateFormatter(): Promise<typeof __esri.coordinateFormatter>;
|
|
1791
1795
|
export declare function importGeometryGeometryEngine(): Promise<typeof __esri.geometryEngine>;
|
|
1792
1796
|
export declare function importGeometryGeometryEngineAsync(): Promise<typeof __esri.geometryEngineAsync>;
|
|
1797
|
+
export declare function importGeometryProjection(): Promise<typeof __esri.projection>;
|
|
1793
1798
|
export declare function importGeometryOperatorsAffineTransformOperator(): Promise<typeof __esri.affineTransformOperator>;
|
|
1794
1799
|
export declare function importGeometryOperatorsAlphaShapeOperator(): Promise<typeof __esri.alphaShapeOperator>;
|
|
1795
1800
|
export declare function importGeometryOperatorsAreaOperator(): Promise<typeof __esri.areaOperator>;
|
package/dist/index.d.ts
CHANGED
|
@@ -171,6 +171,10 @@ export declare function importGeometryOperatorsSupportGeographicTransformationSt
|
|
|
171
171
|
export declare function newGeometryOperatorsSupportGeographicTransformationStep(properties: __esri.GeographicTransformationStepProperties): Promise<__esri.GeographicTransformationStep>;
|
|
172
172
|
export declare function importGeometryOperatorsSupportTransformation(): Promise<typeof __esri.Transformation>;
|
|
173
173
|
export declare function newGeometryOperatorsSupportTransformation(): Promise<__esri.Transformation>;
|
|
174
|
+
export declare function importGeometrySupportGeographicTransformation(): Promise<typeof __esri.supportGeographicTransformation>;
|
|
175
|
+
export declare function newGeometrySupportGeographicTransformation(properties: any): Promise<__esri.supportGeographicTransformation>;
|
|
176
|
+
export declare function importGeometrySupportGeographicTransformationStep(): Promise<typeof __esri.supportGeographicTransformationStep>;
|
|
177
|
+
export declare function newGeometrySupportGeographicTransformationStep(properties: any): Promise<__esri.supportGeographicTransformationStep>;
|
|
174
178
|
export declare function importGeometrySupportMeshComponent(): Promise<typeof __esri.MeshComponent>;
|
|
175
179
|
export declare function newGeometrySupportMeshComponent(properties: __esri.MeshComponentProperties): Promise<__esri.MeshComponent>;
|
|
176
180
|
export declare function importGeometrySupportMeshGeoreferencedVertexSpace(): Promise<typeof __esri.MeshGeoreferencedVertexSpace>;
|
|
@@ -1790,6 +1794,7 @@ export declare function importGeometry(): Promise<typeof __esri.geometry>;
|
|
|
1790
1794
|
export declare function importGeometryCoordinateFormatter(): Promise<typeof __esri.coordinateFormatter>;
|
|
1791
1795
|
export declare function importGeometryGeometryEngine(): Promise<typeof __esri.geometryEngine>;
|
|
1792
1796
|
export declare function importGeometryGeometryEngineAsync(): Promise<typeof __esri.geometryEngineAsync>;
|
|
1797
|
+
export declare function importGeometryProjection(): Promise<typeof __esri.projection>;
|
|
1793
1798
|
export declare function importGeometryOperatorsAffineTransformOperator(): Promise<typeof __esri.affineTransformOperator>;
|
|
1794
1799
|
export declare function importGeometryOperatorsAlphaShapeOperator(): Promise<typeof __esri.alphaShapeOperator>;
|
|
1795
1800
|
export declare function importGeometryOperatorsAreaOperator(): Promise<typeof __esri.areaOperator>;
|
package/dist/index.js
CHANGED
|
@@ -874,6 +874,28 @@ async function newGeometryOperatorsSupportTransformation() {
|
|
|
874
874
|
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
875
875
|
return new ModConstructor();
|
|
876
876
|
}
|
|
877
|
+
async function importGeometrySupportGeographicTransformation() {
|
|
878
|
+
if (isAMD) {
|
|
879
|
+
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
880
|
+
}
|
|
881
|
+
const module = await import("@arcgis/core/geometry/support/GeographicTransformation.js");
|
|
882
|
+
return isDefaultModule(module) ? module.default : module;
|
|
883
|
+
}
|
|
884
|
+
async function newGeometrySupportGeographicTransformation(properties) {
|
|
885
|
+
const ModConstructor = await importGeometrySupportGeographicTransformation();
|
|
886
|
+
return new ModConstructor(properties);
|
|
887
|
+
}
|
|
888
|
+
async function importGeometrySupportGeographicTransformationStep() {
|
|
889
|
+
if (isAMD) {
|
|
890
|
+
return await window.$arcgis.import("esri/geometry/support/GeographicTransformationStep");
|
|
891
|
+
}
|
|
892
|
+
const module = await import("@arcgis/core/geometry/support/GeographicTransformationStep.js");
|
|
893
|
+
return isDefaultModule(module) ? module.default : module;
|
|
894
|
+
}
|
|
895
|
+
async function newGeometrySupportGeographicTransformationStep(properties) {
|
|
896
|
+
const ModConstructor = await importGeometrySupportGeographicTransformationStep();
|
|
897
|
+
return new ModConstructor(properties);
|
|
898
|
+
}
|
|
877
899
|
async function importGeometrySupportMeshComponent() {
|
|
878
900
|
if (isAMD) {
|
|
879
901
|
return await window.$arcgis.import("esri/geometry/support/MeshComponent");
|
|
@@ -9807,6 +9829,13 @@ async function importGeometryGeometryEngineAsync() {
|
|
|
9807
9829
|
const module = await import("@arcgis/core/geometry/geometryEngineAsync.js");
|
|
9808
9830
|
return isDefaultModule(module) ? module.default : module;
|
|
9809
9831
|
}
|
|
9832
|
+
async function importGeometryProjection() {
|
|
9833
|
+
if (isAMD) {
|
|
9834
|
+
return await window.$arcgis.import("esri/geometry/projection");
|
|
9835
|
+
}
|
|
9836
|
+
const module = await import("@arcgis/core/geometry/projection.js");
|
|
9837
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9838
|
+
}
|
|
9810
9839
|
async function importGeometryOperatorsAffineTransformOperator() {
|
|
9811
9840
|
if (isAMD) {
|
|
9812
9841
|
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
@@ -11414,8 +11443,11 @@ export {
|
|
|
11414
11443
|
importGeometryPoint,
|
|
11415
11444
|
importGeometryPolygon,
|
|
11416
11445
|
importGeometryPolyline,
|
|
11446
|
+
importGeometryProjection,
|
|
11417
11447
|
importGeometrySpatialReference,
|
|
11418
11448
|
importGeometrySupportGeodesicUtils,
|
|
11449
|
+
importGeometrySupportGeographicTransformation,
|
|
11450
|
+
importGeometrySupportGeographicTransformationStep,
|
|
11419
11451
|
importGeometrySupportJsonUtils,
|
|
11420
11452
|
importGeometrySupportMeshComponent,
|
|
11421
11453
|
importGeometrySupportMeshGeoreferencedVertexSpace,
|
|
@@ -12418,6 +12450,8 @@ export {
|
|
|
12418
12450
|
newGeometryPolygon,
|
|
12419
12451
|
newGeometryPolyline,
|
|
12420
12452
|
newGeometrySpatialReference,
|
|
12453
|
+
newGeometrySupportGeographicTransformation,
|
|
12454
|
+
newGeometrySupportGeographicTransformationStep,
|
|
12421
12455
|
newGeometrySupportMeshComponent,
|
|
12422
12456
|
newGeometrySupportMeshGeoreferencedVertexSpace,
|
|
12423
12457
|
newGeometrySupportMeshLocalVertexSpace,
|