@arcgis/core-adapter 4.34.0-next.113 → 4.34.0-next.115
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 +0 -268
- package/dist/index.d.cts +0 -41
- package/dist/index.d.ts +0 -41
- package/dist/index.js +0 -268
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -997,193 +997,6 @@ async function newGraphicGraphicOrigin() {
|
|
|
997
997
|
const ModConstructor = await importGraphicGraphicOrigin();
|
|
998
998
|
return new ModConstructor();
|
|
999
999
|
}
|
|
1000
|
-
async function importGraphicBuildingGraphicOrigin() {
|
|
1001
|
-
if (isAMD) {
|
|
1002
|
-
return await window.$arcgis.import("esri/graphic/BuildingGraphicOrigin");
|
|
1003
|
-
}
|
|
1004
|
-
const module2 = await import("@arcgis/core/graphic/BuildingGraphicOrigin.js");
|
|
1005
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1006
|
-
}
|
|
1007
|
-
async function newGraphicBuildingGraphicOrigin(sublayer) {
|
|
1008
|
-
const ModConstructor = await importGraphicBuildingGraphicOrigin();
|
|
1009
|
-
return new ModConstructor(sublayer);
|
|
1010
|
-
}
|
|
1011
|
-
async function importGraphicCatalogGraphicOrigin() {
|
|
1012
|
-
if (isAMD) {
|
|
1013
|
-
return await window.$arcgis.import("esri/graphic/CatalogGraphicOrigin");
|
|
1014
|
-
}
|
|
1015
|
-
const module2 = await import("@arcgis/core/graphic/CatalogGraphicOrigin.js");
|
|
1016
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1017
|
-
}
|
|
1018
|
-
async function newGraphicCatalogGraphicOrigin(layer) {
|
|
1019
|
-
const ModConstructor = await importGraphicCatalogGraphicOrigin();
|
|
1020
|
-
return new ModConstructor(layer);
|
|
1021
|
-
}
|
|
1022
|
-
async function importGraphicCSVGraphicOrigin() {
|
|
1023
|
-
if (isAMD) {
|
|
1024
|
-
return await window.$arcgis.import("esri/graphic/CSVGraphicOrigin");
|
|
1025
|
-
}
|
|
1026
|
-
const module2 = await import("@arcgis/core/graphic/CSVGraphicOrigin.js");
|
|
1027
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1028
|
-
}
|
|
1029
|
-
async function newGraphicCSVGraphicOrigin(layer) {
|
|
1030
|
-
const ModConstructor = await importGraphicCSVGraphicOrigin();
|
|
1031
|
-
return new ModConstructor(layer);
|
|
1032
|
-
}
|
|
1033
|
-
async function importGraphicFeatureGraphicOrigin() {
|
|
1034
|
-
if (isAMD) {
|
|
1035
|
-
return await window.$arcgis.import("esri/graphic/FeatureGraphicOrigin");
|
|
1036
|
-
}
|
|
1037
|
-
const module2 = await import("@arcgis/core/graphic/FeatureGraphicOrigin.js");
|
|
1038
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1039
|
-
}
|
|
1040
|
-
async function newGraphicFeatureGraphicOrigin(layer) {
|
|
1041
|
-
const ModConstructor = await importGraphicFeatureGraphicOrigin();
|
|
1042
|
-
return new ModConstructor(layer);
|
|
1043
|
-
}
|
|
1044
|
-
async function importGraphicGeoJSONGraphicOrigin() {
|
|
1045
|
-
if (isAMD) {
|
|
1046
|
-
return await window.$arcgis.import("esri/graphic/GeoJSONGraphicOrigin");
|
|
1047
|
-
}
|
|
1048
|
-
const module2 = await import("@arcgis/core/graphic/GeoJSONGraphicOrigin.js");
|
|
1049
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1050
|
-
}
|
|
1051
|
-
async function newGraphicGeoJSONGraphicOrigin(layer) {
|
|
1052
|
-
const ModConstructor = await importGraphicGeoJSONGraphicOrigin();
|
|
1053
|
-
return new ModConstructor(layer);
|
|
1054
|
-
}
|
|
1055
|
-
async function importGraphicGeoRSSGraphicOrigin() {
|
|
1056
|
-
if (isAMD) {
|
|
1057
|
-
return await window.$arcgis.import("esri/graphic/GeoRSSGraphicOrigin");
|
|
1058
|
-
}
|
|
1059
|
-
const module2 = await import("@arcgis/core/graphic/GeoRSSGraphicOrigin.js");
|
|
1060
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1061
|
-
}
|
|
1062
|
-
async function newGraphicGeoRSSGraphicOrigin(layer) {
|
|
1063
|
-
const ModConstructor = await importGraphicGeoRSSGraphicOrigin();
|
|
1064
|
-
return new ModConstructor(layer);
|
|
1065
|
-
}
|
|
1066
|
-
async function importGraphicKnowledgeGraphGraphicOrigin() {
|
|
1067
|
-
if (isAMD) {
|
|
1068
|
-
return await window.$arcgis.import("esri/graphic/KnowledgeGraphGraphicOrigin");
|
|
1069
|
-
}
|
|
1070
|
-
const module2 = await import("@arcgis/core/graphic/KnowledgeGraphGraphicOrigin.js");
|
|
1071
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1072
|
-
}
|
|
1073
|
-
async function newGraphicKnowledgeGraphGraphicOrigin(layer, sublayer) {
|
|
1074
|
-
const ModConstructor = await importGraphicKnowledgeGraphGraphicOrigin();
|
|
1075
|
-
return new ModConstructor(layer, sublayer);
|
|
1076
|
-
}
|
|
1077
|
-
async function importGraphicMapImageGraphicOrigin() {
|
|
1078
|
-
if (isAMD) {
|
|
1079
|
-
return await window.$arcgis.import("esri/graphic/MapImageGraphicOrigin");
|
|
1080
|
-
}
|
|
1081
|
-
const module2 = await import("@arcgis/core/graphic/MapImageGraphicOrigin.js");
|
|
1082
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1083
|
-
}
|
|
1084
|
-
async function newGraphicMapImageGraphicOrigin(layer, sublayer) {
|
|
1085
|
-
const ModConstructor = await importGraphicMapImageGraphicOrigin();
|
|
1086
|
-
return new ModConstructor(layer, sublayer);
|
|
1087
|
-
}
|
|
1088
|
-
async function importGraphicMapNotesGraphicOrigin() {
|
|
1089
|
-
if (isAMD) {
|
|
1090
|
-
return await window.$arcgis.import("esri/graphic/MapNotesGraphicOrigin");
|
|
1091
|
-
}
|
|
1092
|
-
const module2 = await import("@arcgis/core/graphic/MapNotesGraphicOrigin.js");
|
|
1093
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1094
|
-
}
|
|
1095
|
-
async function newGraphicMapNotesGraphicOrigin(layer, sublayer) {
|
|
1096
|
-
const ModConstructor = await importGraphicMapNotesGraphicOrigin();
|
|
1097
|
-
return new ModConstructor(layer, sublayer);
|
|
1098
|
-
}
|
|
1099
|
-
async function importGraphicOGCFeatureGraphicOrigin() {
|
|
1100
|
-
if (isAMD) {
|
|
1101
|
-
return await window.$arcgis.import("esri/graphic/OGCFeatureGraphicOrigin");
|
|
1102
|
-
}
|
|
1103
|
-
const module2 = await import("@arcgis/core/graphic/OGCFeatureGraphicOrigin.js");
|
|
1104
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1105
|
-
}
|
|
1106
|
-
async function newGraphicOGCFeatureGraphicOrigin(layer) {
|
|
1107
|
-
const ModConstructor = await importGraphicOGCFeatureGraphicOrigin();
|
|
1108
|
-
return new ModConstructor(layer);
|
|
1109
|
-
}
|
|
1110
|
-
async function importGraphicOrientedImageryGraphicOrigin() {
|
|
1111
|
-
if (isAMD) {
|
|
1112
|
-
return await window.$arcgis.import("esri/graphic/OrientedImageryGraphicOrigin");
|
|
1113
|
-
}
|
|
1114
|
-
const module2 = await import("@arcgis/core/graphic/OrientedImageryGraphicOrigin.js");
|
|
1115
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1116
|
-
}
|
|
1117
|
-
async function newGraphicOrientedImageryGraphicOrigin(layer) {
|
|
1118
|
-
const ModConstructor = await importGraphicOrientedImageryGraphicOrigin();
|
|
1119
|
-
return new ModConstructor(layer);
|
|
1120
|
-
}
|
|
1121
|
-
async function importGraphicParquetGraphicOrigin() {
|
|
1122
|
-
if (isAMD) {
|
|
1123
|
-
return await window.$arcgis.import("esri/graphic/ParquetGraphicOrigin");
|
|
1124
|
-
}
|
|
1125
|
-
const module2 = await import("@arcgis/core/graphic/ParquetGraphicOrigin.js");
|
|
1126
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1127
|
-
}
|
|
1128
|
-
async function newGraphicParquetGraphicOrigin(layer) {
|
|
1129
|
-
const ModConstructor = await importGraphicParquetGraphicOrigin();
|
|
1130
|
-
return new ModConstructor(layer);
|
|
1131
|
-
}
|
|
1132
|
-
async function importGraphicPointCloudGraphicOrigin() {
|
|
1133
|
-
if (isAMD) {
|
|
1134
|
-
return await window.$arcgis.import("esri/graphic/PointCloudGraphicOrigin");
|
|
1135
|
-
}
|
|
1136
|
-
const module2 = await import("@arcgis/core/graphic/PointCloudGraphicOrigin.js");
|
|
1137
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1138
|
-
}
|
|
1139
|
-
async function newGraphicPointCloudGraphicOrigin(layer) {
|
|
1140
|
-
const ModConstructor = await importGraphicPointCloudGraphicOrigin();
|
|
1141
|
-
return new ModConstructor(layer);
|
|
1142
|
-
}
|
|
1143
|
-
async function importGraphicSceneGraphicOrigin() {
|
|
1144
|
-
if (isAMD) {
|
|
1145
|
-
return await window.$arcgis.import("esri/graphic/SceneGraphicOrigin");
|
|
1146
|
-
}
|
|
1147
|
-
const module2 = await import("@arcgis/core/graphic/SceneGraphicOrigin.js");
|
|
1148
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1149
|
-
}
|
|
1150
|
-
async function newGraphicSceneGraphicOrigin(layer) {
|
|
1151
|
-
const ModConstructor = await importGraphicSceneGraphicOrigin();
|
|
1152
|
-
return new ModConstructor(layer);
|
|
1153
|
-
}
|
|
1154
|
-
async function importGraphicStreamGraphicOrigin() {
|
|
1155
|
-
if (isAMD) {
|
|
1156
|
-
return await window.$arcgis.import("esri/graphic/StreamGraphicOrigin");
|
|
1157
|
-
}
|
|
1158
|
-
const module2 = await import("@arcgis/core/graphic/StreamGraphicOrigin.js");
|
|
1159
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1160
|
-
}
|
|
1161
|
-
async function newGraphicStreamGraphicOrigin(layer) {
|
|
1162
|
-
const ModConstructor = await importGraphicStreamGraphicOrigin();
|
|
1163
|
-
return new ModConstructor(layer);
|
|
1164
|
-
}
|
|
1165
|
-
async function importGraphicSubtypeGroupGraphicOrigin() {
|
|
1166
|
-
if (isAMD) {
|
|
1167
|
-
return await window.$arcgis.import("esri/graphic/SubtypeGroupGraphicOrigin");
|
|
1168
|
-
}
|
|
1169
|
-
const module2 = await import("@arcgis/core/graphic/SubtypeGroupGraphicOrigin.js");
|
|
1170
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1171
|
-
}
|
|
1172
|
-
async function newGraphicSubtypeGroupGraphicOrigin(sublayer) {
|
|
1173
|
-
const ModConstructor = await importGraphicSubtypeGroupGraphicOrigin();
|
|
1174
|
-
return new ModConstructor(sublayer);
|
|
1175
|
-
}
|
|
1176
|
-
async function importGraphicTileGraphicOrigin() {
|
|
1177
|
-
if (isAMD) {
|
|
1178
|
-
return await window.$arcgis.import("esri/graphic/TileGraphicOrigin");
|
|
1179
|
-
}
|
|
1180
|
-
const module2 = await import("@arcgis/core/graphic/TileGraphicOrigin.js");
|
|
1181
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1182
|
-
}
|
|
1183
|
-
async function newGraphicTileGraphicOrigin(layer, sublayer) {
|
|
1184
|
-
const ModConstructor = await importGraphicTileGraphicOrigin();
|
|
1185
|
-
return new ModConstructor(layer, sublayer);
|
|
1186
|
-
}
|
|
1187
1000
|
async function importGraphicVectorTileGraphicOrigin() {
|
|
1188
1001
|
if (isAMD) {
|
|
1189
1002
|
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
@@ -1195,39 +1008,6 @@ async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
|
1195
1008
|
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1196
1009
|
return new ModConstructor(layer, layerId, layerIndex);
|
|
1197
1010
|
}
|
|
1198
|
-
async function importGraphicVoxelGraphicOrigin() {
|
|
1199
|
-
if (isAMD) {
|
|
1200
|
-
return await window.$arcgis.import("esri/graphic/VoxelGraphicOrigin");
|
|
1201
|
-
}
|
|
1202
|
-
const module2 = await import("@arcgis/core/graphic/VoxelGraphicOrigin.js");
|
|
1203
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1204
|
-
}
|
|
1205
|
-
async function newGraphicVoxelGraphicOrigin(layer) {
|
|
1206
|
-
const ModConstructor = await importGraphicVoxelGraphicOrigin();
|
|
1207
|
-
return new ModConstructor(layer);
|
|
1208
|
-
}
|
|
1209
|
-
async function importGraphicWCSGraphicOrigin() {
|
|
1210
|
-
if (isAMD) {
|
|
1211
|
-
return await window.$arcgis.import("esri/graphic/WCSGraphicOrigin");
|
|
1212
|
-
}
|
|
1213
|
-
const module2 = await import("@arcgis/core/graphic/WCSGraphicOrigin.js");
|
|
1214
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1215
|
-
}
|
|
1216
|
-
async function newGraphicWCSGraphicOrigin(layer) {
|
|
1217
|
-
const ModConstructor = await importGraphicWCSGraphicOrigin();
|
|
1218
|
-
return new ModConstructor(layer);
|
|
1219
|
-
}
|
|
1220
|
-
async function importGraphicWFSGraphicOrigin() {
|
|
1221
|
-
if (isAMD) {
|
|
1222
|
-
return await window.$arcgis.import("esri/graphic/WFSGraphicOrigin");
|
|
1223
|
-
}
|
|
1224
|
-
const module2 = await import("@arcgis/core/graphic/WFSGraphicOrigin.js");
|
|
1225
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
1226
|
-
}
|
|
1227
|
-
async function newGraphicWFSGraphicOrigin(layer) {
|
|
1228
|
-
const ModConstructor = await importGraphicWFSGraphicOrigin();
|
|
1229
|
-
return new ModConstructor(layer);
|
|
1230
|
-
}
|
|
1231
1011
|
async function importAttributeBinsGraphic() {
|
|
1232
1012
|
if (isAMD) {
|
|
1233
1013
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -10299,13 +10079,6 @@ async function importGeometrySupportWebMercatorUtils() {
|
|
|
10299
10079
|
const module2 = await import("@arcgis/core/geometry/support/webMercatorUtils.js");
|
|
10300
10080
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10301
10081
|
}
|
|
10302
|
-
async function importGraphicGraphicOrigins() {
|
|
10303
|
-
if (isAMD) {
|
|
10304
|
-
return await window.$arcgis.import("esri/graphic/graphicOrigins");
|
|
10305
|
-
}
|
|
10306
|
-
const module2 = await import("@arcgis/core/graphic/graphicOrigins.js");
|
|
10307
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10308
|
-
}
|
|
10309
10082
|
async function importIntl() {
|
|
10310
10083
|
if (isAMD) {
|
|
10311
10084
|
return await window.$arcgis.import("esri/intl");
|
|
@@ -11486,29 +11259,8 @@ exports.importGeometrySupportMeshUtils = importGeometrySupportMeshUtils;
|
|
|
11486
11259
|
exports.importGeometrySupportNormalizeUtils = importGeometrySupportNormalizeUtils;
|
|
11487
11260
|
exports.importGeometrySupportWebMercatorUtils = importGeometrySupportWebMercatorUtils;
|
|
11488
11261
|
exports.importGraphic = importGraphic;
|
|
11489
|
-
exports.importGraphicBuildingGraphicOrigin = importGraphicBuildingGraphicOrigin;
|
|
11490
|
-
exports.importGraphicCSVGraphicOrigin = importGraphicCSVGraphicOrigin;
|
|
11491
|
-
exports.importGraphicCatalogGraphicOrigin = importGraphicCatalogGraphicOrigin;
|
|
11492
|
-
exports.importGraphicFeatureGraphicOrigin = importGraphicFeatureGraphicOrigin;
|
|
11493
|
-
exports.importGraphicGeoJSONGraphicOrigin = importGraphicGeoJSONGraphicOrigin;
|
|
11494
|
-
exports.importGraphicGeoRSSGraphicOrigin = importGraphicGeoRSSGraphicOrigin;
|
|
11495
11262
|
exports.importGraphicGraphicOrigin = importGraphicGraphicOrigin;
|
|
11496
|
-
exports.importGraphicGraphicOrigins = importGraphicGraphicOrigins;
|
|
11497
|
-
exports.importGraphicKnowledgeGraphGraphicOrigin = importGraphicKnowledgeGraphGraphicOrigin;
|
|
11498
|
-
exports.importGraphicMapImageGraphicOrigin = importGraphicMapImageGraphicOrigin;
|
|
11499
|
-
exports.importGraphicMapNotesGraphicOrigin = importGraphicMapNotesGraphicOrigin;
|
|
11500
|
-
exports.importGraphicOGCFeatureGraphicOrigin = importGraphicOGCFeatureGraphicOrigin;
|
|
11501
|
-
exports.importGraphicOrientedImageryGraphicOrigin = importGraphicOrientedImageryGraphicOrigin;
|
|
11502
|
-
exports.importGraphicParquetGraphicOrigin = importGraphicParquetGraphicOrigin;
|
|
11503
|
-
exports.importGraphicPointCloudGraphicOrigin = importGraphicPointCloudGraphicOrigin;
|
|
11504
|
-
exports.importGraphicSceneGraphicOrigin = importGraphicSceneGraphicOrigin;
|
|
11505
|
-
exports.importGraphicStreamGraphicOrigin = importGraphicStreamGraphicOrigin;
|
|
11506
|
-
exports.importGraphicSubtypeGroupGraphicOrigin = importGraphicSubtypeGroupGraphicOrigin;
|
|
11507
|
-
exports.importGraphicTileGraphicOrigin = importGraphicTileGraphicOrigin;
|
|
11508
11263
|
exports.importGraphicVectorTileGraphicOrigin = importGraphicVectorTileGraphicOrigin;
|
|
11509
|
-
exports.importGraphicVoxelGraphicOrigin = importGraphicVoxelGraphicOrigin;
|
|
11510
|
-
exports.importGraphicWCSGraphicOrigin = importGraphicWCSGraphicOrigin;
|
|
11511
|
-
exports.importGraphicWFSGraphicOrigin = importGraphicWFSGraphicOrigin;
|
|
11512
11264
|
exports.importGround = importGround;
|
|
11513
11265
|
exports.importIdentityCredential = importIdentityCredential;
|
|
11514
11266
|
exports.importIdentityIdentityManager = importIdentityIdentityManager;
|
|
@@ -12486,28 +12238,8 @@ exports.newGeometrySupportMeshTexture = newGeometrySupportMeshTexture;
|
|
|
12486
12238
|
exports.newGeometrySupportMeshTextureTransform = newGeometrySupportMeshTextureTransform;
|
|
12487
12239
|
exports.newGeometrySupportMeshTransform = newGeometrySupportMeshTransform;
|
|
12488
12240
|
exports.newGraphic = newGraphic;
|
|
12489
|
-
exports.newGraphicBuildingGraphicOrigin = newGraphicBuildingGraphicOrigin;
|
|
12490
|
-
exports.newGraphicCSVGraphicOrigin = newGraphicCSVGraphicOrigin;
|
|
12491
|
-
exports.newGraphicCatalogGraphicOrigin = newGraphicCatalogGraphicOrigin;
|
|
12492
|
-
exports.newGraphicFeatureGraphicOrigin = newGraphicFeatureGraphicOrigin;
|
|
12493
|
-
exports.newGraphicGeoJSONGraphicOrigin = newGraphicGeoJSONGraphicOrigin;
|
|
12494
|
-
exports.newGraphicGeoRSSGraphicOrigin = newGraphicGeoRSSGraphicOrigin;
|
|
12495
12241
|
exports.newGraphicGraphicOrigin = newGraphicGraphicOrigin;
|
|
12496
|
-
exports.newGraphicKnowledgeGraphGraphicOrigin = newGraphicKnowledgeGraphGraphicOrigin;
|
|
12497
|
-
exports.newGraphicMapImageGraphicOrigin = newGraphicMapImageGraphicOrigin;
|
|
12498
|
-
exports.newGraphicMapNotesGraphicOrigin = newGraphicMapNotesGraphicOrigin;
|
|
12499
|
-
exports.newGraphicOGCFeatureGraphicOrigin = newGraphicOGCFeatureGraphicOrigin;
|
|
12500
|
-
exports.newGraphicOrientedImageryGraphicOrigin = newGraphicOrientedImageryGraphicOrigin;
|
|
12501
|
-
exports.newGraphicParquetGraphicOrigin = newGraphicParquetGraphicOrigin;
|
|
12502
|
-
exports.newGraphicPointCloudGraphicOrigin = newGraphicPointCloudGraphicOrigin;
|
|
12503
|
-
exports.newGraphicSceneGraphicOrigin = newGraphicSceneGraphicOrigin;
|
|
12504
|
-
exports.newGraphicStreamGraphicOrigin = newGraphicStreamGraphicOrigin;
|
|
12505
|
-
exports.newGraphicSubtypeGroupGraphicOrigin = newGraphicSubtypeGroupGraphicOrigin;
|
|
12506
|
-
exports.newGraphicTileGraphicOrigin = newGraphicTileGraphicOrigin;
|
|
12507
12242
|
exports.newGraphicVectorTileGraphicOrigin = newGraphicVectorTileGraphicOrigin;
|
|
12508
|
-
exports.newGraphicVoxelGraphicOrigin = newGraphicVoxelGraphicOrigin;
|
|
12509
|
-
exports.newGraphicWCSGraphicOrigin = newGraphicWCSGraphicOrigin;
|
|
12510
|
-
exports.newGraphicWFSGraphicOrigin = newGraphicWFSGraphicOrigin;
|
|
12511
12243
|
exports.newGround = newGround;
|
|
12512
12244
|
exports.newIdentityCredential = newIdentityCredential;
|
|
12513
12245
|
exports.newIdentityOAuthInfo = newIdentityOAuthInfo;
|
package/dist/index.d.cts
CHANGED
|
@@ -189,48 +189,8 @@ export declare function importGeometrySupportMeshTransform(): Promise<typeof __e
|
|
|
189
189
|
export declare function newGeometrySupportMeshTransform(properties: __esri.MeshTransformProperties): Promise<__esri.MeshTransform>;
|
|
190
190
|
export declare function importGraphicGraphicOrigin(): Promise<typeof __esri.GraphicOrigin>;
|
|
191
191
|
export declare function newGraphicGraphicOrigin(): Promise<__esri.GraphicOrigin>;
|
|
192
|
-
export declare function importGraphicBuildingGraphicOrigin(): Promise<typeof __esri.BuildingGraphicOrigin>;
|
|
193
|
-
export declare function newGraphicBuildingGraphicOrigin(sublayer: __esri.BuildingComponentSublayer): Promise<__esri.BuildingGraphicOrigin>;
|
|
194
|
-
export declare function importGraphicCatalogGraphicOrigin(): Promise<typeof __esri.CatalogGraphicOrigin>;
|
|
195
|
-
export declare function newGraphicCatalogGraphicOrigin(layer: __esri.CatalogFootprintLayer): Promise<__esri.CatalogGraphicOrigin>;
|
|
196
|
-
export declare function importGraphicCSVGraphicOrigin(): Promise<typeof __esri.CSVGraphicOrigin>;
|
|
197
|
-
export declare function newGraphicCSVGraphicOrigin(layer: __esri.CSVLayer): Promise<__esri.CSVGraphicOrigin>;
|
|
198
|
-
export declare function importGraphicFeatureGraphicOrigin(): Promise<typeof __esri.FeatureGraphicOrigin>;
|
|
199
|
-
export declare function newGraphicFeatureGraphicOrigin(layer: __esri.FeatureLayer): Promise<__esri.FeatureGraphicOrigin>;
|
|
200
|
-
export declare function importGraphicGeoJSONGraphicOrigin(): Promise<typeof __esri.GeoJSONGraphicOrigin>;
|
|
201
|
-
export declare function newGraphicGeoJSONGraphicOrigin(layer: __esri.GeoJSONLayer): Promise<__esri.GeoJSONGraphicOrigin>;
|
|
202
|
-
export declare function importGraphicGeoRSSGraphicOrigin(): Promise<typeof __esri.GeoRSSGraphicOrigin>;
|
|
203
|
-
export declare function newGraphicGeoRSSGraphicOrigin(layer: __esri.GeoRSSLayer): Promise<__esri.GeoRSSGraphicOrigin>;
|
|
204
|
-
export declare function importGraphicKnowledgeGraphGraphicOrigin(): Promise<typeof __esri.KnowledgeGraphGraphicOrigin>;
|
|
205
|
-
export declare function newGraphicKnowledgeGraphGraphicOrigin(layer: __esri.KnowledgeGraphLayer, sublayer: __esri.KnowledgeGraphSublayer): Promise<__esri.KnowledgeGraphGraphicOrigin>;
|
|
206
|
-
export declare function importGraphicMapImageGraphicOrigin(): Promise<typeof __esri.MapImageGraphicOrigin>;
|
|
207
|
-
export declare function newGraphicMapImageGraphicOrigin(layer: __esri.MapImageLayer, sublayer: __esri.Sublayer): Promise<__esri.MapImageGraphicOrigin>;
|
|
208
|
-
export declare function importGraphicMapNotesGraphicOrigin(): Promise<typeof __esri.MapNotesGraphicOrigin>;
|
|
209
|
-
export declare function newGraphicMapNotesGraphicOrigin(layer: __esri.MapNotesLayer, sublayer: __esri.GraphicsLayer): Promise<__esri.MapNotesGraphicOrigin>;
|
|
210
|
-
export declare function importGraphicOGCFeatureGraphicOrigin(): Promise<typeof __esri.OGCFeatureGraphicOrigin>;
|
|
211
|
-
export declare function newGraphicOGCFeatureGraphicOrigin(layer: __esri.OGCFeatureLayer): Promise<__esri.OGCFeatureGraphicOrigin>;
|
|
212
|
-
export declare function importGraphicOrientedImageryGraphicOrigin(): Promise<typeof __esri.OrientedImageryGraphicOrigin>;
|
|
213
|
-
export declare function newGraphicOrientedImageryGraphicOrigin(layer: __esri.OrientedImageryLayer): Promise<__esri.OrientedImageryGraphicOrigin>;
|
|
214
|
-
export declare function importGraphicParquetGraphicOrigin(): Promise<typeof __esri.ParquetGraphicOrigin>;
|
|
215
|
-
export declare function newGraphicParquetGraphicOrigin(layer: __esri.ParquetLayer): Promise<__esri.ParquetGraphicOrigin>;
|
|
216
|
-
export declare function importGraphicPointCloudGraphicOrigin(): Promise<typeof __esri.PointCloudGraphicOrigin>;
|
|
217
|
-
export declare function newGraphicPointCloudGraphicOrigin(layer: __esri.PointCloudLayer): Promise<__esri.PointCloudGraphicOrigin>;
|
|
218
|
-
export declare function importGraphicSceneGraphicOrigin(): Promise<typeof __esri.SceneGraphicOrigin>;
|
|
219
|
-
export declare function newGraphicSceneGraphicOrigin(layer: __esri.SceneLayer): Promise<__esri.SceneGraphicOrigin>;
|
|
220
|
-
export declare function importGraphicStreamGraphicOrigin(): Promise<typeof __esri.StreamGraphicOrigin>;
|
|
221
|
-
export declare function newGraphicStreamGraphicOrigin(layer: __esri.StreamLayer): Promise<__esri.StreamGraphicOrigin>;
|
|
222
|
-
export declare function importGraphicSubtypeGroupGraphicOrigin(): Promise<typeof __esri.SubtypeGroupGraphicOrigin>;
|
|
223
|
-
export declare function newGraphicSubtypeGroupGraphicOrigin(sublayer: __esri.SubtypeSublayer): Promise<__esri.SubtypeGroupGraphicOrigin>;
|
|
224
|
-
export declare function importGraphicTileGraphicOrigin(): Promise<typeof __esri.TileGraphicOrigin>;
|
|
225
|
-
export declare function newGraphicTileGraphicOrigin(layer: __esri.TileLayer, sublayer: __esri.Sublayer): Promise<__esri.TileGraphicOrigin>;
|
|
226
192
|
export declare function importGraphicVectorTileGraphicOrigin(): Promise<typeof __esri.VectorTileGraphicOrigin>;
|
|
227
193
|
export declare function newGraphicVectorTileGraphicOrigin(layer: __esri.VectorTileLayer, layerId: string, layerIndex: number): Promise<__esri.VectorTileGraphicOrigin>;
|
|
228
|
-
export declare function importGraphicVoxelGraphicOrigin(): Promise<typeof __esri.VoxelGraphicOrigin>;
|
|
229
|
-
export declare function newGraphicVoxelGraphicOrigin(layer: __esri.VoxelLayer): Promise<__esri.VoxelGraphicOrigin>;
|
|
230
|
-
export declare function importGraphicWCSGraphicOrigin(): Promise<typeof __esri.WCSGraphicOrigin>;
|
|
231
|
-
export declare function newGraphicWCSGraphicOrigin(layer: __esri.WCSLayer): Promise<__esri.WCSGraphicOrigin>;
|
|
232
|
-
export declare function importGraphicWFSGraphicOrigin(): Promise<typeof __esri.WFSGraphicOrigin>;
|
|
233
|
-
export declare function newGraphicWFSGraphicOrigin(layer: __esri.WFSLayer): Promise<__esri.WFSGraphicOrigin>;
|
|
234
194
|
export declare function importAttributeBinsGraphic(): Promise<typeof __esri.AttributeBinsGraphic>;
|
|
235
195
|
export declare function newAttributeBinsGraphic(properties: __esri.AttributeBinsGraphicProperties): Promise<__esri.AttributeBinsGraphic>;
|
|
236
196
|
export declare function importGraphic(): Promise<typeof __esri.Graphic>;
|
|
@@ -1859,7 +1819,6 @@ export declare function importGeometrySupportJsonUtils(): Promise<typeof __esri.
|
|
|
1859
1819
|
export declare function importGeometrySupportMeshUtils(): Promise<typeof __esri.meshUtils>;
|
|
1860
1820
|
export declare function importGeometrySupportNormalizeUtils(): Promise<typeof __esri.normalizeUtils>;
|
|
1861
1821
|
export declare function importGeometrySupportWebMercatorUtils(): Promise<typeof __esri.webMercatorUtils>;
|
|
1862
|
-
export declare function importGraphicGraphicOrigins(): Promise<typeof __esri.graphicOrigins>;
|
|
1863
1822
|
export declare function importIntl(): Promise<typeof __esri.intl>;
|
|
1864
1823
|
export declare function importKernel(): Promise<typeof __esri.kernel>;
|
|
1865
1824
|
export declare function importLayersCatalogCatalogUtils(): Promise<typeof __esri.catalogUtils>;
|
package/dist/index.d.ts
CHANGED
|
@@ -189,48 +189,8 @@ export declare function importGeometrySupportMeshTransform(): Promise<typeof __e
|
|
|
189
189
|
export declare function newGeometrySupportMeshTransform(properties: __esri.MeshTransformProperties): Promise<__esri.MeshTransform>;
|
|
190
190
|
export declare function importGraphicGraphicOrigin(): Promise<typeof __esri.GraphicOrigin>;
|
|
191
191
|
export declare function newGraphicGraphicOrigin(): Promise<__esri.GraphicOrigin>;
|
|
192
|
-
export declare function importGraphicBuildingGraphicOrigin(): Promise<typeof __esri.BuildingGraphicOrigin>;
|
|
193
|
-
export declare function newGraphicBuildingGraphicOrigin(sublayer: __esri.BuildingComponentSublayer): Promise<__esri.BuildingGraphicOrigin>;
|
|
194
|
-
export declare function importGraphicCatalogGraphicOrigin(): Promise<typeof __esri.CatalogGraphicOrigin>;
|
|
195
|
-
export declare function newGraphicCatalogGraphicOrigin(layer: __esri.CatalogFootprintLayer): Promise<__esri.CatalogGraphicOrigin>;
|
|
196
|
-
export declare function importGraphicCSVGraphicOrigin(): Promise<typeof __esri.CSVGraphicOrigin>;
|
|
197
|
-
export declare function newGraphicCSVGraphicOrigin(layer: __esri.CSVLayer): Promise<__esri.CSVGraphicOrigin>;
|
|
198
|
-
export declare function importGraphicFeatureGraphicOrigin(): Promise<typeof __esri.FeatureGraphicOrigin>;
|
|
199
|
-
export declare function newGraphicFeatureGraphicOrigin(layer: __esri.FeatureLayer): Promise<__esri.FeatureGraphicOrigin>;
|
|
200
|
-
export declare function importGraphicGeoJSONGraphicOrigin(): Promise<typeof __esri.GeoJSONGraphicOrigin>;
|
|
201
|
-
export declare function newGraphicGeoJSONGraphicOrigin(layer: __esri.GeoJSONLayer): Promise<__esri.GeoJSONGraphicOrigin>;
|
|
202
|
-
export declare function importGraphicGeoRSSGraphicOrigin(): Promise<typeof __esri.GeoRSSGraphicOrigin>;
|
|
203
|
-
export declare function newGraphicGeoRSSGraphicOrigin(layer: __esri.GeoRSSLayer): Promise<__esri.GeoRSSGraphicOrigin>;
|
|
204
|
-
export declare function importGraphicKnowledgeGraphGraphicOrigin(): Promise<typeof __esri.KnowledgeGraphGraphicOrigin>;
|
|
205
|
-
export declare function newGraphicKnowledgeGraphGraphicOrigin(layer: __esri.KnowledgeGraphLayer, sublayer: __esri.KnowledgeGraphSublayer): Promise<__esri.KnowledgeGraphGraphicOrigin>;
|
|
206
|
-
export declare function importGraphicMapImageGraphicOrigin(): Promise<typeof __esri.MapImageGraphicOrigin>;
|
|
207
|
-
export declare function newGraphicMapImageGraphicOrigin(layer: __esri.MapImageLayer, sublayer: __esri.Sublayer): Promise<__esri.MapImageGraphicOrigin>;
|
|
208
|
-
export declare function importGraphicMapNotesGraphicOrigin(): Promise<typeof __esri.MapNotesGraphicOrigin>;
|
|
209
|
-
export declare function newGraphicMapNotesGraphicOrigin(layer: __esri.MapNotesLayer, sublayer: __esri.GraphicsLayer): Promise<__esri.MapNotesGraphicOrigin>;
|
|
210
|
-
export declare function importGraphicOGCFeatureGraphicOrigin(): Promise<typeof __esri.OGCFeatureGraphicOrigin>;
|
|
211
|
-
export declare function newGraphicOGCFeatureGraphicOrigin(layer: __esri.OGCFeatureLayer): Promise<__esri.OGCFeatureGraphicOrigin>;
|
|
212
|
-
export declare function importGraphicOrientedImageryGraphicOrigin(): Promise<typeof __esri.OrientedImageryGraphicOrigin>;
|
|
213
|
-
export declare function newGraphicOrientedImageryGraphicOrigin(layer: __esri.OrientedImageryLayer): Promise<__esri.OrientedImageryGraphicOrigin>;
|
|
214
|
-
export declare function importGraphicParquetGraphicOrigin(): Promise<typeof __esri.ParquetGraphicOrigin>;
|
|
215
|
-
export declare function newGraphicParquetGraphicOrigin(layer: __esri.ParquetLayer): Promise<__esri.ParquetGraphicOrigin>;
|
|
216
|
-
export declare function importGraphicPointCloudGraphicOrigin(): Promise<typeof __esri.PointCloudGraphicOrigin>;
|
|
217
|
-
export declare function newGraphicPointCloudGraphicOrigin(layer: __esri.PointCloudLayer): Promise<__esri.PointCloudGraphicOrigin>;
|
|
218
|
-
export declare function importGraphicSceneGraphicOrigin(): Promise<typeof __esri.SceneGraphicOrigin>;
|
|
219
|
-
export declare function newGraphicSceneGraphicOrigin(layer: __esri.SceneLayer): Promise<__esri.SceneGraphicOrigin>;
|
|
220
|
-
export declare function importGraphicStreamGraphicOrigin(): Promise<typeof __esri.StreamGraphicOrigin>;
|
|
221
|
-
export declare function newGraphicStreamGraphicOrigin(layer: __esri.StreamLayer): Promise<__esri.StreamGraphicOrigin>;
|
|
222
|
-
export declare function importGraphicSubtypeGroupGraphicOrigin(): Promise<typeof __esri.SubtypeGroupGraphicOrigin>;
|
|
223
|
-
export declare function newGraphicSubtypeGroupGraphicOrigin(sublayer: __esri.SubtypeSublayer): Promise<__esri.SubtypeGroupGraphicOrigin>;
|
|
224
|
-
export declare function importGraphicTileGraphicOrigin(): Promise<typeof __esri.TileGraphicOrigin>;
|
|
225
|
-
export declare function newGraphicTileGraphicOrigin(layer: __esri.TileLayer, sublayer: __esri.Sublayer): Promise<__esri.TileGraphicOrigin>;
|
|
226
192
|
export declare function importGraphicVectorTileGraphicOrigin(): Promise<typeof __esri.VectorTileGraphicOrigin>;
|
|
227
193
|
export declare function newGraphicVectorTileGraphicOrigin(layer: __esri.VectorTileLayer, layerId: string, layerIndex: number): Promise<__esri.VectorTileGraphicOrigin>;
|
|
228
|
-
export declare function importGraphicVoxelGraphicOrigin(): Promise<typeof __esri.VoxelGraphicOrigin>;
|
|
229
|
-
export declare function newGraphicVoxelGraphicOrigin(layer: __esri.VoxelLayer): Promise<__esri.VoxelGraphicOrigin>;
|
|
230
|
-
export declare function importGraphicWCSGraphicOrigin(): Promise<typeof __esri.WCSGraphicOrigin>;
|
|
231
|
-
export declare function newGraphicWCSGraphicOrigin(layer: __esri.WCSLayer): Promise<__esri.WCSGraphicOrigin>;
|
|
232
|
-
export declare function importGraphicWFSGraphicOrigin(): Promise<typeof __esri.WFSGraphicOrigin>;
|
|
233
|
-
export declare function newGraphicWFSGraphicOrigin(layer: __esri.WFSLayer): Promise<__esri.WFSGraphicOrigin>;
|
|
234
194
|
export declare function importAttributeBinsGraphic(): Promise<typeof __esri.AttributeBinsGraphic>;
|
|
235
195
|
export declare function newAttributeBinsGraphic(properties: __esri.AttributeBinsGraphicProperties): Promise<__esri.AttributeBinsGraphic>;
|
|
236
196
|
export declare function importGraphic(): Promise<typeof __esri.Graphic>;
|
|
@@ -1859,7 +1819,6 @@ export declare function importGeometrySupportJsonUtils(): Promise<typeof __esri.
|
|
|
1859
1819
|
export declare function importGeometrySupportMeshUtils(): Promise<typeof __esri.meshUtils>;
|
|
1860
1820
|
export declare function importGeometrySupportNormalizeUtils(): Promise<typeof __esri.normalizeUtils>;
|
|
1861
1821
|
export declare function importGeometrySupportWebMercatorUtils(): Promise<typeof __esri.webMercatorUtils>;
|
|
1862
|
-
export declare function importGraphicGraphicOrigins(): Promise<typeof __esri.graphicOrigins>;
|
|
1863
1822
|
export declare function importIntl(): Promise<typeof __esri.intl>;
|
|
1864
1823
|
export declare function importKernel(): Promise<typeof __esri.kernel>;
|
|
1865
1824
|
export declare function importLayersCatalogCatalogUtils(): Promise<typeof __esri.catalogUtils>;
|
package/dist/index.js
CHANGED
|
@@ -973,193 +973,6 @@ async function newGraphicGraphicOrigin() {
|
|
|
973
973
|
const ModConstructor = await importGraphicGraphicOrigin();
|
|
974
974
|
return new ModConstructor();
|
|
975
975
|
}
|
|
976
|
-
async function importGraphicBuildingGraphicOrigin() {
|
|
977
|
-
if (isAMD) {
|
|
978
|
-
return await window.$arcgis.import("esri/graphic/BuildingGraphicOrigin");
|
|
979
|
-
}
|
|
980
|
-
const module = await import("@arcgis/core/graphic/BuildingGraphicOrigin.js");
|
|
981
|
-
return isDefaultModule(module) ? module.default : module;
|
|
982
|
-
}
|
|
983
|
-
async function newGraphicBuildingGraphicOrigin(sublayer) {
|
|
984
|
-
const ModConstructor = await importGraphicBuildingGraphicOrigin();
|
|
985
|
-
return new ModConstructor(sublayer);
|
|
986
|
-
}
|
|
987
|
-
async function importGraphicCatalogGraphicOrigin() {
|
|
988
|
-
if (isAMD) {
|
|
989
|
-
return await window.$arcgis.import("esri/graphic/CatalogGraphicOrigin");
|
|
990
|
-
}
|
|
991
|
-
const module = await import("@arcgis/core/graphic/CatalogGraphicOrigin.js");
|
|
992
|
-
return isDefaultModule(module) ? module.default : module;
|
|
993
|
-
}
|
|
994
|
-
async function newGraphicCatalogGraphicOrigin(layer) {
|
|
995
|
-
const ModConstructor = await importGraphicCatalogGraphicOrigin();
|
|
996
|
-
return new ModConstructor(layer);
|
|
997
|
-
}
|
|
998
|
-
async function importGraphicCSVGraphicOrigin() {
|
|
999
|
-
if (isAMD) {
|
|
1000
|
-
return await window.$arcgis.import("esri/graphic/CSVGraphicOrigin");
|
|
1001
|
-
}
|
|
1002
|
-
const module = await import("@arcgis/core/graphic/CSVGraphicOrigin.js");
|
|
1003
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1004
|
-
}
|
|
1005
|
-
async function newGraphicCSVGraphicOrigin(layer) {
|
|
1006
|
-
const ModConstructor = await importGraphicCSVGraphicOrigin();
|
|
1007
|
-
return new ModConstructor(layer);
|
|
1008
|
-
}
|
|
1009
|
-
async function importGraphicFeatureGraphicOrigin() {
|
|
1010
|
-
if (isAMD) {
|
|
1011
|
-
return await window.$arcgis.import("esri/graphic/FeatureGraphicOrigin");
|
|
1012
|
-
}
|
|
1013
|
-
const module = await import("@arcgis/core/graphic/FeatureGraphicOrigin.js");
|
|
1014
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1015
|
-
}
|
|
1016
|
-
async function newGraphicFeatureGraphicOrigin(layer) {
|
|
1017
|
-
const ModConstructor = await importGraphicFeatureGraphicOrigin();
|
|
1018
|
-
return new ModConstructor(layer);
|
|
1019
|
-
}
|
|
1020
|
-
async function importGraphicGeoJSONGraphicOrigin() {
|
|
1021
|
-
if (isAMD) {
|
|
1022
|
-
return await window.$arcgis.import("esri/graphic/GeoJSONGraphicOrigin");
|
|
1023
|
-
}
|
|
1024
|
-
const module = await import("@arcgis/core/graphic/GeoJSONGraphicOrigin.js");
|
|
1025
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1026
|
-
}
|
|
1027
|
-
async function newGraphicGeoJSONGraphicOrigin(layer) {
|
|
1028
|
-
const ModConstructor = await importGraphicGeoJSONGraphicOrigin();
|
|
1029
|
-
return new ModConstructor(layer);
|
|
1030
|
-
}
|
|
1031
|
-
async function importGraphicGeoRSSGraphicOrigin() {
|
|
1032
|
-
if (isAMD) {
|
|
1033
|
-
return await window.$arcgis.import("esri/graphic/GeoRSSGraphicOrigin");
|
|
1034
|
-
}
|
|
1035
|
-
const module = await import("@arcgis/core/graphic/GeoRSSGraphicOrigin.js");
|
|
1036
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1037
|
-
}
|
|
1038
|
-
async function newGraphicGeoRSSGraphicOrigin(layer) {
|
|
1039
|
-
const ModConstructor = await importGraphicGeoRSSGraphicOrigin();
|
|
1040
|
-
return new ModConstructor(layer);
|
|
1041
|
-
}
|
|
1042
|
-
async function importGraphicKnowledgeGraphGraphicOrigin() {
|
|
1043
|
-
if (isAMD) {
|
|
1044
|
-
return await window.$arcgis.import("esri/graphic/KnowledgeGraphGraphicOrigin");
|
|
1045
|
-
}
|
|
1046
|
-
const module = await import("@arcgis/core/graphic/KnowledgeGraphGraphicOrigin.js");
|
|
1047
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1048
|
-
}
|
|
1049
|
-
async function newGraphicKnowledgeGraphGraphicOrigin(layer, sublayer) {
|
|
1050
|
-
const ModConstructor = await importGraphicKnowledgeGraphGraphicOrigin();
|
|
1051
|
-
return new ModConstructor(layer, sublayer);
|
|
1052
|
-
}
|
|
1053
|
-
async function importGraphicMapImageGraphicOrigin() {
|
|
1054
|
-
if (isAMD) {
|
|
1055
|
-
return await window.$arcgis.import("esri/graphic/MapImageGraphicOrigin");
|
|
1056
|
-
}
|
|
1057
|
-
const module = await import("@arcgis/core/graphic/MapImageGraphicOrigin.js");
|
|
1058
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1059
|
-
}
|
|
1060
|
-
async function newGraphicMapImageGraphicOrigin(layer, sublayer) {
|
|
1061
|
-
const ModConstructor = await importGraphicMapImageGraphicOrigin();
|
|
1062
|
-
return new ModConstructor(layer, sublayer);
|
|
1063
|
-
}
|
|
1064
|
-
async function importGraphicMapNotesGraphicOrigin() {
|
|
1065
|
-
if (isAMD) {
|
|
1066
|
-
return await window.$arcgis.import("esri/graphic/MapNotesGraphicOrigin");
|
|
1067
|
-
}
|
|
1068
|
-
const module = await import("@arcgis/core/graphic/MapNotesGraphicOrigin.js");
|
|
1069
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1070
|
-
}
|
|
1071
|
-
async function newGraphicMapNotesGraphicOrigin(layer, sublayer) {
|
|
1072
|
-
const ModConstructor = await importGraphicMapNotesGraphicOrigin();
|
|
1073
|
-
return new ModConstructor(layer, sublayer);
|
|
1074
|
-
}
|
|
1075
|
-
async function importGraphicOGCFeatureGraphicOrigin() {
|
|
1076
|
-
if (isAMD) {
|
|
1077
|
-
return await window.$arcgis.import("esri/graphic/OGCFeatureGraphicOrigin");
|
|
1078
|
-
}
|
|
1079
|
-
const module = await import("@arcgis/core/graphic/OGCFeatureGraphicOrigin.js");
|
|
1080
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1081
|
-
}
|
|
1082
|
-
async function newGraphicOGCFeatureGraphicOrigin(layer) {
|
|
1083
|
-
const ModConstructor = await importGraphicOGCFeatureGraphicOrigin();
|
|
1084
|
-
return new ModConstructor(layer);
|
|
1085
|
-
}
|
|
1086
|
-
async function importGraphicOrientedImageryGraphicOrigin() {
|
|
1087
|
-
if (isAMD) {
|
|
1088
|
-
return await window.$arcgis.import("esri/graphic/OrientedImageryGraphicOrigin");
|
|
1089
|
-
}
|
|
1090
|
-
const module = await import("@arcgis/core/graphic/OrientedImageryGraphicOrigin.js");
|
|
1091
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1092
|
-
}
|
|
1093
|
-
async function newGraphicOrientedImageryGraphicOrigin(layer) {
|
|
1094
|
-
const ModConstructor = await importGraphicOrientedImageryGraphicOrigin();
|
|
1095
|
-
return new ModConstructor(layer);
|
|
1096
|
-
}
|
|
1097
|
-
async function importGraphicParquetGraphicOrigin() {
|
|
1098
|
-
if (isAMD) {
|
|
1099
|
-
return await window.$arcgis.import("esri/graphic/ParquetGraphicOrigin");
|
|
1100
|
-
}
|
|
1101
|
-
const module = await import("@arcgis/core/graphic/ParquetGraphicOrigin.js");
|
|
1102
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1103
|
-
}
|
|
1104
|
-
async function newGraphicParquetGraphicOrigin(layer) {
|
|
1105
|
-
const ModConstructor = await importGraphicParquetGraphicOrigin();
|
|
1106
|
-
return new ModConstructor(layer);
|
|
1107
|
-
}
|
|
1108
|
-
async function importGraphicPointCloudGraphicOrigin() {
|
|
1109
|
-
if (isAMD) {
|
|
1110
|
-
return await window.$arcgis.import("esri/graphic/PointCloudGraphicOrigin");
|
|
1111
|
-
}
|
|
1112
|
-
const module = await import("@arcgis/core/graphic/PointCloudGraphicOrigin.js");
|
|
1113
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1114
|
-
}
|
|
1115
|
-
async function newGraphicPointCloudGraphicOrigin(layer) {
|
|
1116
|
-
const ModConstructor = await importGraphicPointCloudGraphicOrigin();
|
|
1117
|
-
return new ModConstructor(layer);
|
|
1118
|
-
}
|
|
1119
|
-
async function importGraphicSceneGraphicOrigin() {
|
|
1120
|
-
if (isAMD) {
|
|
1121
|
-
return await window.$arcgis.import("esri/graphic/SceneGraphicOrigin");
|
|
1122
|
-
}
|
|
1123
|
-
const module = await import("@arcgis/core/graphic/SceneGraphicOrigin.js");
|
|
1124
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1125
|
-
}
|
|
1126
|
-
async function newGraphicSceneGraphicOrigin(layer) {
|
|
1127
|
-
const ModConstructor = await importGraphicSceneGraphicOrigin();
|
|
1128
|
-
return new ModConstructor(layer);
|
|
1129
|
-
}
|
|
1130
|
-
async function importGraphicStreamGraphicOrigin() {
|
|
1131
|
-
if (isAMD) {
|
|
1132
|
-
return await window.$arcgis.import("esri/graphic/StreamGraphicOrigin");
|
|
1133
|
-
}
|
|
1134
|
-
const module = await import("@arcgis/core/graphic/StreamGraphicOrigin.js");
|
|
1135
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1136
|
-
}
|
|
1137
|
-
async function newGraphicStreamGraphicOrigin(layer) {
|
|
1138
|
-
const ModConstructor = await importGraphicStreamGraphicOrigin();
|
|
1139
|
-
return new ModConstructor(layer);
|
|
1140
|
-
}
|
|
1141
|
-
async function importGraphicSubtypeGroupGraphicOrigin() {
|
|
1142
|
-
if (isAMD) {
|
|
1143
|
-
return await window.$arcgis.import("esri/graphic/SubtypeGroupGraphicOrigin");
|
|
1144
|
-
}
|
|
1145
|
-
const module = await import("@arcgis/core/graphic/SubtypeGroupGraphicOrigin.js");
|
|
1146
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1147
|
-
}
|
|
1148
|
-
async function newGraphicSubtypeGroupGraphicOrigin(sublayer) {
|
|
1149
|
-
const ModConstructor = await importGraphicSubtypeGroupGraphicOrigin();
|
|
1150
|
-
return new ModConstructor(sublayer);
|
|
1151
|
-
}
|
|
1152
|
-
async function importGraphicTileGraphicOrigin() {
|
|
1153
|
-
if (isAMD) {
|
|
1154
|
-
return await window.$arcgis.import("esri/graphic/TileGraphicOrigin");
|
|
1155
|
-
}
|
|
1156
|
-
const module = await import("@arcgis/core/graphic/TileGraphicOrigin.js");
|
|
1157
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1158
|
-
}
|
|
1159
|
-
async function newGraphicTileGraphicOrigin(layer, sublayer) {
|
|
1160
|
-
const ModConstructor = await importGraphicTileGraphicOrigin();
|
|
1161
|
-
return new ModConstructor(layer, sublayer);
|
|
1162
|
-
}
|
|
1163
976
|
async function importGraphicVectorTileGraphicOrigin() {
|
|
1164
977
|
if (isAMD) {
|
|
1165
978
|
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
@@ -1171,39 +984,6 @@ async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
|
1171
984
|
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1172
985
|
return new ModConstructor(layer, layerId, layerIndex);
|
|
1173
986
|
}
|
|
1174
|
-
async function importGraphicVoxelGraphicOrigin() {
|
|
1175
|
-
if (isAMD) {
|
|
1176
|
-
return await window.$arcgis.import("esri/graphic/VoxelGraphicOrigin");
|
|
1177
|
-
}
|
|
1178
|
-
const module = await import("@arcgis/core/graphic/VoxelGraphicOrigin.js");
|
|
1179
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1180
|
-
}
|
|
1181
|
-
async function newGraphicVoxelGraphicOrigin(layer) {
|
|
1182
|
-
const ModConstructor = await importGraphicVoxelGraphicOrigin();
|
|
1183
|
-
return new ModConstructor(layer);
|
|
1184
|
-
}
|
|
1185
|
-
async function importGraphicWCSGraphicOrigin() {
|
|
1186
|
-
if (isAMD) {
|
|
1187
|
-
return await window.$arcgis.import("esri/graphic/WCSGraphicOrigin");
|
|
1188
|
-
}
|
|
1189
|
-
const module = await import("@arcgis/core/graphic/WCSGraphicOrigin.js");
|
|
1190
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1191
|
-
}
|
|
1192
|
-
async function newGraphicWCSGraphicOrigin(layer) {
|
|
1193
|
-
const ModConstructor = await importGraphicWCSGraphicOrigin();
|
|
1194
|
-
return new ModConstructor(layer);
|
|
1195
|
-
}
|
|
1196
|
-
async function importGraphicWFSGraphicOrigin() {
|
|
1197
|
-
if (isAMD) {
|
|
1198
|
-
return await window.$arcgis.import("esri/graphic/WFSGraphicOrigin");
|
|
1199
|
-
}
|
|
1200
|
-
const module = await import("@arcgis/core/graphic/WFSGraphicOrigin.js");
|
|
1201
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1202
|
-
}
|
|
1203
|
-
async function newGraphicWFSGraphicOrigin(layer) {
|
|
1204
|
-
const ModConstructor = await importGraphicWFSGraphicOrigin();
|
|
1205
|
-
return new ModConstructor(layer);
|
|
1206
|
-
}
|
|
1207
987
|
async function importAttributeBinsGraphic() {
|
|
1208
988
|
if (isAMD) {
|
|
1209
989
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -10275,13 +10055,6 @@ async function importGeometrySupportWebMercatorUtils() {
|
|
|
10275
10055
|
const module = await import("@arcgis/core/geometry/support/webMercatorUtils.js");
|
|
10276
10056
|
return isDefaultModule(module) ? module.default : module;
|
|
10277
10057
|
}
|
|
10278
|
-
async function importGraphicGraphicOrigins() {
|
|
10279
|
-
if (isAMD) {
|
|
10280
|
-
return await window.$arcgis.import("esri/graphic/graphicOrigins");
|
|
10281
|
-
}
|
|
10282
|
-
const module = await import("@arcgis/core/graphic/graphicOrigins.js");
|
|
10283
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10284
|
-
}
|
|
10285
10058
|
async function importIntl() {
|
|
10286
10059
|
if (isAMD) {
|
|
10287
10060
|
return await window.$arcgis.import("esri/intl");
|
|
@@ -11463,29 +11236,8 @@ export {
|
|
|
11463
11236
|
importGeometrySupportNormalizeUtils,
|
|
11464
11237
|
importGeometrySupportWebMercatorUtils,
|
|
11465
11238
|
importGraphic,
|
|
11466
|
-
importGraphicBuildingGraphicOrigin,
|
|
11467
|
-
importGraphicCSVGraphicOrigin,
|
|
11468
|
-
importGraphicCatalogGraphicOrigin,
|
|
11469
|
-
importGraphicFeatureGraphicOrigin,
|
|
11470
|
-
importGraphicGeoJSONGraphicOrigin,
|
|
11471
|
-
importGraphicGeoRSSGraphicOrigin,
|
|
11472
11239
|
importGraphicGraphicOrigin,
|
|
11473
|
-
importGraphicGraphicOrigins,
|
|
11474
|
-
importGraphicKnowledgeGraphGraphicOrigin,
|
|
11475
|
-
importGraphicMapImageGraphicOrigin,
|
|
11476
|
-
importGraphicMapNotesGraphicOrigin,
|
|
11477
|
-
importGraphicOGCFeatureGraphicOrigin,
|
|
11478
|
-
importGraphicOrientedImageryGraphicOrigin,
|
|
11479
|
-
importGraphicParquetGraphicOrigin,
|
|
11480
|
-
importGraphicPointCloudGraphicOrigin,
|
|
11481
|
-
importGraphicSceneGraphicOrigin,
|
|
11482
|
-
importGraphicStreamGraphicOrigin,
|
|
11483
|
-
importGraphicSubtypeGroupGraphicOrigin,
|
|
11484
|
-
importGraphicTileGraphicOrigin,
|
|
11485
11240
|
importGraphicVectorTileGraphicOrigin,
|
|
11486
|
-
importGraphicVoxelGraphicOrigin,
|
|
11487
|
-
importGraphicWCSGraphicOrigin,
|
|
11488
|
-
importGraphicWFSGraphicOrigin,
|
|
11489
11241
|
importGround,
|
|
11490
11242
|
importIdentityCredential,
|
|
11491
11243
|
importIdentityIdentityManager,
|
|
@@ -12463,28 +12215,8 @@ export {
|
|
|
12463
12215
|
newGeometrySupportMeshTextureTransform,
|
|
12464
12216
|
newGeometrySupportMeshTransform,
|
|
12465
12217
|
newGraphic,
|
|
12466
|
-
newGraphicBuildingGraphicOrigin,
|
|
12467
|
-
newGraphicCSVGraphicOrigin,
|
|
12468
|
-
newGraphicCatalogGraphicOrigin,
|
|
12469
|
-
newGraphicFeatureGraphicOrigin,
|
|
12470
|
-
newGraphicGeoJSONGraphicOrigin,
|
|
12471
|
-
newGraphicGeoRSSGraphicOrigin,
|
|
12472
12218
|
newGraphicGraphicOrigin,
|
|
12473
|
-
newGraphicKnowledgeGraphGraphicOrigin,
|
|
12474
|
-
newGraphicMapImageGraphicOrigin,
|
|
12475
|
-
newGraphicMapNotesGraphicOrigin,
|
|
12476
|
-
newGraphicOGCFeatureGraphicOrigin,
|
|
12477
|
-
newGraphicOrientedImageryGraphicOrigin,
|
|
12478
|
-
newGraphicParquetGraphicOrigin,
|
|
12479
|
-
newGraphicPointCloudGraphicOrigin,
|
|
12480
|
-
newGraphicSceneGraphicOrigin,
|
|
12481
|
-
newGraphicStreamGraphicOrigin,
|
|
12482
|
-
newGraphicSubtypeGroupGraphicOrigin,
|
|
12483
|
-
newGraphicTileGraphicOrigin,
|
|
12484
12219
|
newGraphicVectorTileGraphicOrigin,
|
|
12485
|
-
newGraphicVoxelGraphicOrigin,
|
|
12486
|
-
newGraphicWCSGraphicOrigin,
|
|
12487
|
-
newGraphicWFSGraphicOrigin,
|
|
12488
12220
|
newGround,
|
|
12489
12221
|
newIdentityCredential,
|
|
12490
12222
|
newIdentityOAuthInfo,
|