@arcgis/core 5.0.0-next.55 → 5.0.0-next.57
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/Color.d.ts +12 -4
- package/Ground.js +1 -1
- package/applications/Components/SelectionOperation.d.ts +5 -0
- package/applications/Components/SketchTooltipControls.d.ts +5 -0
- package/applications/Components/actionUtils.d.ts +5 -0
- package/applications/Components/analysisUtils.d.ts +5 -0
- package/applications/Components/arcadeEditorUtils.d.ts +5 -0
- package/applications/Components/arcadeFeatureUtils.d.ts +5 -0
- package/applications/Components/basemapUtils.d.ts +5 -0
- package/applications/Components/drawUtils.d.ts +5 -0
- package/applications/Components/featureUtils.d.ts +5 -0
- package/applications/Components/fontUtils.d.ts +5 -0
- package/applications/Components/formatUtils.d.ts +5 -0
- package/applications/Components/getDefaultUnits.d.ts +5 -0
- package/applications/Components/gfxUtils.d.ts +5 -0
- package/applications/Components/imageryUtils.d.ts +5 -0
- package/applications/Components/layerOriginUtils.d.ts +5 -0
- package/applications/Components/layersEffectsJsonUtils.d.ts +5 -0
- package/applications/Components/previewSymbol2D.d.ts +5 -0
- package/applications/Components/reactiveUtils.d.ts +6 -0
- package/applications/Components/sanitizerUtils.d.ts +5 -0
- package/applications/Components/stringUtils.d.ts +6 -2
- package/applications/Components/styleUtils.d.ts +5 -0
- package/applications/Components/svgUtils.d.ts +5 -0
- package/applications/Components/testUtils.d.ts +5 -0
- package/applications/Components/viewUtils.d.ts +5 -0
- package/applications/Components/webStyleSymbolUtils.d.ts +5 -0
- package/applications/Excalibur/videoViewUtils.d.ts +5 -0
- package/applications/ExperienceBuilder/sketchUtils.d.ts +5 -0
- package/applications/KnowledgeStudio/generalSdkInternalAccess.d.ts +10 -0
- package/applications/KnowledgeStudio/generalSharedKgUtils.d.ts +10 -0
- package/applications/KnowledgeStudio/layerInternalAccessUtils.d.ts +11 -1
- package/applications/KnowledgeStudio/reshape.d.ts +5 -0
- package/applications/KnowledgeStudio/resourceSerializationUtils.d.ts +5 -0
- package/applications/MapViewer/layerUtils.d.ts +5 -0
- package/applications/MapViewer/mediaUtils.d.ts +5 -0
- package/applications/MapViewer/templateUtils.d.ts +5 -0
- package/applications/PortalApp/layerUtils.d.ts +5 -0
- package/applications/SceneViewer/colorUtils.d.ts +5 -0
- package/applications/SceneViewer/devEnvironmentUtils.d.ts +5 -0
- package/applications/SceneViewer/layerUtils.d.ts +5 -0
- package/applications/SceneViewer/sceneViewerUtils.d.ts +5 -0
- package/applications/SceneViewer/symbolUtils.d.ts +5 -0
- package/applications/Urban/meshUtils.d.ts +5 -0
- package/applications/WebEditor/sketchUtils.d.ts +5 -0
- package/arcade.d.ts +22 -0
- package/assets/esri/core/workers/RemoteClient.js +1 -1
- package/assets/esri/core/workers/chunks/5340887a4a48bde3407a.js +1 -0
- package/assets/esri/core/workers/chunks/82ced9254b27707522ef.js +1 -0
- package/assets/esri/core/workers/chunks/8628bf45a33af786cd49.js +1 -0
- package/assets/esri/core/workers/chunks/{d63cf90d1356d1f10138.js → 8f4c480c418eba299c2b.js} +1 -1
- package/assets/esri/core/workers/chunks/{fa92a7c11befbad8739f.js → b4f944ef6c174b20b619.js} +1 -1
- package/assets/esri/core/workers/chunks/c531c0e3d420a1be0ad2.js +316 -0
- package/assets/esri/core/workers/chunks/{14765f98b8ea447498a1.js → da2c41ac0f82f32013c1.js} +4 -4
- package/assets/esri/libs/lyr3d/lyr3DMain.wasm +0 -0
- package/assets/esri/libs/lyr3d/lyr3DWorker.wasm +0 -0
- package/chunks/ChapmanAtmosphere.glsl.js +5 -7
- package/chunks/HUDMaterial.glsl.js +1 -1
- package/chunks/LineCallout.glsl.js +2 -2
- package/chunks/Precipitation.glsl.js +1 -1
- package/chunks/Terrain.glsl.js +1 -1
- package/chunks/lyr3DMain.js +1 -1
- package/chunks/vec32.js +1 -1
- package/config.d.ts +19 -1
- package/config.js +1 -1
- package/core/Error.d.ts +3 -4
- package/core/Error.js +1 -1
- package/core/Warning.js +1 -1
- package/core/accessorSupport/decorators.d.ts +11 -0
- package/core/accessorSupport/types.d.ts +2 -0
- package/core/has.js +1 -1
- package/core/lang.d.ts +6 -0
- package/core/libs/gl-matrix-2/math/vec3.js +1 -1
- package/core/libs/gl-matrix-2/vec3.js +1 -1
- package/core/promiseUtils.d.ts +5 -0
- package/core/quantity.d.ts +5 -0
- package/core/reactiveUtils.d.ts +142 -0
- package/core/scheduling.d.ts +26 -5
- package/core/scheduling.js +1 -1
- package/core/sql/WhereClause.d.ts +2 -13
- package/core/sql/{WhereGrammar.d.ts → types.d.ts} +22 -1
- package/core/sql.d.ts +8 -0
- package/core/string.js +1 -1
- package/core/types.d.ts +30 -1
- package/core/units.d.ts +8 -0
- package/core/urlUtils.d.ts +7 -0
- package/core/workers/loaderConfig.js +1 -1
- package/core/workers/workerFactory.js +1 -1
- package/core/workers.d.ts +26 -0
- package/form/elements/inputs.d.ts +55 -0
- package/form/elements.d.ts +43 -0
- package/geometry/coordinateFormatter.d.ts +33 -0
- package/geometry/geometryEngine.d.ts +16 -0
- package/geometry/operators/affineTransformOperator.d.ts +5 -0
- package/geometry/operators/alphaShapeOperator.d.ts +9 -0
- package/geometry/operators/areaOperator.d.ts +7 -0
- package/geometry/operators/autoCompleteOperator.d.ts +5 -0
- package/geometry/operators/boundaryOperator.d.ts +5 -0
- package/geometry/operators/bufferOperator.d.ts +11 -0
- package/geometry/operators/centroidOperator.d.ts +14 -0
- package/geometry/operators/clipOperator.d.ts +7 -0
- package/geometry/operators/containsOperator.d.ts +9 -0
- package/geometry/operators/convexHullOperator.d.ts +9 -0
- package/geometry/operators/crossesOperator.d.ts +7 -0
- package/geometry/operators/cutOperator.d.ts +18 -0
- package/geometry/operators/densifyOperator.d.ts +21 -0
- package/geometry/operators/differenceOperator.d.ts +7 -0
- package/geometry/operators/disjointOperator.d.ts +8 -0
- package/geometry/operators/distanceOperator.d.ts +8 -0
- package/geometry/operators/equalsOperator.d.ts +5 -0
- package/geometry/operators/extendOperator.d.ts +8 -0
- package/geometry/operators/generalizeOperator.d.ts +7 -0
- package/geometry/operators/geodesicBufferOperator.d.ts +13 -0
- package/geometry/operators/geodesicProximityOperator.d.ts +13 -0
- package/geometry/operators/geodeticAreaOperator.d.ts +11 -0
- package/geometry/operators/geodeticDensifyOperator.d.ts +12 -0
- package/geometry/operators/geodeticDistanceOperator.d.ts +14 -0
- package/geometry/operators/geodeticLengthOperator.d.ts +11 -0
- package/geometry/operators/geodeticUtilsOperator.d.ts +11 -0
- package/geometry/operators/graphicBufferOperator.d.ts +7 -0
- package/geometry/operators/integrateOperator.d.ts +9 -0
- package/geometry/operators/intersectionOperator.d.ts +7 -0
- package/geometry/operators/intersectsOperator.d.ts +9 -0
- package/geometry/operators/isNearOperator.d.ts +7 -0
- package/geometry/operators/labelPointOperator.d.ts +14 -0
- package/geometry/operators/lengthOperator.d.ts +7 -0
- package/geometry/operators/linesToPolygonsOperator.d.ts +5 -0
- package/geometry/operators/locateBetweenOperator.d.ts +10 -0
- package/geometry/operators/minimumBoundingCircleOperator.d.ts +13 -0
- package/geometry/operators/multiPartToSinglePartOperator.d.ts +7 -0
- package/geometry/operators/offsetOperator.d.ts +44 -0
- package/geometry/operators/overlapsOperator.d.ts +7 -0
- package/geometry/operators/polygonOverlayOperator.d.ts +6 -0
- package/geometry/operators/polygonSlicerOperator.d.ts +5 -0
- package/geometry/operators/projectOperator.d.ts +41 -0
- package/geometry/operators/proximityOperator.d.ts +8 -0
- package/geometry/operators/relateOperator.d.ts +7 -0
- package/geometry/operators/reshapeOperator.d.ts +5 -0
- package/geometry/operators/shapePreservingProjectOperator.d.ts +27 -0
- package/geometry/operators/simplifyOGCOperator.d.ts +8 -0
- package/geometry/operators/simplifyOperator.d.ts +9 -0
- package/geometry/operators/support/geographicTransformationUtils.d.ts +11 -0
- package/geometry/operators/symmetricDifferenceOperator.d.ts +12 -0
- package/geometry/operators/touchesOperator.d.ts +7 -0
- package/geometry/operators/unionOperator.d.ts +7 -0
- package/geometry/operators/withinOperator.d.ts +9 -0
- package/geometry/support/geodesicUtils.d.ts +8 -0
- package/geometry/support/jsonUtils.d.ts +7 -0
- package/geometry/support/meshUtils.d.ts +5 -0
- package/geometry/support/normalizeUtils.d.ts +7 -0
- package/geometry/support/webMercatorUtils.d.ts +12 -0
- package/geometry.d.ts +38 -0
- package/interfaces.d.ts +31 -32
- package/intl.d.ts +111 -0
- package/kernel.d.ts +5 -0
- package/kernel.js +1 -1
- package/layers/BaseDynamicLayer.d.ts +1 -1
- package/layers/CSVLayer.d.ts +2 -2
- package/layers/CatalogLayer.d.ts +2 -2
- package/layers/FeatureLayer.d.ts +2 -1
- package/layers/GeoJSONLayer.d.ts +2 -1
- package/layers/ILyr3DWasmPerSceneView.js +1 -1
- package/layers/Layer.d.ts +1 -1
- package/layers/Lyr3DWasmPerSceneView.js +1 -1
- package/layers/OGCFeatureLayer.d.ts +1 -1
- package/layers/ParquetLayer.d.ts +1 -1
- package/layers/RouteLayer.js +1 -1
- package/layers/SceneLayer.d.ts +2 -1
- package/layers/StreamLayer.d.ts +6 -5
- package/layers/SubtypeGroupLayer.d.ts +3 -4
- package/layers/VectorTileLayer.d.ts +1 -1
- package/layers/WFSLayer.d.ts +2 -1
- package/layers/WMSLayer.d.ts +2 -2
- package/layers/catalog/catalogUtils.d.ts +6 -0
- package/layers/ogc/wcsUtils.d.ts +6 -0
- package/layers/ogc/wfsUtils.d.ts +6 -0
- package/layers/orientedImagery/transformations/imageToWorld.d.ts +10 -0
- package/layers/orientedImagery/transformations/rectifyMapPoint.js +1 -1
- package/layers/orientedImagery/transformations/worldToImage.d.ts +10 -0
- package/layers/orientedImagery/types.d.ts +1 -1
- package/layers/support/arcadeUtils.d.ts +5 -0
- package/layers/support/csvUtils.d.ts +6 -0
- package/layers/support/fieldUtils.d.ts +9 -0
- package/layers/support/parquetUtils.d.ts +6 -0
- package/layers/support/rasterFunctionConstants.d.ts +9 -0
- package/layers/support/rasterFunctionUtils.d.ts +7 -0
- package/package.json +1 -1
- package/pointCloudRenderers.d.ts +44 -0
- package/popup/content.d.ts +48 -0
- package/rasterRenderers.d.ts +46 -0
- package/renderers/support/AuthoringInfo.d.ts +1 -1
- package/renderers/support/jsonUtils.d.ts +7 -0
- package/renderers/support/utils.d.ts +5 -0
- package/renderers/visualVariables/SizeVariable.d.ts +0 -3
- package/renderers/visualVariables/VisualVariable.d.ts +1 -1
- package/renderers/visualVariables/support/VisualVariableLegendOptions.d.ts +1 -1
- package/renderers.d.ts +46 -0
- package/request.d.ts +17 -0
- package/rest/closestFacility.d.ts +21 -0
- package/rest/featureService/utils.d.ts +5 -0
- package/rest/find.d.ts +21 -0
- package/rest/geometryService.d.ts +14 -0
- package/rest/geoprocessor.d.ts +16 -0
- package/rest/identify.d.ts +19 -0
- package/rest/imageService.d.ts +10 -0
- package/rest/knowledgeGraphService.d.ts +39 -0
- package/rest/lastMileDelivery.d.ts +12 -0
- package/rest/locator.d.ts +24 -0
- package/rest/networkService.d.ts +5 -0
- package/rest/networks/queryAssociations.d.ts +7 -0
- package/rest/networks/support/NetworkElement.d.ts +1 -1
- package/rest/networks/synthesizeAssociationGeometries.d.ts +7 -0
- package/rest/networks/trace.d.ts +6 -0
- package/rest/places.d.ts +34 -0
- package/rest/print.d.ts +74 -0
- package/rest/query.d.ts +33 -0
- package/rest/route.d.ts +18 -0
- package/rest/serviceArea.d.ts +18 -0
- package/rest/support/AreasAndLengthsParameters.d.ts +2 -2
- package/rest/support/AttachmentQuery.d.ts +0 -1
- package/rest/support/AttributeBinsQuery.d.ts +3 -3
- package/rest/support/AutoIntervalBinParameters.d.ts +4 -4
- package/rest/support/DateBinParameters.d.ts +2 -2
- package/rest/support/DateBinTimeInterval.d.ts +1 -1
- package/rest/support/DensifyParameters.d.ts +1 -1
- package/rest/support/DirectionsFeature.d.ts +1 -1
- package/rest/support/GPMessage.d.ts +1 -1
- package/rest/support/LastMileDeliveryParameters.d.ts +1 -1
- package/rest/support/QuantizationParameters.d.ts +3 -3
- package/rest/support/Query.d.ts +0 -1
- package/rest/support/QueryMixin.d.ts +1 -1
- package/rest/support/RelationshipQuery.d.ts +0 -1
- package/rest/support/interfaces.d.ts +1 -2
- package/rest/symbolService.d.ts +9 -0
- package/smartMapping/heuristics/binLevel.d.ts +12 -0
- package/smartMapping/heuristics/scaleRange.d.ts +15 -0
- package/smartMapping/heuristics/sizeRange.d.ts +12 -0
- package/smartMapping/labels/bins.d.ts +13 -0
- package/smartMapping/labels/clusters.d.ts +16 -0
- package/smartMapping/popup/clusters.d.ts +21 -0
- package/smartMapping/popup/templates.d.ts +18 -0
- package/smartMapping/raster/renderers/classBreaks.d.ts +7 -0
- package/smartMapping/raster/renderers/colormap.d.ts +7 -0
- package/smartMapping/raster/renderers/flow.d.ts +19 -0
- package/smartMapping/raster/renderers/rgb.d.ts +7 -0
- package/smartMapping/raster/renderers/shadedRelief.d.ts +7 -0
- package/smartMapping/raster/renderers/stretch.d.ts +7 -0
- package/smartMapping/raster/renderers/uniqueValue.d.ts +7 -0
- package/smartMapping/raster/renderers/vectorField.d.ts +20 -0
- package/smartMapping/raster/support/colorRamps.d.ts +7 -0
- package/smartMapping/raster/support/utils.d.ts +5 -0
- package/smartMapping/renderers/color.d.ts +17 -0
- package/smartMapping/renderers/dotDensity.d.ts +21 -0
- package/smartMapping/renderers/heatmap.d.ts +17 -0
- package/smartMapping/renderers/location.d.ts +10 -0
- package/smartMapping/renderers/opacity.d.ts +19 -0
- package/smartMapping/renderers/pieChart.d.ts +19 -0
- package/smartMapping/renderers/predominance.d.ts +27 -0
- package/smartMapping/renderers/relationship.d.ts +48 -0
- package/smartMapping/renderers/size.d.ts +18 -0
- package/smartMapping/renderers/support/rendererUtils.d.ts +8 -0
- package/smartMapping/renderers/support/spikeUtils.d.ts +6 -0
- package/smartMapping/renderers/type.d.ts +18 -0
- package/smartMapping/renderers/univariateColorSize.d.ts +29 -0
- package/smartMapping/statistics/classBreaks.d.ts +14 -0
- package/smartMapping/statistics/heatmapStatistics.d.ts +15 -0
- package/smartMapping/statistics/histogram.d.ts +17 -0
- package/smartMapping/statistics/predominantCategories.d.ts +6 -0
- package/smartMapping/statistics/summaryStatistics.d.ts +15 -0
- package/smartMapping/statistics/summaryStatisticsForAge.d.ts +8 -1
- package/smartMapping/statistics/support/ageUtils.d.ts +8 -0
- package/smartMapping/statistics/support/predominanceUtils.d.ts +8 -1
- package/smartMapping/statistics/types.d.ts +6 -1
- package/smartMapping/statistics/uniqueValues.d.ts +13 -0
- package/smartMapping/symbology/color.d.ts +8 -0
- package/smartMapping/symbology/dotDensity.d.ts +7 -0
- package/smartMapping/symbology/flow.d.ts +8 -0
- package/smartMapping/symbology/heatmap.d.ts +8 -0
- package/smartMapping/symbology/location.d.ts +8 -0
- package/smartMapping/symbology/pieChart.d.ts +7 -0
- package/smartMapping/symbology/predominance.d.ts +7 -0
- package/smartMapping/symbology/relationship.d.ts +7 -0
- package/smartMapping/symbology/size.d.ts +7 -0
- package/smartMapping/symbology/support/colorRamps.d.ts +7 -0
- package/smartMapping/symbology/type.d.ts +8 -0
- package/support/popupUtils.d.ts +5 -0
- package/support/revision.js +1 -1
- package/support/timeUtils.d.ts +9 -0
- package/symbols/CIMSymbol.d.ts +1 -1
- package/symbols/ExtrudeSymbol3DLayer.d.ts +2 -2
- package/symbols/FillSymbol3DLayer.d.ts +1 -1
- package/symbols/LineSymbol3DLayer.d.ts +2 -2
- package/symbols/ObjectSymbol3DLayer.d.ts +2 -2
- package/symbols/PathSymbol3DLayer.d.ts +2 -2
- package/symbols/TextSymbol.d.ts +2 -2
- package/symbols/support/Symbol3DFillMaterial.d.ts +1 -1
- package/symbols/support/Symbol3DFillMaterial.js +1 -1
- package/symbols/support/Symbol3DHalo.d.ts +8 -4
- package/symbols/support/Symbol3DHalo.js +1 -1
- package/symbols/support/cimConversionUtils.d.ts +9 -0
- package/symbols/support/cimSymbolUtils.d.ts +10 -0
- package/symbols/support/jsonUtils.d.ts +7 -0
- package/symbols/support/symbolUtils.d.ts +5 -0
- package/symbols.d.ts +59 -0
- package/tables/elements.d.ts +41 -0
- package/time/TimeExtent.d.ts +1 -1
- package/time/TimeInterval.d.ts +1 -1
- package/unionTypes.d.ts +5 -0
- package/versionManagement/utils.d.ts +5 -0
- package/versionManagement/versionAdapters/utils.d.ts +5 -0
- package/views/2d/MapViewConstraints.d.ts +18 -10
- package/views/2d/engine/webgl/shaders/sources/shaderRepository.js +1 -1
- package/views/2d/layers/RouteLayerView2D.js +1 -1
- package/views/2d/layers/TileLayerView2D.js +1 -1
- package/views/2d/layers/support/RouteLayerInteraction.js +1 -1
- package/views/2d/layers/support/RouteLayerWaypointVisualization.js +5 -0
- package/views/3d/analysis/DirectLineMeasurement/types.d.ts +5 -0
- package/views/3d/analysis/LineOfSight/types.d.ts +5 -0
- package/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError.d.ts +1 -1
- package/views/3d/analysis/VolumeMeasurement/types.d.ts +5 -0
- package/views/3d/environment/ChapmanRaymarching.glsl.js +2 -1
- package/views/3d/interactive/visualElements/PointVisualElement.js +1 -1
- package/views/3d/layers/graphics/Deconflictor.js +1 -1
- package/views/3d/layers/graphics/Graphics3DCore.js +1 -1
- package/views/3d/layers/graphics/Graphics3DIconSymbolLayer.js +1 -1
- package/views/3d/layers/graphics/Graphics3DLineCalloutSymbolLayer.js +1 -1
- package/views/3d/layers/graphics/Graphics3DSymbolLayer.js +1 -1
- package/views/3d/layers/graphics/Graphics3DTextSymbolLayer.js +1 -1
- package/views/3d/layers/graphics/GraphicsDeconflictor.js +1 -1
- package/views/3d/layers/graphics/GraphicsProcessor.js +1 -1
- package/views/3d/layers/graphics/pipeline/symbolization/IconSymbolLayerRenderer.js +1 -1
- package/views/3d/state/helpers/SceneIntersectionHelper.js +1 -1
- package/views/3d/support/pointsOfInterest/StableSurfaceCenter.js +1 -1
- package/views/3d/terrain/TerrainSurface.js +1 -1
- package/views/3d/webgl-engine/collections/Component/Material/ComponentMaterial.js +1 -1
- package/views/3d/webgl-engine/core/shaderLibrary/Slice.glsl.js +2 -2
- package/views/3d/webgl-engine/lib/GaussianSplatRenderNode.js +1 -1
- package/views/3d/webgl-engine/materials/HUDMaterial.js +1 -1
- package/views/3d/webgl-engine/materials/LineCalloutMaterial.js +1 -1
- package/views/3d/webgl-engine/shaders/HUDMaterialTechniqueConfiguration.js +1 -1
- package/views/3d/webgl-engine/shaders/LineCalloutTechniqueConfiguration.js +1 -1
- package/views/3d/webgl-engine/shaders/OutputColorHighlightOLID.glsl.js +8 -8
- package/views/3d/webgl.d.ts +6 -0
- package/views/BreakpointsOwner.d.ts +16 -16
- package/views/IBreakpointsOwner.d.ts +15 -15
- package/views/MapView.d.ts +1 -1
- package/views/PopupView.d.ts +2 -2
- package/views/SelectionManager.d.ts +1 -0
- package/views/SelectionManager.js +1 -1
- package/views/VideoView.js +1 -1
- package/views/View.d.ts +6 -8
- package/views/analysis/AreaMeasurement/types.d.ts +6 -0
- package/views/analysis/DistanceMeasurement/types.d.ts +5 -0
- package/views/analysis/ElevationProfile/ElevationProfileError.d.ts +4 -4
- package/views/analysis/ElevationProfile/types.d.ts +6 -0
- package/views/analysis/types.d.ts +5 -0
- package/views/interactive/editGeometry/support/editPlaneUtils.js +1 -1
- package/views/interactive/snapping/GridSnappingEngine.js +1 -1
- package/views/layers/BuildingSceneLayerView.d.ts +1 -1
- package/views/layers/LayerView.d.ts +1 -1
- package/views/support/colorUtils.d.ts +5 -0
- package/views/support/selectionUtils.js +1 -1
- package/webscene/types.d.ts +5 -0
- package/widgets/FeatureForm/FeatureFormViewModel.d.ts +2 -2
- package/widgets/FeatureTable/FeatureTableViewModel.js +1 -1
- package/widgets/Features/FeaturesViewModel.d.ts +1 -1
- package/widgets/Home/HomeViewModel.d.ts +1 -1
- package/widgets/Locate/LocateViewModel.d.ts +2 -2
- package/widgets/Search/types.d.ts +5 -0
- package/widgets/TimeSlider/TimeSliderViewModel.d.ts +1 -1
- package/widgets/UtilityNetworkValidateTopology.js +1 -1
- package/widgets/smartMapping/support/utils.d.ts +6 -0
- package/widgets/support/SelectionList/FeatureItem.js +1 -1
- package/widgets/support/SelectionList/LayerItem.js +1 -1
- package/widgets/support/SelectionList/SelectionListViewModel.js +1 -1
- package/widgets/support/SelectionList.js +1 -1
- package/widgets/support/Selector2D/selectorUtils.js +1 -1
- package/widgets/support/symbolPreviewUtils.js +1 -1
- package/widgets/support/widget.d.ts +11 -0
- package/assets/esri/core/workers/chunks/0d1e8d5d9abee38e275e.js +0 -316
- package/assets/esri/core/workers/chunks/73c3ee2697265b0f7208.js +0 -1
- package/assets/esri/core/workers/chunks/cd2ea924cb91cdb6dde9.js +0 -1
- package/assets/esri/core/workers/chunks/d57577c02fb2932e8305.js +0 -1
- package/colorUtils.d.ts +0 -13
- package/core/Logger.d.ts +0 -29
- package/core/Message.d.ts +0 -2
- package/core/Message.js +0 -5
- package/core/accessorSupport/PropertyOrigin.d.ts +0 -2
- package/core/sql/sql92grammar.d.ts +0 -12
- package/core/string.d.ts +0 -3
- package/core/time.d.ts +0 -2
- package/core/timeUtils.d.ts +0 -2
package/popup/content.d.ts
CHANGED
|
@@ -1,3 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A convenience module for importing [Content](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-Content.html) classes when developing
|
|
3
|
+
* with [TypeScript](https://developers.arcgis.com/javascript/latest/get-started/#typescript).
|
|
4
|
+
* For example, rather than importing content elements one at a time like this:
|
|
5
|
+
*
|
|
6
|
+
* ```js
|
|
7
|
+
* import TextContent from "@arcgis/core/popup/content/TextContent.js";
|
|
8
|
+
* import MediaContent from "@arcgis/core/popup/content/MediaContent.js";
|
|
9
|
+
* import FieldsContent from "@arcgis/core/popup/content/FieldsContent.js";
|
|
10
|
+
* import AttachmentsContent from "@arcgis/core/popup/content/AttachmentsContent.js";
|
|
11
|
+
* import CustomContent from "@arcgis/core/popup/content/CustomContent.js";
|
|
12
|
+
* import ExpressionContent from "@arcgis/core/popup/content/ExpressionContent.js";
|
|
13
|
+
* import RelationshipContent from "@arcgis/core/popup/content/RelationshipContent.js";
|
|
14
|
+
* ```
|
|
15
|
+
*
|
|
16
|
+
* You can use this module to import them on a single line:
|
|
17
|
+
*
|
|
18
|
+
* ```js
|
|
19
|
+
* import { TextContent, MediaContent, FieldsContent, AttachmentsContent, CustomContent, ExpressionContent, RelationshipContent } from "@arcgis/core/popup/content.js";
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* This module also allows you to implement [type guards](https://basarat.gitbook.io/typescript/type-system/typeguard)
|
|
23
|
+
* on the content elements, making your code smarter.
|
|
24
|
+
*
|
|
25
|
+
* ```js
|
|
26
|
+
* import { Content } from "@arcgis/core/popup/content.js";
|
|
27
|
+
*
|
|
28
|
+
* function logContentElement(content: Content): void {
|
|
29
|
+
* if (content.type === "media") {
|
|
30
|
+
* console.log("Content type is media");
|
|
31
|
+
* }
|
|
32
|
+
* else {
|
|
33
|
+
* // The compiler knows the content element must be `text | fields | media | attachment | custom`
|
|
34
|
+
* console.log("The value is not a valid popup content element.")
|
|
35
|
+
* }
|
|
36
|
+
* }
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* @since 4.11
|
|
40
|
+
* @see [PopupTemplate](https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html)
|
|
41
|
+
* @see [TextContent](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-TextContent.html)
|
|
42
|
+
* @see [MediaContent](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-MediaContent.html)
|
|
43
|
+
* @see [FieldsContent](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-FieldsContent.html)
|
|
44
|
+
* @see [AttachmentsContent](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-AttachmentsContent.html)
|
|
45
|
+
* @see [CustomContent](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-CustomContent.html)
|
|
46
|
+
* @see [ExpressionContent](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-ExpressionContent.html)
|
|
47
|
+
* @see [RelationshipContent](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-RelationshipContent.html)
|
|
48
|
+
*/
|
|
1
49
|
import type AttachmentsContentClass from "./content/AttachmentsContent.js";
|
|
2
50
|
import type CustomContentClass from "./content/CustomContent.js";
|
|
3
51
|
import type ExpressionContentClass from "./content/ExpressionContent.js";
|
package/rasterRenderers.d.ts
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A convenience module for importing renderer classes that can be used to render
|
|
3
|
+
* [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html) when developing with
|
|
4
|
+
* [TypeScript](https://developers.arcgis.com/javascript/latest/get-started/#typescript).
|
|
5
|
+
* For example, rather than importing renderers one at a time like this:
|
|
6
|
+
*
|
|
7
|
+
* ```js
|
|
8
|
+
* import FlowRenderer from "@arcgis/core/renderers/FlowRenderer.js";
|
|
9
|
+
* import ClassBreaksRenderer from "@arcgis/core/renderers/ClassBreaksRenderer.js";
|
|
10
|
+
* import UniqueValueRenderer from "@arcgis/core/renderers/UniqueValueRenderer.js";
|
|
11
|
+
* import RasterStretchRenderer from "@arcgis/core/renderers/RasterStretchRenderer.js";
|
|
12
|
+
* import RasterColormapRenderer from "@arcgis/core/renderers/RasterColormapRenderer.js";
|
|
13
|
+
* import RasterShadedReliefRenderer from "@arcgis/core/renderers/RasterShadedReliefRenderer.js";
|
|
14
|
+
* import VectorFieldRenderer from "@arcgis/core/renderers/VectorFieldRenderer.js";
|
|
15
|
+
* ```
|
|
16
|
+
*
|
|
17
|
+
* You can use this module to import them on a single line:
|
|
18
|
+
*
|
|
19
|
+
* ```js
|
|
20
|
+
* import { FlowRenderer, ClassBreaksRenderer, UniqueValueRenderer, RasterColormapRenderer, RasterStretchRenderer, RasterShadedReliefRenderer, VectorFieldRenderer } from "@arcgis/core/rasterRenderers.js";
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* This module also allows you to implement [type guards](https://basarat.gitbook.io/typescript/type-system/typeguard)
|
|
24
|
+
* on renderers, making your code smarter.
|
|
25
|
+
*
|
|
26
|
+
* ```js
|
|
27
|
+
* import { Renderer } from "@arcgis/core/rasterRenderers.js";
|
|
28
|
+
*
|
|
29
|
+
* function logRenderer(renderer: RasterStretchRenderer): void {
|
|
30
|
+
* if (renderer.type == "raster-stretch") {
|
|
31
|
+
* // the compiler knows the renderer must be a RasterStretchRenderer
|
|
32
|
+
* console.log("renderer color ramp: ", renderer.colorRamp);
|
|
33
|
+
* }
|
|
34
|
+
* }
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* @deprecated since version 4.32. Use [unionTypes](https://developers.arcgis.com/javascript/latest/api-reference/esri-unionTypes.html) to import union types, or individual modules to import classes.
|
|
38
|
+
* @since 4.13
|
|
39
|
+
* @see [FlowRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-FlowRenderer.html)
|
|
40
|
+
* @see [ClassBreaksRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-ClassBreaksRenderer.html)
|
|
41
|
+
* @see [UniqueValueRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-UniqueValueRenderer.html)
|
|
42
|
+
* @see [RasterColormapRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterColormapRenderer.html)
|
|
43
|
+
* @see [RasterStretchRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.html)
|
|
44
|
+
* @see [RasterShadedReliefRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterShadedReliefRenderer.html)
|
|
45
|
+
* @see [VectorFieldRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-VectorFieldRenderer.html)
|
|
46
|
+
*/
|
|
1
47
|
import type ClassBreaksRendererClass from "./renderers/ClassBreaksRenderer.js";
|
|
2
48
|
import type FlowRendererClass from "./renderers/FlowRenderer.js";
|
|
3
49
|
import type RasterColormapRendererClass from "./renderers/RasterColormapRenderer.js";
|
|
@@ -57,7 +57,7 @@ export default class AuthoringInfo extends JSONSupport {
|
|
|
57
57
|
* @see [colorRendererCreator.createClassBreaksRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-color.html#createClassBreaksRenderer)
|
|
58
58
|
* @see [sizeRendererCreator.createClassBreaksRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-size.html#createClassBreaksRenderer)
|
|
59
59
|
*/
|
|
60
|
-
accessor classificationMethod: AuthoringInfoClassificationMethods | null;
|
|
60
|
+
accessor classificationMethod: AuthoringInfoClassificationMethods | null | undefined;
|
|
61
61
|
/** Indicates the color ramp was used to create the symbols for Unique Value or Class Breaks renderer for Imagery Layer. */
|
|
62
62
|
get colorRamp(): ColorRamp | null | undefined;
|
|
63
63
|
set colorRamp(value: ColorRampProperties | null | undefined);
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Provides a utility method used to deserialize a JSON renderer object returned by the REST API.
|
|
3
|
+
*
|
|
4
|
+
* @since 4.0
|
|
5
|
+
* @see [Renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-Renderer.html)
|
|
6
|
+
* @see [Using fromJSON() to create a class instance](https://developers.arcgis.com/javascript/latest/using-fromjson)
|
|
7
|
+
*/
|
|
1
8
|
import type { RendererUnion } from "./typeUtils.js";
|
|
2
9
|
|
|
3
10
|
/**
|
|
@@ -252,7 +252,6 @@ export default class SizeVariable extends VisualVariable {
|
|
|
252
252
|
* all | Applies the size visual variable to all axes.
|
|
253
253
|
*
|
|
254
254
|
* @default "all"
|
|
255
|
-
* @see {@link renderers/visualVariables/SizeVariable#RealWorldSize}
|
|
256
255
|
*/
|
|
257
256
|
accessor axis: SizeVariableAxis;
|
|
258
257
|
/**
|
|
@@ -360,8 +359,6 @@ export default class SizeVariable extends VisualVariable {
|
|
|
360
359
|
* >
|
|
361
360
|
* > * This property is not supported for flat (2D) line symbols driven by real world sizes in 3D [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html)s.
|
|
362
361
|
* > * Data values must refer to the planar size of the feature in the units of the view's spatial reference.
|
|
363
|
-
*
|
|
364
|
-
* @see {@link renderers/visualVariables/SizeVariable#RealWorldSize}
|
|
365
362
|
*/
|
|
366
363
|
accessor valueUnit: SizeVariableUnit;
|
|
367
364
|
/**
|
|
@@ -44,7 +44,7 @@ export default abstract class VisualVariable extends JSONSupport {
|
|
|
44
44
|
* defined by the [Arcade Visualization Profile](https://developers.arcgis.com/javascript/latest/arcade/#visualization). Expressions
|
|
45
45
|
* in visual variables may reference field values using the `$feature` profile variable and must return a number.
|
|
46
46
|
*
|
|
47
|
-
* The values returned from this expression are the data used to drive the visualization as defined in the
|
|
47
|
+
* The values returned from this expression are the data used to drive the visualization as defined in the stops.
|
|
48
48
|
* This takes precedence over [field](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-visualVariables-VisualVariable.html#field).
|
|
49
49
|
* Therefore, this property is typically used as an alternative to [field](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-visualVariables-VisualVariable.html#field) in visual variables.
|
|
50
50
|
*
|
|
@@ -9,7 +9,7 @@ export default abstract class VisualVariableLegendOptions extends VisualVariable
|
|
|
9
9
|
/**
|
|
10
10
|
* The title describing the visualization of
|
|
11
11
|
* the visual variable in the [Legend](https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-legend/). This takes precedence over
|
|
12
|
-
* a field alias or
|
|
12
|
+
* a field alias or [VisualVariable#valueExpressionTitle](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-visualVariables-VisualVariable.html#valueExpressionTitle).
|
|
13
13
|
*/
|
|
14
14
|
accessor title: string | null | undefined;
|
|
15
15
|
}
|
package/renderers.d.ts
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A convenience module for importing [Renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-Renderer.html) classes when developing with
|
|
3
|
+
* [TypeScript](https://developers.arcgis.com/javascript/latest/get-started/#typescript).
|
|
4
|
+
* For example, rather than importing renderers one at a time like this:
|
|
5
|
+
*
|
|
6
|
+
* ```js
|
|
7
|
+
* import ClassBreaksRenderer from "@arcgis/core/renderers/ClassBreaksRenderer.js";
|
|
8
|
+
* import HeatmapRenderer from "@arcgis/core/renderers/HeatmapRenderer.js";
|
|
9
|
+
* import SimpleRenderer from "@arcgis/core/renderers/SimpleRenderer.js";
|
|
10
|
+
* import UniqueValueRenderer from "@arcgis/core/renderers/UniqueValueRenderer.js";
|
|
11
|
+
* import DictionaryRenderer from "@arcgis/core/renderers/DictionaryRenderer.js";
|
|
12
|
+
* ```
|
|
13
|
+
*
|
|
14
|
+
* You can use this module to import them on a single line:
|
|
15
|
+
*
|
|
16
|
+
* ```js
|
|
17
|
+
* import { ClassBreaksRenderer, HeatmapRenderer, SimpleRenderer, UniqueValueRenderer } from "@arcgis/core/renderers.js";
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* This module also allows you to implement [type guards](https://basarat.gitbook.io/typescript/type-system/typeguard)
|
|
21
|
+
* on renderers, making your code smarter.
|
|
22
|
+
*
|
|
23
|
+
* ```js
|
|
24
|
+
* import { Renderer } from "@arcgis/core/renderers.js";
|
|
25
|
+
*
|
|
26
|
+
* function logRenderer(renderer: Renderer): void {
|
|
27
|
+
* if (renderer.type === "simple") {
|
|
28
|
+
* // new at 4.8, the compiler knows the renderer is a SimpleRenderer
|
|
29
|
+
* console.log("renderer symbol: ", renderer.symbol);
|
|
30
|
+
* }
|
|
31
|
+
* else {
|
|
32
|
+
* if (renderer.type !== "heatmap") {
|
|
33
|
+
* // the compiler knows the renderer must be a `ClassBreaksRenderer | UniqueValueRenderer`
|
|
34
|
+
* console.log("renderer background symbol: ", renderer.backgroundFillSymbol);
|
|
35
|
+
* }
|
|
36
|
+
* }
|
|
37
|
+
* }
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* @deprecated since version 4.32. Use [unionTypes](https://developers.arcgis.com/javascript/latest/api-reference/esri-unionTypes.html) to import union types, or individual modules to import classes.
|
|
41
|
+
* @since 4.8
|
|
42
|
+
* @see [ClassBreaksRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-ClassBreaksRenderer.html)
|
|
43
|
+
* @see [HeatmapRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-HeatmapRenderer.html)
|
|
44
|
+
* @see [SimpleRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-SimpleRenderer.html)
|
|
45
|
+
* @see [UniqueValueRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-UniqueValueRenderer.html)
|
|
46
|
+
*/
|
|
1
47
|
import type ClassBreaksRendererClass from "./renderers/ClassBreaksRenderer.js";
|
|
2
48
|
import type DictionaryRendererClass from "./renderers/DictionaryRenderer.js";
|
|
3
49
|
import type DotDensityRendererClass from "./renderers/DotDensityRenderer.js";
|
package/request.d.ts
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Retrieves data from a remote server or uploads a file.
|
|
3
|
+
*
|
|
4
|
+
* @since 4.0
|
|
5
|
+
* @see [Sample - Request data from a remote server](https://developers.arcgis.com/javascript/latest/sample-code/request/)
|
|
6
|
+
* @see [Sample - Search component with custom source](https://developers.arcgis.com/javascript/latest/sample-code/search-component-customsource/)
|
|
7
|
+
* @example
|
|
8
|
+
* // request GeoJson data from USGS remote server
|
|
9
|
+
* let url = "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_hour.geojson";
|
|
10
|
+
*
|
|
11
|
+
* esriRequest(url, {
|
|
12
|
+
* responseType: "json"
|
|
13
|
+
* }).then((response) => {
|
|
14
|
+
* // The requested data
|
|
15
|
+
* let geoJson = response.data;
|
|
16
|
+
* });
|
|
17
|
+
*/
|
|
1
18
|
import type { RequestOptions, RequestResponse } from "./request/types.js";
|
|
2
19
|
|
|
3
20
|
/**
|
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Helps you find closest facilities around any location (incident) on a network.
|
|
3
|
+
*
|
|
4
|
+
* When finding closest facilities, you can specify various [parameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilityParameters.html)
|
|
5
|
+
* including how many to facilities to find and whether the direction of
|
|
6
|
+
* travel is toward or away from them. Once you've found the closest facilities, you can display
|
|
7
|
+
* the best route to or from them, return the travel cost for each route, and display directions
|
|
8
|
+
* to each facility using the [ClosestFacilitySolveResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilitySolveResult.html).
|
|
9
|
+
*
|
|
10
|
+
* You can also specify a cutoff cost beyond which ArcGIS Network Analyst should not search for a
|
|
11
|
+
* facility. For instance, you can set up a closest facility problem to search for hospitals
|
|
12
|
+
* within a 15-minute drive time of the site of an accident. Any hospitals that take longer than
|
|
13
|
+
* 15 minutes to reach will not be included in the results.
|
|
14
|
+
*
|
|
15
|
+
* Parameters must be defined using [ClosestFacilityParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilityParameters.html)
|
|
16
|
+
* and input to the [solve()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-closestFacility.html#solve) method.
|
|
17
|
+
*
|
|
18
|
+
* @since 4.19
|
|
19
|
+
* @see [ClosestFacilityParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilityParameters.html)
|
|
20
|
+
* @see [ClosestFacilitySolveResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilitySolveResult.html)
|
|
21
|
+
*/
|
|
1
22
|
import type ClosestFacilityParameters from "./support/ClosestFacilityParameters.js";
|
|
2
23
|
import type ClosestFacilitySolveResult from "./support/ClosestFacilitySolveResult.js";
|
|
3
24
|
import type { RequestOptions } from "../request/types.js";
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Provides utility methods for creating [FeatureServices](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-featureService-FeatureService.html).
|
|
3
|
+
*
|
|
4
|
+
* @since 4.28
|
|
5
|
+
*/
|
|
1
6
|
import type FeatureLayer from "../../layers/FeatureLayer.js";
|
|
2
7
|
import type GroupLayer from "../../layers/GroupLayer.js";
|
|
3
8
|
import type SubtypeGroupLayer from "../../layers/SubtypeGroupLayer.js";
|
package/rest/find.d.ts
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Search a map service exposed by the ArcGIS Server REST API based on a string value. The search
|
|
3
|
+
* can be conducted on a single field of a single layer, on many fields of a layer, or on many
|
|
4
|
+
* fields of many layers.
|
|
5
|
+
*
|
|
6
|
+
* Use [FindParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FindParameters.html) to set the parameters of the method.
|
|
7
|
+
* The result will be an instance of [FindResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FindResult.html).
|
|
8
|
+
*
|
|
9
|
+
* > [!WARNING]
|
|
10
|
+
* >
|
|
11
|
+
* > **Known Limitations**
|
|
12
|
+
* >
|
|
13
|
+
* > The find operation is currently not supported if attempting to be used:
|
|
14
|
+
* > in a 3D [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html)
|
|
15
|
+
* > with [dynamic layers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-MapImageLayer.html#dynamic-layers)
|
|
16
|
+
*
|
|
17
|
+
* @since 4.19
|
|
18
|
+
* @see [FindParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FindParameters.html)
|
|
19
|
+
* @see [FindResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FindResult.html)
|
|
20
|
+
* @see [Sample - Find](https://developers.arcgis.com/javascript/latest/sample-code/find/)
|
|
21
|
+
*/
|
|
1
22
|
import type FindParameters from "./support/FindParameters.js";
|
|
2
23
|
import type FindResult from "./support/FindResult.js";
|
|
3
24
|
import type { RequestOptions } from "../request/types.js";
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Represents geometry service resources exposed by the ArcGIS REST API. It is used to
|
|
3
|
+
* perform various operations on geometries such as project, simplify, buffer, and relationships.
|
|
4
|
+
*
|
|
5
|
+
* View the [About the geometry service](https://enterprise.arcgis.com/en/server/latest/publish-services/windows/about-the-geometry-service.htm)
|
|
6
|
+
* help topic for details. Esri hosts
|
|
7
|
+
* a geometry service on [sampleserver6.arcgisonline.com](https://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/Geometry/GeometryServer)
|
|
8
|
+
* to support samples. However, we do not guarantee that the service will be available 24/7.
|
|
9
|
+
*
|
|
10
|
+
* Many of the functions in geometryService are available for use client-side using geometry operators.
|
|
11
|
+
* See the [Introduction to geometry operators](https://developers.arcgis.com/javascript/latest/spatial-analysis/intro-geometry-operators/) guide topic for more details.
|
|
12
|
+
*
|
|
13
|
+
* @since 4.19
|
|
14
|
+
*/
|
|
1
15
|
import type Point from "../geometry/Point.js";
|
|
2
16
|
import type Polygon from "../geometry/Polygon.js";
|
|
3
17
|
import type Polyline from "../geometry/Polyline.js";
|
package/rest/geoprocessor.d.ts
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Represents a GP resource exposed by the ArcGIS REST API. A GP resource represents a
|
|
3
|
+
* single task in a GP service published using the ArcGIS Server and it supports one of the
|
|
4
|
+
* following operations dependent on how the service was set up:
|
|
5
|
+
* * [execute()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-geoprocessor.html#execute) - for when the execution type is synchronous.
|
|
6
|
+
* * [submitJob()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-geoprocessor.html#submitJob) - for when the execution type is asynchronous.
|
|
7
|
+
*
|
|
8
|
+
* If `processExtent` is not set then `execute` and `submitJob` will format web requests compatible
|
|
9
|
+
* with ArcGIS version prior to 10.6.1.
|
|
10
|
+
*
|
|
11
|
+
* @since 4.19
|
|
12
|
+
* @see [GPMessage](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-GPMessage.html)
|
|
13
|
+
* @see [ParameterValue](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ParameterValue.html)
|
|
14
|
+
* @see [JobInfo](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-JobInfo.html)
|
|
15
|
+
* @see [Sample - Calculate Viewshed](https://developers.arcgis.com/javascript/latest/sample-code/geoprocessing-viewshed/)
|
|
16
|
+
*/
|
|
1
17
|
import type GPOptions from "./geoprocessor/GPOptions.js";
|
|
2
18
|
import type JobInfo from "./support/JobInfo.js";
|
|
3
19
|
import type { RequestOptions } from "../request/types.js";
|
package/rest/identify.d.ts
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Performs an identify operation on the layers of a map service exposed by the ArcGIS
|
|
3
|
+
* Server REST API. Use [IdentifyParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-IdentifyParameters.html) to set the parameters
|
|
4
|
+
* for the identify operation and [IdentifyResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-IdentifyResult.html) to work with
|
|
5
|
+
* the results.
|
|
6
|
+
*
|
|
7
|
+
* > [!WARNING]
|
|
8
|
+
* >
|
|
9
|
+
* > **Known Limitations**
|
|
10
|
+
* >
|
|
11
|
+
* > The identify operation is currently not supported if attempting to be used
|
|
12
|
+
* > in a 3D [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html)
|
|
13
|
+
*
|
|
14
|
+
* @since 4.19
|
|
15
|
+
* @see [IdentifyParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-IdentifyParameters.html)
|
|
16
|
+
* @see [IdentifyResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-IdentifyResult.html)
|
|
17
|
+
* @see [Identify - ArcGIS Server REST API](https://developers.arcgis.com/rest/services-reference/identify-map-service-.htm)
|
|
18
|
+
* @see [Sample - Identify](https://developers.arcgis.com/javascript/latest/sample-code/identify/)
|
|
19
|
+
*/
|
|
1
20
|
import type IdentifyParameters from "./support/IdentifyParameters.js";
|
|
2
21
|
import type IdentifyResult from "./support/IdentifyResult.js";
|
|
3
22
|
import type { RequestOptions } from "../request/types.js";
|
package/rest/imageService.d.ts
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Performs various operations on an image service resource:
|
|
3
|
+
*
|
|
4
|
+
* Identify the content of an image service for the input location and mosaic rule.
|
|
5
|
+
* Compute histograms based on the provided [ImageHistogramParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHistogramParameters.html).
|
|
6
|
+
* Compute [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-types.html#RasterBandStatistics) and [histograms](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-types.html#RasterHistogram)
|
|
7
|
+
* for the provided [ImageHistogramParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHistogramParameters.html).
|
|
8
|
+
*
|
|
9
|
+
* @since 4.19
|
|
10
|
+
*/
|
|
1
11
|
import type FindImagesParameters from "./support/FindImagesParameters.js";
|
|
2
12
|
import type FindImagesResult from "./support/FindImagesResult.js";
|
|
3
13
|
import type ImageAngleParameters from "./support/ImageAngleParameters.js";
|
|
@@ -1,3 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A knowledge graph service is associated with several resources. One resource is a [knowledge graph](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-KnowledgeGraph.html),
|
|
3
|
+
* which contains [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) and [relationships](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Relationship.html).
|
|
4
|
+
* Another resource is the [data model](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-DataModel.html) that defines the {@link rest/knowledgeGraph/EntityTypes entity types}
|
|
5
|
+
* and {@link rest/knowledgeGraph/RelationshipTypes relationship types} in the graph.
|
|
6
|
+
* A third resource is the [service definition](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-ServiceDefinition.html) which outlines the capabilities of the service.
|
|
7
|
+
* A knowledge graph service allows users to query both the [knowledge graph](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-KnowledgeGraph.html)
|
|
8
|
+
* and the [data model](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-DataModel.html). Entities and relationships can be added, updated or deleted from the knowledge graph
|
|
9
|
+
* using [executeApplyEdits()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html#executeApplyEdits). To visualize knowledge graph data on map, see [knowledge graph layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html).
|
|
10
|
+
*
|
|
11
|
+
* > [!WARNING]
|
|
12
|
+
* >
|
|
13
|
+
* > **Known Limitations**
|
|
14
|
+
* >
|
|
15
|
+
* > KnowledgeGraphService capabilities in version 4.26 of the SDK for Javascript are only supported against ArcGIS Enterprise version 11.1 and later.
|
|
16
|
+
* > KnowledgeGraphService capabilities in version 4.25 of the SDK for Javascript are supported on ArcGIS Enterprise version 11.0 and earlier.
|
|
17
|
+
*
|
|
18
|
+
* @since 4.25
|
|
19
|
+
* @see [Sample - Search a knowledge graph](https://developers.arcgis.com/javascript/latest/sample-code/knowledgegraph-search/)
|
|
20
|
+
* @see [Sample - Query a knowledge graph](https://developers.arcgis.com/javascript/latest/sample-code/knowledgegraph-query/)
|
|
21
|
+
* @see [Sample - Edit knowledge graph data](https://developers.arcgis.com/javascript/latest/sample-code/knowledgegraph-applyedits/)
|
|
22
|
+
* @see [Sample - Work with KnowledgeGraphLayer](https://developers.arcgis.com/javascript/latest/sample-code/knowledgegraph-knowledgegraphlayer/)
|
|
23
|
+
* @see [KnowledgeGraphLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html) for details on visualizing knowledge graph data.
|
|
24
|
+
* @see [Get started with ArcGIS Knowledge Server](https://enterprise.arcgis.com/en/knowledge/latest/introduction/get-started-with-arcgis-knowledge.htm) for overview of ArcGIS Knowledge for ArcGIS Enterprise
|
|
25
|
+
* @see [Hosted Knowledge Graph Service](https://developers.arcgis.com/rest/services-reference/enterprise/kgs-hosted-server.htm) for information on managing knowledge graph services via ArcGIS Enterprise and the REST API
|
|
26
|
+
* @see [Get started with ArcGIS Knowledge (ArcGIS Pro)](https://pro.arcgis.com/en/pro-app/latest/help/data/knowledge/get-started-with-arcgis-knowledge.htm) for information on ArcGIS Knowledge in ArcGIS Pro
|
|
27
|
+
* @example
|
|
28
|
+
* const knowledgeGraphModule = await $arcgis.import("@arcgis/core/rest/knowledgeGraphService.js");
|
|
29
|
+
* let knowledgeGraph;
|
|
30
|
+
* // define url to knowledge graph service
|
|
31
|
+
* const url = "https://myHostName.domain.com/server/rest/services/Hosted/myServiceName/KnowledgeGraphServer";
|
|
32
|
+
* // fetch knowledge graph
|
|
33
|
+
* KnowledgeGraphModule.fetchKnowledgeGraph(url)
|
|
34
|
+
* .then((kg) => {
|
|
35
|
+
* // do something with result
|
|
36
|
+
* knowledgeGraph = kg;
|
|
37
|
+
* console.log(knowledgeGraph);
|
|
38
|
+
* });
|
|
39
|
+
*/
|
|
1
40
|
import type CodedValueDomain from "../layers/support/CodedValueDomain.js";
|
|
2
41
|
import type RangeDomain from "../layers/support/RangeDomain.js";
|
|
3
42
|
import type EntityType from "./knowledgeGraph/EntityType.js";
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Last Mile Delivery is a type of [Vehicle Routing Problem](https://developers.arcgis.com/documentation/mapping-and-location-services/routing-and-directions/vehicle-routing-problem/)
|
|
3
|
+
* operation that can find the most optimized routes for a fleet of vehicles that need
|
|
4
|
+
* to make deliveries. It is specifically tailored to the unique challenges of final
|
|
5
|
+
* deliveries, focusing on efficiency in dense urban environments. It produces
|
|
6
|
+
* geographically clustered routes so drivers can easily visit each location, which
|
|
7
|
+
* minimizes the operating cost for the fleet of vehicles.
|
|
8
|
+
*
|
|
9
|
+
* @since 4.34
|
|
10
|
+
* @see [LastMileDeliveryParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-LastMileDeliveryParameters.html)
|
|
11
|
+
* @see [Solve Last Mile Delivery - ArcGIS Server REST API](https://developers.arcgis.com/rest/routing/last-mile-delivery-service/)
|
|
12
|
+
*/
|
|
1
13
|
import type GPOptions from "./geoprocessor/GPOptions.js";
|
|
2
14
|
import type FeatureSet from "./support/FeatureSet.js";
|
|
3
15
|
import type JobInfo from "./support/JobInfo.js";
|
package/rest/locator.d.ts
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A convenience module for importing [locator](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-locator.html) functions when developing with
|
|
3
|
+
* [TypeScript](https://developers.arcgis.com/javascript/latest/get-started/#typescript).
|
|
4
|
+
* For example, rather than importing functions one at a time like this:
|
|
5
|
+
*
|
|
6
|
+
* ```js
|
|
7
|
+
* import { addressToLocations } from "@arcgis/core/rest/locator/addressToLocations.js";
|
|
8
|
+
* import { locationToAddress } from "@arcgis/core/rest/locator/locationToAddress.js";
|
|
9
|
+
* ```
|
|
10
|
+
*
|
|
11
|
+
* You can use this module to import them on a single line:
|
|
12
|
+
*
|
|
13
|
+
* ```js
|
|
14
|
+
* import { addressToLocations, locationToAddress } from "@arcgis/core/rest/locator.js";
|
|
15
|
+
* ```
|
|
16
|
+
*
|
|
17
|
+
* Represents a geocode service resource exposed by the ArcGIS Server REST API. It is used to
|
|
18
|
+
* generate candidates for an address. It is also used to generate batch results for a set of addresses.
|
|
19
|
+
*
|
|
20
|
+
* Set the URL to the ArcGIS Server REST resource that represents a Locator service, for example: `https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer`.
|
|
21
|
+
*
|
|
22
|
+
* @since 4.19
|
|
23
|
+
* @see [World Geocoding Service](https://developers.arcgis.com/rest/geocode/api-reference/overview-world-geocoding-service.htm)
|
|
24
|
+
*/
|
|
1
25
|
import type AddressCandidate from "./support/AddressCandidate.js";
|
|
2
26
|
import type SuggestionCandidate from "./support/SuggestionCandidate.js";
|
|
3
27
|
import type { RequestOptions } from "../request/types.js";
|
package/rest/networkService.d.ts
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The utility network associations model connectivity, containment, and structure relations between assets.
|
|
3
|
+
* This function queries the associations table and return associations for network features in a utility network.
|
|
4
|
+
*
|
|
5
|
+
* @since 4.24
|
|
6
|
+
* @see [Utility Network Associations](https://pro.arcgis.com/en/pro-app/latest/help/data/utility-network/associations.htm)
|
|
7
|
+
*/
|
|
1
8
|
import type QueryAssociationsParameters from "./support/QueryAssociationsParameters.js";
|
|
2
9
|
import type QueryAssociationsResult from "./support/QueryAssociationsResult.js";
|
|
3
10
|
import type { RequestOptions } from "../../request/types.js";
|
|
@@ -15,7 +15,7 @@ export interface NetworkElementProperties extends JSONSupportMixinProperties, Pa
|
|
|
15
15
|
*
|
|
16
16
|
* X1 X2
|
|
17
17
|
* ```
|
|
18
|
-
* It is worth mentioning that elements in the network topology also have an elementId which is purely internal to the network and not exposed externally. Those elementIds are then converted to matching
|
|
18
|
+
* It is worth mentioning that elements in the network topology also have an elementId which is purely internal to the network and not exposed externally. Those elementIds are then converted to matching [objectId](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-networks-support-NetworkElement.html#objectId)/[globalId](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-networks-support-NetworkElement.html#globalId)`.
|
|
19
19
|
*
|
|
20
20
|
* @since 4.20
|
|
21
21
|
* @see [trace](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-networks-trace.html)
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The utility network associations model connectivity, containment, and structure relations between assets.
|
|
3
|
+
* Associations do not have a spatial presence, so this function synthesizes the associations by providing an extent, and returning all associations within the extent.
|
|
4
|
+
*
|
|
5
|
+
* @since 4.20
|
|
6
|
+
* @see [Utility Network Associations](https://pro.arcgis.com/en/pro-app/latest/help/data/utility-network/associations.htm)
|
|
7
|
+
*/
|
|
1
8
|
import type AssociationGeometriesResult from "./support/AssociationGeometriesResult.js";
|
|
2
9
|
import type SynthesizeAssociationGeometriesParameters from "./support/SynthesizeAssociationGeometriesParameters.js";
|
|
3
10
|
import type { RequestOptions } from "../../request/types.js";
|
package/rest/networks/trace.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Trace is the core analytic of the utility network, by providing a set of parameters, you can start the trace in one or more features and traverse the network topology satisfying the parameters until the trace stops at end points or when the definition of the trace condition barriers are met. The trace returns a collection of elements and their source, function results, diagram or aggregated geometries.
|
|
3
|
+
*
|
|
4
|
+
* @since 4.20
|
|
5
|
+
* @see [Learn more about tracing](https://pro.arcgis.com/en/pro-app/2.7/help/data/utility-network/about-tracing-utility-networks.htm)
|
|
6
|
+
*/
|
|
1
7
|
import type TraceParameters from "./support/TraceParameters.js";
|
|
2
8
|
import type TraceResult from "./support/TraceResult.js";
|
|
3
9
|
import type { RequestOptions } from "../../request/types.js";
|
package/rest/places.d.ts
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* > [!WARNING]
|
|
3
|
+
* >
|
|
4
|
+
* > **Note:** Effective February 20, 2025, Esri made changes to our global places data. As a result, the Places service will have new category IDs. Old category IDs will remain functional until March 22, 2025. We encourage you to transition to the new category IDs as soon as possible. For more information, see the [Places category finder](https://developers.arcgis.com/documentation/mapping-and-location-services/place-finding/places-category-finder/).
|
|
5
|
+
*
|
|
6
|
+
* Find [places](https://developers.arcgis.com/documentation/mapping-apis-and-services/places/) within a search distance of a geographic point or within an extent,
|
|
7
|
+
* or find more information about specific places.
|
|
8
|
+
* Places, also known as points of interest (POIs), are businesses and geographic locations that one can discover around the world.
|
|
9
|
+
* Places also contain attributes such as name, category, street address, contact information, and more.
|
|
10
|
+
*
|
|
11
|
+
* With the [places service](https://developers.arcgis.com/rest/places/) one can build powerful applications to help people discover, locate, and learn more about places
|
|
12
|
+
* around them. The places service can search for businesses, points of interest (POI), and popular geographic features near a
|
|
13
|
+
* location or within a bounding box. This service is currently only available if you have an
|
|
14
|
+
* [ArcGIS Location Platform account](https://location.arcgis.com/).
|
|
15
|
+
*
|
|
16
|
+
* To start, one should identify one or more place categories
|
|
17
|
+
* for the types of places of interest. Categories are used to help filter search results so only the places of interest
|
|
18
|
+
* are returned. All categories have a name and a unique ID. To help find the appropriate category and ID, one can use the [places category finder](https://developers.arcgis.com/documentation/mapping-apis-and-services/places/places-category-finder/) tool.
|
|
19
|
+
*
|
|
20
|
+
* Once categories have been chosen, use the [queryPlacesNearPoint()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-places.html#queryPlacesNearPoint) or
|
|
21
|
+
* [queryPlacesWithinExtent()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-places.html#queryPlacesWithinExtent) method. To filter and return the best results, provide a list of categories
|
|
22
|
+
* and/or keywords when you search. When places are returned, they contain attributes such as name, placeId, location, and categories.
|
|
23
|
+
*
|
|
24
|
+
* @since 4.27
|
|
25
|
+
* @see [Sample - Find nearby places and details](https://developers.arcgis.com/javascript/latest/sample-code/places/)
|
|
26
|
+
* @see [Introduction to places](https://developers.arcgis.com/documentation/mapping-apis-and-services/places/)
|
|
27
|
+
* @see [Places category finder](https://developers.arcgis.com/documentation/mapping-apis-and-services/places/places-category-finder/)
|
|
28
|
+
* @see [Places service](https://developers.arcgis.com/rest/places/)
|
|
29
|
+
* @see [FetchPlaceParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FetchPlaceParameters.html)
|
|
30
|
+
* @see [PlacesParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-PlacesParameters.html)
|
|
31
|
+
* @see [PlacesQueryParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-PlacesQueryParameters.html)
|
|
32
|
+
* @see [PlaceResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-PlaceResult.html)
|
|
33
|
+
* @see [PlacesQueryResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-PlacesQueryResult.html)
|
|
34
|
+
*/
|
|
1
35
|
import type FetchPlaceParameters from "./support/FetchPlaceParameters.js";
|
|
2
36
|
import type PlacesQueryParameters from "./support/PlacesQueryParameters.js";
|
|
3
37
|
import type PlacesQueryResult from "./support/PlacesQueryResult.js";
|