@arcgis/core-adapter 4.34.0-next.50 → 4.34.0-next.52
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 +203 -0
- package/dist/index.d.cts +31 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.js +203 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -876,6 +876,171 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
876
876
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
877
877
|
return new ModConstructor(properties);
|
|
878
878
|
}
|
|
879
|
+
async function importGraphicGraphicOrigin() {
|
|
880
|
+
if (isAMD) {
|
|
881
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
882
|
+
}
|
|
883
|
+
const module2 = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
884
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
885
|
+
}
|
|
886
|
+
async function newGraphicGraphicOrigin() {
|
|
887
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
888
|
+
return new ModConstructor();
|
|
889
|
+
}
|
|
890
|
+
async function importGraphicBuildingGraphicOrigin() {
|
|
891
|
+
if (isAMD) {
|
|
892
|
+
return await window.$arcgis.import("esri/graphic/BuildingGraphicOrigin");
|
|
893
|
+
}
|
|
894
|
+
const module2 = await import("@arcgis/core/graphic/BuildingGraphicOrigin.js");
|
|
895
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
896
|
+
}
|
|
897
|
+
async function newGraphicBuildingGraphicOrigin(sublayer) {
|
|
898
|
+
const ModConstructor = await importGraphicBuildingGraphicOrigin();
|
|
899
|
+
return new ModConstructor(sublayer);
|
|
900
|
+
}
|
|
901
|
+
async function importGraphicCatalogGraphicOrigin() {
|
|
902
|
+
if (isAMD) {
|
|
903
|
+
return await window.$arcgis.import("esri/graphic/CatalogGraphicOrigin");
|
|
904
|
+
}
|
|
905
|
+
const module2 = await import("@arcgis/core/graphic/CatalogGraphicOrigin.js");
|
|
906
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
907
|
+
}
|
|
908
|
+
async function newGraphicCatalogGraphicOrigin(layer) {
|
|
909
|
+
const ModConstructor = await importGraphicCatalogGraphicOrigin();
|
|
910
|
+
return new ModConstructor(layer);
|
|
911
|
+
}
|
|
912
|
+
async function importGraphicCSVGraphicOrigin() {
|
|
913
|
+
if (isAMD) {
|
|
914
|
+
return await window.$arcgis.import("esri/graphic/CSVGraphicOrigin");
|
|
915
|
+
}
|
|
916
|
+
const module2 = await import("@arcgis/core/graphic/CSVGraphicOrigin.js");
|
|
917
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
918
|
+
}
|
|
919
|
+
async function newGraphicCSVGraphicOrigin(layer) {
|
|
920
|
+
const ModConstructor = await importGraphicCSVGraphicOrigin();
|
|
921
|
+
return new ModConstructor(layer);
|
|
922
|
+
}
|
|
923
|
+
async function importGraphicFeatureGraphicOrigin() {
|
|
924
|
+
if (isAMD) {
|
|
925
|
+
return await window.$arcgis.import("esri/graphic/FeatureGraphicOrigin");
|
|
926
|
+
}
|
|
927
|
+
const module2 = await import("@arcgis/core/graphic/FeatureGraphicOrigin.js");
|
|
928
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
929
|
+
}
|
|
930
|
+
async function newGraphicFeatureGraphicOrigin(layer) {
|
|
931
|
+
const ModConstructor = await importGraphicFeatureGraphicOrigin();
|
|
932
|
+
return new ModConstructor(layer);
|
|
933
|
+
}
|
|
934
|
+
async function importGraphicGeoJSONGraphicOrigin() {
|
|
935
|
+
if (isAMD) {
|
|
936
|
+
return await window.$arcgis.import("esri/graphic/GeoJSONGraphicOrigin");
|
|
937
|
+
}
|
|
938
|
+
const module2 = await import("@arcgis/core/graphic/GeoJSONGraphicOrigin.js");
|
|
939
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
940
|
+
}
|
|
941
|
+
async function newGraphicGeoJSONGraphicOrigin(layer) {
|
|
942
|
+
const ModConstructor = await importGraphicGeoJSONGraphicOrigin();
|
|
943
|
+
return new ModConstructor(layer);
|
|
944
|
+
}
|
|
945
|
+
async function importGraphicIntegratedMesh3DTilesGraphicOrigin() {
|
|
946
|
+
if (isAMD) {
|
|
947
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMesh3DTilesGraphicOrigin");
|
|
948
|
+
}
|
|
949
|
+
const module2 = await import("@arcgis/core/graphic/IntegratedMesh3DTilesGraphicOrigin.js");
|
|
950
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
951
|
+
}
|
|
952
|
+
async function newGraphicIntegratedMesh3DTilesGraphicOrigin(layer) {
|
|
953
|
+
const ModConstructor = await importGraphicIntegratedMesh3DTilesGraphicOrigin();
|
|
954
|
+
return new ModConstructor(layer);
|
|
955
|
+
}
|
|
956
|
+
async function importGraphicIntegratedMeshGraphicOrigin() {
|
|
957
|
+
if (isAMD) {
|
|
958
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMeshGraphicOrigin");
|
|
959
|
+
}
|
|
960
|
+
const module2 = await import("@arcgis/core/graphic/IntegratedMeshGraphicOrigin.js");
|
|
961
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
962
|
+
}
|
|
963
|
+
async function newGraphicIntegratedMeshGraphicOrigin(layer) {
|
|
964
|
+
const ModConstructor = await importGraphicIntegratedMeshGraphicOrigin();
|
|
965
|
+
return new ModConstructor(layer);
|
|
966
|
+
}
|
|
967
|
+
async function importGraphicOGCFeatureGraphicOrigin() {
|
|
968
|
+
if (isAMD) {
|
|
969
|
+
return await window.$arcgis.import("esri/graphic/OGCFeatureGraphicOrigin");
|
|
970
|
+
}
|
|
971
|
+
const module2 = await import("@arcgis/core/graphic/OGCFeatureGraphicOrigin.js");
|
|
972
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
973
|
+
}
|
|
974
|
+
async function newGraphicOGCFeatureGraphicOrigin(layer) {
|
|
975
|
+
const ModConstructor = await importGraphicOGCFeatureGraphicOrigin();
|
|
976
|
+
return new ModConstructor(layer);
|
|
977
|
+
}
|
|
978
|
+
async function importGraphicPointCloudGraphicOrigin() {
|
|
979
|
+
if (isAMD) {
|
|
980
|
+
return await window.$arcgis.import("esri/graphic/PointCloudGraphicOrigin");
|
|
981
|
+
}
|
|
982
|
+
const module2 = await import("@arcgis/core/graphic/PointCloudGraphicOrigin.js");
|
|
983
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
984
|
+
}
|
|
985
|
+
async function newGraphicPointCloudGraphicOrigin(layer) {
|
|
986
|
+
const ModConstructor = await importGraphicPointCloudGraphicOrigin();
|
|
987
|
+
return new ModConstructor(layer);
|
|
988
|
+
}
|
|
989
|
+
async function importGraphicSceneGraphicOrigin() {
|
|
990
|
+
if (isAMD) {
|
|
991
|
+
return await window.$arcgis.import("esri/graphic/SceneGraphicOrigin");
|
|
992
|
+
}
|
|
993
|
+
const module2 = await import("@arcgis/core/graphic/SceneGraphicOrigin.js");
|
|
994
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
995
|
+
}
|
|
996
|
+
async function newGraphicSceneGraphicOrigin(layer) {
|
|
997
|
+
const ModConstructor = await importGraphicSceneGraphicOrigin();
|
|
998
|
+
return new ModConstructor(layer);
|
|
999
|
+
}
|
|
1000
|
+
async function importGraphicStreamGraphicOrigin() {
|
|
1001
|
+
if (isAMD) {
|
|
1002
|
+
return await window.$arcgis.import("esri/graphic/StreamGraphicOrigin");
|
|
1003
|
+
}
|
|
1004
|
+
const module2 = await import("@arcgis/core/graphic/StreamGraphicOrigin.js");
|
|
1005
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1006
|
+
}
|
|
1007
|
+
async function newGraphicStreamGraphicOrigin(layer) {
|
|
1008
|
+
const ModConstructor = await importGraphicStreamGraphicOrigin();
|
|
1009
|
+
return new ModConstructor(layer);
|
|
1010
|
+
}
|
|
1011
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
1012
|
+
if (isAMD) {
|
|
1013
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
1014
|
+
}
|
|
1015
|
+
const module2 = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
1016
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1017
|
+
}
|
|
1018
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
1019
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1020
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
1021
|
+
}
|
|
1022
|
+
async function importGraphicVoxelGraphicOrigin() {
|
|
1023
|
+
if (isAMD) {
|
|
1024
|
+
return await window.$arcgis.import("esri/graphic/VoxelGraphicOrigin");
|
|
1025
|
+
}
|
|
1026
|
+
const module2 = await import("@arcgis/core/graphic/VoxelGraphicOrigin.js");
|
|
1027
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1028
|
+
}
|
|
1029
|
+
async function newGraphicVoxelGraphicOrigin(layer) {
|
|
1030
|
+
const ModConstructor = await importGraphicVoxelGraphicOrigin();
|
|
1031
|
+
return new ModConstructor(layer);
|
|
1032
|
+
}
|
|
1033
|
+
async function importGraphicWFSGraphicOrigin() {
|
|
1034
|
+
if (isAMD) {
|
|
1035
|
+
return await window.$arcgis.import("esri/graphic/WFSGraphicOrigin");
|
|
1036
|
+
}
|
|
1037
|
+
const module2 = await import("@arcgis/core/graphic/WFSGraphicOrigin.js");
|
|
1038
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1039
|
+
}
|
|
1040
|
+
async function newGraphicWFSGraphicOrigin(layer) {
|
|
1041
|
+
const ModConstructor = await importGraphicWFSGraphicOrigin();
|
|
1042
|
+
return new ModConstructor(layer);
|
|
1043
|
+
}
|
|
879
1044
|
async function importAttributeBinsGraphic() {
|
|
880
1045
|
if (isAMD) {
|
|
881
1046
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -9984,6 +10149,13 @@ async function importGeometrySupportWebMercatorUtils() {
|
|
|
9984
10149
|
const module2 = await import("@arcgis/core/geometry/support/webMercatorUtils.js");
|
|
9985
10150
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9986
10151
|
}
|
|
10152
|
+
async function importGraphicGraphicOrigins() {
|
|
10153
|
+
if (isAMD) {
|
|
10154
|
+
return await window.$arcgis.import("esri/graphic/graphicOrigins");
|
|
10155
|
+
}
|
|
10156
|
+
const module2 = await import("@arcgis/core/graphic/graphicOrigins.js");
|
|
10157
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10158
|
+
}
|
|
9987
10159
|
async function importIntl() {
|
|
9988
10160
|
if (isAMD) {
|
|
9989
10161
|
return await window.$arcgis.import("esri/intl");
|
|
@@ -11130,6 +11302,22 @@ exports.importGeometrySupportMeshUtils = importGeometrySupportMeshUtils;
|
|
|
11130
11302
|
exports.importGeometrySupportNormalizeUtils = importGeometrySupportNormalizeUtils;
|
|
11131
11303
|
exports.importGeometrySupportWebMercatorUtils = importGeometrySupportWebMercatorUtils;
|
|
11132
11304
|
exports.importGraphic = importGraphic;
|
|
11305
|
+
exports.importGraphicBuildingGraphicOrigin = importGraphicBuildingGraphicOrigin;
|
|
11306
|
+
exports.importGraphicCSVGraphicOrigin = importGraphicCSVGraphicOrigin;
|
|
11307
|
+
exports.importGraphicCatalogGraphicOrigin = importGraphicCatalogGraphicOrigin;
|
|
11308
|
+
exports.importGraphicFeatureGraphicOrigin = importGraphicFeatureGraphicOrigin;
|
|
11309
|
+
exports.importGraphicGeoJSONGraphicOrigin = importGraphicGeoJSONGraphicOrigin;
|
|
11310
|
+
exports.importGraphicGraphicOrigin = importGraphicGraphicOrigin;
|
|
11311
|
+
exports.importGraphicGraphicOrigins = importGraphicGraphicOrigins;
|
|
11312
|
+
exports.importGraphicIntegratedMesh3DTilesGraphicOrigin = importGraphicIntegratedMesh3DTilesGraphicOrigin;
|
|
11313
|
+
exports.importGraphicIntegratedMeshGraphicOrigin = importGraphicIntegratedMeshGraphicOrigin;
|
|
11314
|
+
exports.importGraphicOGCFeatureGraphicOrigin = importGraphicOGCFeatureGraphicOrigin;
|
|
11315
|
+
exports.importGraphicPointCloudGraphicOrigin = importGraphicPointCloudGraphicOrigin;
|
|
11316
|
+
exports.importGraphicSceneGraphicOrigin = importGraphicSceneGraphicOrigin;
|
|
11317
|
+
exports.importGraphicStreamGraphicOrigin = importGraphicStreamGraphicOrigin;
|
|
11318
|
+
exports.importGraphicVectorTileGraphicOrigin = importGraphicVectorTileGraphicOrigin;
|
|
11319
|
+
exports.importGraphicVoxelGraphicOrigin = importGraphicVoxelGraphicOrigin;
|
|
11320
|
+
exports.importGraphicWFSGraphicOrigin = importGraphicWFSGraphicOrigin;
|
|
11133
11321
|
exports.importGround = importGround;
|
|
11134
11322
|
exports.importIdentityCredential = importIdentityCredential;
|
|
11135
11323
|
exports.importIdentityIdentityManager = importIdentityIdentityManager;
|
|
@@ -12100,6 +12288,21 @@ exports.newGeometrySupportMeshTexture = newGeometrySupportMeshTexture;
|
|
|
12100
12288
|
exports.newGeometrySupportMeshTextureTransform = newGeometrySupportMeshTextureTransform;
|
|
12101
12289
|
exports.newGeometrySupportMeshTransform = newGeometrySupportMeshTransform;
|
|
12102
12290
|
exports.newGraphic = newGraphic;
|
|
12291
|
+
exports.newGraphicBuildingGraphicOrigin = newGraphicBuildingGraphicOrigin;
|
|
12292
|
+
exports.newGraphicCSVGraphicOrigin = newGraphicCSVGraphicOrigin;
|
|
12293
|
+
exports.newGraphicCatalogGraphicOrigin = newGraphicCatalogGraphicOrigin;
|
|
12294
|
+
exports.newGraphicFeatureGraphicOrigin = newGraphicFeatureGraphicOrigin;
|
|
12295
|
+
exports.newGraphicGeoJSONGraphicOrigin = newGraphicGeoJSONGraphicOrigin;
|
|
12296
|
+
exports.newGraphicGraphicOrigin = newGraphicGraphicOrigin;
|
|
12297
|
+
exports.newGraphicIntegratedMesh3DTilesGraphicOrigin = newGraphicIntegratedMesh3DTilesGraphicOrigin;
|
|
12298
|
+
exports.newGraphicIntegratedMeshGraphicOrigin = newGraphicIntegratedMeshGraphicOrigin;
|
|
12299
|
+
exports.newGraphicOGCFeatureGraphicOrigin = newGraphicOGCFeatureGraphicOrigin;
|
|
12300
|
+
exports.newGraphicPointCloudGraphicOrigin = newGraphicPointCloudGraphicOrigin;
|
|
12301
|
+
exports.newGraphicSceneGraphicOrigin = newGraphicSceneGraphicOrigin;
|
|
12302
|
+
exports.newGraphicStreamGraphicOrigin = newGraphicStreamGraphicOrigin;
|
|
12303
|
+
exports.newGraphicVectorTileGraphicOrigin = newGraphicVectorTileGraphicOrigin;
|
|
12304
|
+
exports.newGraphicVoxelGraphicOrigin = newGraphicVoxelGraphicOrigin;
|
|
12305
|
+
exports.newGraphicWFSGraphicOrigin = newGraphicWFSGraphicOrigin;
|
|
12103
12306
|
exports.newGround = newGround;
|
|
12104
12307
|
exports.newIdentityCredential = newIdentityCredential;
|
|
12105
12308
|
exports.newIdentityOAuthInfo = newIdentityOAuthInfo;
|
package/dist/index.d.cts
CHANGED
|
@@ -167,6 +167,36 @@ export declare function importGeometrySupportMeshTextureTransform(): Promise<typ
|
|
|
167
167
|
export declare function newGeometrySupportMeshTextureTransform(properties: __esri.MeshTextureTransformProperties): Promise<__esri.MeshTextureTransform>;
|
|
168
168
|
export declare function importGeometrySupportMeshTransform(): Promise<typeof __esri.MeshTransform>;
|
|
169
169
|
export declare function newGeometrySupportMeshTransform(properties: __esri.MeshTransformProperties): Promise<__esri.MeshTransform>;
|
|
170
|
+
export declare function importGraphicGraphicOrigin(): Promise<typeof __esri.GraphicOrigin>;
|
|
171
|
+
export declare function newGraphicGraphicOrigin(): Promise<__esri.GraphicOrigin>;
|
|
172
|
+
export declare function importGraphicBuildingGraphicOrigin(): Promise<typeof __esri.BuildingGraphicOrigin>;
|
|
173
|
+
export declare function newGraphicBuildingGraphicOrigin(sublayer: __esri.BuildingComponentSublayer): Promise<__esri.BuildingGraphicOrigin>;
|
|
174
|
+
export declare function importGraphicCatalogGraphicOrigin(): Promise<typeof __esri.CatalogGraphicOrigin>;
|
|
175
|
+
export declare function newGraphicCatalogGraphicOrigin(layer: __esri.CatalogFootprintLayer): Promise<__esri.CatalogGraphicOrigin>;
|
|
176
|
+
export declare function importGraphicCSVGraphicOrigin(): Promise<typeof __esri.CSVGraphicOrigin>;
|
|
177
|
+
export declare function newGraphicCSVGraphicOrigin(layer: __esri.CSVLayer): Promise<__esri.CSVGraphicOrigin>;
|
|
178
|
+
export declare function importGraphicFeatureGraphicOrigin(): Promise<typeof __esri.FeatureGraphicOrigin>;
|
|
179
|
+
export declare function newGraphicFeatureGraphicOrigin(layer: __esri.FeatureLayer): Promise<__esri.FeatureGraphicOrigin>;
|
|
180
|
+
export declare function importGraphicGeoJSONGraphicOrigin(): Promise<typeof __esri.GeoJSONGraphicOrigin>;
|
|
181
|
+
export declare function newGraphicGeoJSONGraphicOrigin(layer: __esri.GeoJSONLayer): Promise<__esri.GeoJSONGraphicOrigin>;
|
|
182
|
+
export declare function importGraphicIntegratedMesh3DTilesGraphicOrigin(): Promise<typeof __esri.IntegratedMesh3DTilesGraphicOrigin>;
|
|
183
|
+
export declare function newGraphicIntegratedMesh3DTilesGraphicOrigin(layer: __esri.IntegratedMesh3DTilesLayer): Promise<__esri.IntegratedMesh3DTilesGraphicOrigin>;
|
|
184
|
+
export declare function importGraphicIntegratedMeshGraphicOrigin(): Promise<typeof __esri.IntegratedMeshGraphicOrigin>;
|
|
185
|
+
export declare function newGraphicIntegratedMeshGraphicOrigin(layer: __esri.IntegratedMeshLayer): Promise<__esri.IntegratedMeshGraphicOrigin>;
|
|
186
|
+
export declare function importGraphicOGCFeatureGraphicOrigin(): Promise<typeof __esri.OGCFeatureGraphicOrigin>;
|
|
187
|
+
export declare function newGraphicOGCFeatureGraphicOrigin(layer: __esri.OGCFeatureLayer): Promise<__esri.OGCFeatureGraphicOrigin>;
|
|
188
|
+
export declare function importGraphicPointCloudGraphicOrigin(): Promise<typeof __esri.PointCloudGraphicOrigin>;
|
|
189
|
+
export declare function newGraphicPointCloudGraphicOrigin(layer: __esri.PointCloudLayer): Promise<__esri.PointCloudGraphicOrigin>;
|
|
190
|
+
export declare function importGraphicSceneGraphicOrigin(): Promise<typeof __esri.SceneGraphicOrigin>;
|
|
191
|
+
export declare function newGraphicSceneGraphicOrigin(layer: __esri.SceneLayer): Promise<__esri.SceneGraphicOrigin>;
|
|
192
|
+
export declare function importGraphicStreamGraphicOrigin(): Promise<typeof __esri.StreamGraphicOrigin>;
|
|
193
|
+
export declare function newGraphicStreamGraphicOrigin(layer: __esri.StreamLayer): Promise<__esri.StreamGraphicOrigin>;
|
|
194
|
+
export declare function importGraphicVectorTileGraphicOrigin(): Promise<typeof __esri.VectorTileGraphicOrigin>;
|
|
195
|
+
export declare function newGraphicVectorTileGraphicOrigin(layer: __esri.VectorTileLayer, layerId: string, layerIndex: number): Promise<__esri.VectorTileGraphicOrigin>;
|
|
196
|
+
export declare function importGraphicVoxelGraphicOrigin(): Promise<typeof __esri.VoxelGraphicOrigin>;
|
|
197
|
+
export declare function newGraphicVoxelGraphicOrigin(layer: __esri.VoxelLayer): Promise<__esri.VoxelGraphicOrigin>;
|
|
198
|
+
export declare function importGraphicWFSGraphicOrigin(): Promise<typeof __esri.WFSGraphicOrigin>;
|
|
199
|
+
export declare function newGraphicWFSGraphicOrigin(layer: __esri.WFSLayer): Promise<__esri.WFSGraphicOrigin>;
|
|
170
200
|
export declare function importAttributeBinsGraphic(): Promise<typeof __esri.AttributeBinsGraphic>;
|
|
171
201
|
export declare function newAttributeBinsGraphic(properties: __esri.AttributeBinsGraphicProperties): Promise<__esri.AttributeBinsGraphic>;
|
|
172
202
|
export declare function importGraphic(): Promise<typeof __esri.Graphic>;
|
|
@@ -1802,6 +1832,7 @@ export declare function importGeometrySupportJsonUtils(): Promise<typeof __esri.
|
|
|
1802
1832
|
export declare function importGeometrySupportMeshUtils(): Promise<typeof __esri.meshUtils>;
|
|
1803
1833
|
export declare function importGeometrySupportNormalizeUtils(): Promise<typeof __esri.normalizeUtils>;
|
|
1804
1834
|
export declare function importGeometrySupportWebMercatorUtils(): Promise<typeof __esri.webMercatorUtils>;
|
|
1835
|
+
export declare function importGraphicGraphicOrigins(): Promise<typeof __esri.graphicOrigins>;
|
|
1805
1836
|
export declare function importIntl(): Promise<typeof __esri.intl>;
|
|
1806
1837
|
export declare function importKernel(): Promise<typeof __esri.kernel>;
|
|
1807
1838
|
export declare function importLayersCatalogCatalogUtils(): Promise<typeof __esri.catalogUtils>;
|
package/dist/index.d.ts
CHANGED
|
@@ -167,6 +167,36 @@ export declare function importGeometrySupportMeshTextureTransform(): Promise<typ
|
|
|
167
167
|
export declare function newGeometrySupportMeshTextureTransform(properties: __esri.MeshTextureTransformProperties): Promise<__esri.MeshTextureTransform>;
|
|
168
168
|
export declare function importGeometrySupportMeshTransform(): Promise<typeof __esri.MeshTransform>;
|
|
169
169
|
export declare function newGeometrySupportMeshTransform(properties: __esri.MeshTransformProperties): Promise<__esri.MeshTransform>;
|
|
170
|
+
export declare function importGraphicGraphicOrigin(): Promise<typeof __esri.GraphicOrigin>;
|
|
171
|
+
export declare function newGraphicGraphicOrigin(): Promise<__esri.GraphicOrigin>;
|
|
172
|
+
export declare function importGraphicBuildingGraphicOrigin(): Promise<typeof __esri.BuildingGraphicOrigin>;
|
|
173
|
+
export declare function newGraphicBuildingGraphicOrigin(sublayer: __esri.BuildingComponentSublayer): Promise<__esri.BuildingGraphicOrigin>;
|
|
174
|
+
export declare function importGraphicCatalogGraphicOrigin(): Promise<typeof __esri.CatalogGraphicOrigin>;
|
|
175
|
+
export declare function newGraphicCatalogGraphicOrigin(layer: __esri.CatalogFootprintLayer): Promise<__esri.CatalogGraphicOrigin>;
|
|
176
|
+
export declare function importGraphicCSVGraphicOrigin(): Promise<typeof __esri.CSVGraphicOrigin>;
|
|
177
|
+
export declare function newGraphicCSVGraphicOrigin(layer: __esri.CSVLayer): Promise<__esri.CSVGraphicOrigin>;
|
|
178
|
+
export declare function importGraphicFeatureGraphicOrigin(): Promise<typeof __esri.FeatureGraphicOrigin>;
|
|
179
|
+
export declare function newGraphicFeatureGraphicOrigin(layer: __esri.FeatureLayer): Promise<__esri.FeatureGraphicOrigin>;
|
|
180
|
+
export declare function importGraphicGeoJSONGraphicOrigin(): Promise<typeof __esri.GeoJSONGraphicOrigin>;
|
|
181
|
+
export declare function newGraphicGeoJSONGraphicOrigin(layer: __esri.GeoJSONLayer): Promise<__esri.GeoJSONGraphicOrigin>;
|
|
182
|
+
export declare function importGraphicIntegratedMesh3DTilesGraphicOrigin(): Promise<typeof __esri.IntegratedMesh3DTilesGraphicOrigin>;
|
|
183
|
+
export declare function newGraphicIntegratedMesh3DTilesGraphicOrigin(layer: __esri.IntegratedMesh3DTilesLayer): Promise<__esri.IntegratedMesh3DTilesGraphicOrigin>;
|
|
184
|
+
export declare function importGraphicIntegratedMeshGraphicOrigin(): Promise<typeof __esri.IntegratedMeshGraphicOrigin>;
|
|
185
|
+
export declare function newGraphicIntegratedMeshGraphicOrigin(layer: __esri.IntegratedMeshLayer): Promise<__esri.IntegratedMeshGraphicOrigin>;
|
|
186
|
+
export declare function importGraphicOGCFeatureGraphicOrigin(): Promise<typeof __esri.OGCFeatureGraphicOrigin>;
|
|
187
|
+
export declare function newGraphicOGCFeatureGraphicOrigin(layer: __esri.OGCFeatureLayer): Promise<__esri.OGCFeatureGraphicOrigin>;
|
|
188
|
+
export declare function importGraphicPointCloudGraphicOrigin(): Promise<typeof __esri.PointCloudGraphicOrigin>;
|
|
189
|
+
export declare function newGraphicPointCloudGraphicOrigin(layer: __esri.PointCloudLayer): Promise<__esri.PointCloudGraphicOrigin>;
|
|
190
|
+
export declare function importGraphicSceneGraphicOrigin(): Promise<typeof __esri.SceneGraphicOrigin>;
|
|
191
|
+
export declare function newGraphicSceneGraphicOrigin(layer: __esri.SceneLayer): Promise<__esri.SceneGraphicOrigin>;
|
|
192
|
+
export declare function importGraphicStreamGraphicOrigin(): Promise<typeof __esri.StreamGraphicOrigin>;
|
|
193
|
+
export declare function newGraphicStreamGraphicOrigin(layer: __esri.StreamLayer): Promise<__esri.StreamGraphicOrigin>;
|
|
194
|
+
export declare function importGraphicVectorTileGraphicOrigin(): Promise<typeof __esri.VectorTileGraphicOrigin>;
|
|
195
|
+
export declare function newGraphicVectorTileGraphicOrigin(layer: __esri.VectorTileLayer, layerId: string, layerIndex: number): Promise<__esri.VectorTileGraphicOrigin>;
|
|
196
|
+
export declare function importGraphicVoxelGraphicOrigin(): Promise<typeof __esri.VoxelGraphicOrigin>;
|
|
197
|
+
export declare function newGraphicVoxelGraphicOrigin(layer: __esri.VoxelLayer): Promise<__esri.VoxelGraphicOrigin>;
|
|
198
|
+
export declare function importGraphicWFSGraphicOrigin(): Promise<typeof __esri.WFSGraphicOrigin>;
|
|
199
|
+
export declare function newGraphicWFSGraphicOrigin(layer: __esri.WFSLayer): Promise<__esri.WFSGraphicOrigin>;
|
|
170
200
|
export declare function importAttributeBinsGraphic(): Promise<typeof __esri.AttributeBinsGraphic>;
|
|
171
201
|
export declare function newAttributeBinsGraphic(properties: __esri.AttributeBinsGraphicProperties): Promise<__esri.AttributeBinsGraphic>;
|
|
172
202
|
export declare function importGraphic(): Promise<typeof __esri.Graphic>;
|
|
@@ -1802,6 +1832,7 @@ export declare function importGeometrySupportJsonUtils(): Promise<typeof __esri.
|
|
|
1802
1832
|
export declare function importGeometrySupportMeshUtils(): Promise<typeof __esri.meshUtils>;
|
|
1803
1833
|
export declare function importGeometrySupportNormalizeUtils(): Promise<typeof __esri.normalizeUtils>;
|
|
1804
1834
|
export declare function importGeometrySupportWebMercatorUtils(): Promise<typeof __esri.webMercatorUtils>;
|
|
1835
|
+
export declare function importGraphicGraphicOrigins(): Promise<typeof __esri.graphicOrigins>;
|
|
1805
1836
|
export declare function importIntl(): Promise<typeof __esri.intl>;
|
|
1806
1837
|
export declare function importKernel(): Promise<typeof __esri.kernel>;
|
|
1807
1838
|
export declare function importLayersCatalogCatalogUtils(): Promise<typeof __esri.catalogUtils>;
|
package/dist/index.js
CHANGED
|
@@ -852,6 +852,171 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
852
852
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
853
853
|
return new ModConstructor(properties);
|
|
854
854
|
}
|
|
855
|
+
async function importGraphicGraphicOrigin() {
|
|
856
|
+
if (isAMD) {
|
|
857
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
858
|
+
}
|
|
859
|
+
const module = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
860
|
+
return isDefaultModule(module) ? module.default : module;
|
|
861
|
+
}
|
|
862
|
+
async function newGraphicGraphicOrigin() {
|
|
863
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
864
|
+
return new ModConstructor();
|
|
865
|
+
}
|
|
866
|
+
async function importGraphicBuildingGraphicOrigin() {
|
|
867
|
+
if (isAMD) {
|
|
868
|
+
return await window.$arcgis.import("esri/graphic/BuildingGraphicOrigin");
|
|
869
|
+
}
|
|
870
|
+
const module = await import("@arcgis/core/graphic/BuildingGraphicOrigin.js");
|
|
871
|
+
return isDefaultModule(module) ? module.default : module;
|
|
872
|
+
}
|
|
873
|
+
async function newGraphicBuildingGraphicOrigin(sublayer) {
|
|
874
|
+
const ModConstructor = await importGraphicBuildingGraphicOrigin();
|
|
875
|
+
return new ModConstructor(sublayer);
|
|
876
|
+
}
|
|
877
|
+
async function importGraphicCatalogGraphicOrigin() {
|
|
878
|
+
if (isAMD) {
|
|
879
|
+
return await window.$arcgis.import("esri/graphic/CatalogGraphicOrigin");
|
|
880
|
+
}
|
|
881
|
+
const module = await import("@arcgis/core/graphic/CatalogGraphicOrigin.js");
|
|
882
|
+
return isDefaultModule(module) ? module.default : module;
|
|
883
|
+
}
|
|
884
|
+
async function newGraphicCatalogGraphicOrigin(layer) {
|
|
885
|
+
const ModConstructor = await importGraphicCatalogGraphicOrigin();
|
|
886
|
+
return new ModConstructor(layer);
|
|
887
|
+
}
|
|
888
|
+
async function importGraphicCSVGraphicOrigin() {
|
|
889
|
+
if (isAMD) {
|
|
890
|
+
return await window.$arcgis.import("esri/graphic/CSVGraphicOrigin");
|
|
891
|
+
}
|
|
892
|
+
const module = await import("@arcgis/core/graphic/CSVGraphicOrigin.js");
|
|
893
|
+
return isDefaultModule(module) ? module.default : module;
|
|
894
|
+
}
|
|
895
|
+
async function newGraphicCSVGraphicOrigin(layer) {
|
|
896
|
+
const ModConstructor = await importGraphicCSVGraphicOrigin();
|
|
897
|
+
return new ModConstructor(layer);
|
|
898
|
+
}
|
|
899
|
+
async function importGraphicFeatureGraphicOrigin() {
|
|
900
|
+
if (isAMD) {
|
|
901
|
+
return await window.$arcgis.import("esri/graphic/FeatureGraphicOrigin");
|
|
902
|
+
}
|
|
903
|
+
const module = await import("@arcgis/core/graphic/FeatureGraphicOrigin.js");
|
|
904
|
+
return isDefaultModule(module) ? module.default : module;
|
|
905
|
+
}
|
|
906
|
+
async function newGraphicFeatureGraphicOrigin(layer) {
|
|
907
|
+
const ModConstructor = await importGraphicFeatureGraphicOrigin();
|
|
908
|
+
return new ModConstructor(layer);
|
|
909
|
+
}
|
|
910
|
+
async function importGraphicGeoJSONGraphicOrigin() {
|
|
911
|
+
if (isAMD) {
|
|
912
|
+
return await window.$arcgis.import("esri/graphic/GeoJSONGraphicOrigin");
|
|
913
|
+
}
|
|
914
|
+
const module = await import("@arcgis/core/graphic/GeoJSONGraphicOrigin.js");
|
|
915
|
+
return isDefaultModule(module) ? module.default : module;
|
|
916
|
+
}
|
|
917
|
+
async function newGraphicGeoJSONGraphicOrigin(layer) {
|
|
918
|
+
const ModConstructor = await importGraphicGeoJSONGraphicOrigin();
|
|
919
|
+
return new ModConstructor(layer);
|
|
920
|
+
}
|
|
921
|
+
async function importGraphicIntegratedMesh3DTilesGraphicOrigin() {
|
|
922
|
+
if (isAMD) {
|
|
923
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMesh3DTilesGraphicOrigin");
|
|
924
|
+
}
|
|
925
|
+
const module = await import("@arcgis/core/graphic/IntegratedMesh3DTilesGraphicOrigin.js");
|
|
926
|
+
return isDefaultModule(module) ? module.default : module;
|
|
927
|
+
}
|
|
928
|
+
async function newGraphicIntegratedMesh3DTilesGraphicOrigin(layer) {
|
|
929
|
+
const ModConstructor = await importGraphicIntegratedMesh3DTilesGraphicOrigin();
|
|
930
|
+
return new ModConstructor(layer);
|
|
931
|
+
}
|
|
932
|
+
async function importGraphicIntegratedMeshGraphicOrigin() {
|
|
933
|
+
if (isAMD) {
|
|
934
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMeshGraphicOrigin");
|
|
935
|
+
}
|
|
936
|
+
const module = await import("@arcgis/core/graphic/IntegratedMeshGraphicOrigin.js");
|
|
937
|
+
return isDefaultModule(module) ? module.default : module;
|
|
938
|
+
}
|
|
939
|
+
async function newGraphicIntegratedMeshGraphicOrigin(layer) {
|
|
940
|
+
const ModConstructor = await importGraphicIntegratedMeshGraphicOrigin();
|
|
941
|
+
return new ModConstructor(layer);
|
|
942
|
+
}
|
|
943
|
+
async function importGraphicOGCFeatureGraphicOrigin() {
|
|
944
|
+
if (isAMD) {
|
|
945
|
+
return await window.$arcgis.import("esri/graphic/OGCFeatureGraphicOrigin");
|
|
946
|
+
}
|
|
947
|
+
const module = await import("@arcgis/core/graphic/OGCFeatureGraphicOrigin.js");
|
|
948
|
+
return isDefaultModule(module) ? module.default : module;
|
|
949
|
+
}
|
|
950
|
+
async function newGraphicOGCFeatureGraphicOrigin(layer) {
|
|
951
|
+
const ModConstructor = await importGraphicOGCFeatureGraphicOrigin();
|
|
952
|
+
return new ModConstructor(layer);
|
|
953
|
+
}
|
|
954
|
+
async function importGraphicPointCloudGraphicOrigin() {
|
|
955
|
+
if (isAMD) {
|
|
956
|
+
return await window.$arcgis.import("esri/graphic/PointCloudGraphicOrigin");
|
|
957
|
+
}
|
|
958
|
+
const module = await import("@arcgis/core/graphic/PointCloudGraphicOrigin.js");
|
|
959
|
+
return isDefaultModule(module) ? module.default : module;
|
|
960
|
+
}
|
|
961
|
+
async function newGraphicPointCloudGraphicOrigin(layer) {
|
|
962
|
+
const ModConstructor = await importGraphicPointCloudGraphicOrigin();
|
|
963
|
+
return new ModConstructor(layer);
|
|
964
|
+
}
|
|
965
|
+
async function importGraphicSceneGraphicOrigin() {
|
|
966
|
+
if (isAMD) {
|
|
967
|
+
return await window.$arcgis.import("esri/graphic/SceneGraphicOrigin");
|
|
968
|
+
}
|
|
969
|
+
const module = await import("@arcgis/core/graphic/SceneGraphicOrigin.js");
|
|
970
|
+
return isDefaultModule(module) ? module.default : module;
|
|
971
|
+
}
|
|
972
|
+
async function newGraphicSceneGraphicOrigin(layer) {
|
|
973
|
+
const ModConstructor = await importGraphicSceneGraphicOrigin();
|
|
974
|
+
return new ModConstructor(layer);
|
|
975
|
+
}
|
|
976
|
+
async function importGraphicStreamGraphicOrigin() {
|
|
977
|
+
if (isAMD) {
|
|
978
|
+
return await window.$arcgis.import("esri/graphic/StreamGraphicOrigin");
|
|
979
|
+
}
|
|
980
|
+
const module = await import("@arcgis/core/graphic/StreamGraphicOrigin.js");
|
|
981
|
+
return isDefaultModule(module) ? module.default : module;
|
|
982
|
+
}
|
|
983
|
+
async function newGraphicStreamGraphicOrigin(layer) {
|
|
984
|
+
const ModConstructor = await importGraphicStreamGraphicOrigin();
|
|
985
|
+
return new ModConstructor(layer);
|
|
986
|
+
}
|
|
987
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
988
|
+
if (isAMD) {
|
|
989
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
990
|
+
}
|
|
991
|
+
const module = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
992
|
+
return isDefaultModule(module) ? module.default : module;
|
|
993
|
+
}
|
|
994
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
995
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
996
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
997
|
+
}
|
|
998
|
+
async function importGraphicVoxelGraphicOrigin() {
|
|
999
|
+
if (isAMD) {
|
|
1000
|
+
return await window.$arcgis.import("esri/graphic/VoxelGraphicOrigin");
|
|
1001
|
+
}
|
|
1002
|
+
const module = await import("@arcgis/core/graphic/VoxelGraphicOrigin.js");
|
|
1003
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1004
|
+
}
|
|
1005
|
+
async function newGraphicVoxelGraphicOrigin(layer) {
|
|
1006
|
+
const ModConstructor = await importGraphicVoxelGraphicOrigin();
|
|
1007
|
+
return new ModConstructor(layer);
|
|
1008
|
+
}
|
|
1009
|
+
async function importGraphicWFSGraphicOrigin() {
|
|
1010
|
+
if (isAMD) {
|
|
1011
|
+
return await window.$arcgis.import("esri/graphic/WFSGraphicOrigin");
|
|
1012
|
+
}
|
|
1013
|
+
const module = await import("@arcgis/core/graphic/WFSGraphicOrigin.js");
|
|
1014
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1015
|
+
}
|
|
1016
|
+
async function newGraphicWFSGraphicOrigin(layer) {
|
|
1017
|
+
const ModConstructor = await importGraphicWFSGraphicOrigin();
|
|
1018
|
+
return new ModConstructor(layer);
|
|
1019
|
+
}
|
|
855
1020
|
async function importAttributeBinsGraphic() {
|
|
856
1021
|
if (isAMD) {
|
|
857
1022
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -9960,6 +10125,13 @@ async function importGeometrySupportWebMercatorUtils() {
|
|
|
9960
10125
|
const module = await import("@arcgis/core/geometry/support/webMercatorUtils.js");
|
|
9961
10126
|
return isDefaultModule(module) ? module.default : module;
|
|
9962
10127
|
}
|
|
10128
|
+
async function importGraphicGraphicOrigins() {
|
|
10129
|
+
if (isAMD) {
|
|
10130
|
+
return await window.$arcgis.import("esri/graphic/graphicOrigins");
|
|
10131
|
+
}
|
|
10132
|
+
const module = await import("@arcgis/core/graphic/graphicOrigins.js");
|
|
10133
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10134
|
+
}
|
|
9963
10135
|
async function importIntl() {
|
|
9964
10136
|
if (isAMD) {
|
|
9965
10137
|
return await window.$arcgis.import("esri/intl");
|
|
@@ -11107,6 +11279,22 @@ export {
|
|
|
11107
11279
|
importGeometrySupportNormalizeUtils,
|
|
11108
11280
|
importGeometrySupportWebMercatorUtils,
|
|
11109
11281
|
importGraphic,
|
|
11282
|
+
importGraphicBuildingGraphicOrigin,
|
|
11283
|
+
importGraphicCSVGraphicOrigin,
|
|
11284
|
+
importGraphicCatalogGraphicOrigin,
|
|
11285
|
+
importGraphicFeatureGraphicOrigin,
|
|
11286
|
+
importGraphicGeoJSONGraphicOrigin,
|
|
11287
|
+
importGraphicGraphicOrigin,
|
|
11288
|
+
importGraphicGraphicOrigins,
|
|
11289
|
+
importGraphicIntegratedMesh3DTilesGraphicOrigin,
|
|
11290
|
+
importGraphicIntegratedMeshGraphicOrigin,
|
|
11291
|
+
importGraphicOGCFeatureGraphicOrigin,
|
|
11292
|
+
importGraphicPointCloudGraphicOrigin,
|
|
11293
|
+
importGraphicSceneGraphicOrigin,
|
|
11294
|
+
importGraphicStreamGraphicOrigin,
|
|
11295
|
+
importGraphicVectorTileGraphicOrigin,
|
|
11296
|
+
importGraphicVoxelGraphicOrigin,
|
|
11297
|
+
importGraphicWFSGraphicOrigin,
|
|
11110
11298
|
importGround,
|
|
11111
11299
|
importIdentityCredential,
|
|
11112
11300
|
importIdentityIdentityManager,
|
|
@@ -12077,6 +12265,21 @@ export {
|
|
|
12077
12265
|
newGeometrySupportMeshTextureTransform,
|
|
12078
12266
|
newGeometrySupportMeshTransform,
|
|
12079
12267
|
newGraphic,
|
|
12268
|
+
newGraphicBuildingGraphicOrigin,
|
|
12269
|
+
newGraphicCSVGraphicOrigin,
|
|
12270
|
+
newGraphicCatalogGraphicOrigin,
|
|
12271
|
+
newGraphicFeatureGraphicOrigin,
|
|
12272
|
+
newGraphicGeoJSONGraphicOrigin,
|
|
12273
|
+
newGraphicGraphicOrigin,
|
|
12274
|
+
newGraphicIntegratedMesh3DTilesGraphicOrigin,
|
|
12275
|
+
newGraphicIntegratedMeshGraphicOrigin,
|
|
12276
|
+
newGraphicOGCFeatureGraphicOrigin,
|
|
12277
|
+
newGraphicPointCloudGraphicOrigin,
|
|
12278
|
+
newGraphicSceneGraphicOrigin,
|
|
12279
|
+
newGraphicStreamGraphicOrigin,
|
|
12280
|
+
newGraphicVectorTileGraphicOrigin,
|
|
12281
|
+
newGraphicVoxelGraphicOrigin,
|
|
12282
|
+
newGraphicWFSGraphicOrigin,
|
|
12080
12283
|
newGround,
|
|
12081
12284
|
newIdentityCredential,
|
|
12082
12285
|
newIdentityOAuthInfo,
|