@arcgis/core 5.0.0-next.55 → 5.0.0-next.56
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/vectorTiles/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/rest/print.d.ts
CHANGED
|
@@ -1,3 +1,77 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The print module provides an `executePrint` method that generates a printer-ready version of the map using an
|
|
3
|
+
* [Export Web Map Task](https://developers.arcgis.com/rest/services-reference/export-web-map-task.htm)
|
|
4
|
+
* available with ArGIS Server 10.1 and later. This class is used when you want to have more granular control over the user interface,
|
|
5
|
+
* for example, if you want to provide users the ability to define what appears on the printed page.
|
|
6
|
+
*
|
|
7
|
+
* For more information about printing with the `MAP_ONLY` layout, please see
|
|
8
|
+
* [PrintTemplate#exportOptions](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-PrintTemplate.html#exportOptions).
|
|
9
|
+
*
|
|
10
|
+
* Use [PrintParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-PrintParameters.html) to set the printing options.
|
|
11
|
+
*
|
|
12
|
+
* > [!WARNING]
|
|
13
|
+
* >
|
|
14
|
+
* > **Known Limitations**
|
|
15
|
+
* >
|
|
16
|
+
* > No support
|
|
17
|
+
* >
|
|
18
|
+
* > There is no current support for printing with any Printing Service published with ArcMap.
|
|
19
|
+
* > There is no current support for printing [SceneViews](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html). Instead, see [SceneView#takeScreenshot()](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#takeScreenshot).
|
|
20
|
+
* > There is no current support for printing [ImageryLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html) when a [ImageryLayer#pixelFilter](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#pixelFilter)
|
|
21
|
+
* > is defined.
|
|
22
|
+
* > There is no current support for printing renderers generated from [createContinuousRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-univariateColorSize.html#createContinuousRenderer)
|
|
23
|
+
* > with an above-and-below theme.
|
|
24
|
+
* > There is no current support for printing legend items for layers that are sent as a client-side image in the printout.
|
|
25
|
+
* > There is no current support for printing rotated symbols and labels when the map is rotated, and layers are sent as a client-side image in the printout.
|
|
26
|
+
* > There is no current support for printing features when using a renderer with `above-and-below` theme.
|
|
27
|
+
* > There is no current support for printing [GroupLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GroupLayer.html) with blending or effects. Instead, see [MapView#takeScreenshot()](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#takeScreenshot).
|
|
28
|
+
* > There is no current support for printing [effects](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#effect) when a [FeatureLayer#blendMode](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#blendMode) is applied to a layer.
|
|
29
|
+
* > There is no current support for printing layers with the following [blendModes](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#blendMode):
|
|
30
|
+
* > `"average"`, `"destination-atop"`, `"destination-in"`, `"destination-out"`, `"destination-over"`, `"invert"`, `"lighter"`, `"minus"`, `"plus"`, `"reflect"`, `"source-atop"`, `"source-in"`, `"source-out"`, `"vivid-light"`, `"XOR"`.
|
|
31
|
+
* >
|
|
32
|
+
* > Versioned support
|
|
33
|
+
* >
|
|
34
|
+
* > [Labels](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-LabelClass.html) currently cannot be printed as part of a FeatureLayer with ArcGIS Server 10.5.1.
|
|
35
|
+
* > [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html) cannot be printed with ArcGIS Server 10.5.1 or earlier.
|
|
36
|
+
* > [VectorTileLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VectorTileLayer.html) printing requires ArcGIS Server 10.5.1 or later.
|
|
37
|
+
* > Printing layers rendered with the [DotDensityRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-DotDensityRenderer.html) will create a client-side image of the layer in the printout with ArcGIS Server 10.8.0 or earlier.
|
|
38
|
+
* > Printing layers using [clustering](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#featureReduction) will create a client-side image of the layer in the printout with [GeoJSONLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html) and/or ArcGIS Server 10.9.0 or earlier.
|
|
39
|
+
* > For printing secure VectorTileLayers with ArcGIS Server 10.5.1 or 10.6.0,
|
|
40
|
+
* > or for printing VectorTileLayers with ArcGIS Server 10.5.1,
|
|
41
|
+
* > the [print](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-print.html) will create a client-side image for the VectorTileLayer to use in the printout.
|
|
42
|
+
* > Printing [WFSLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html) will create a client-side image of the layer in the printout with ArcGIS Server 11.4.1 or earlier.
|
|
43
|
+
* > This has some limitations related to large size printing quality and a dependency on browser window height/width ratio.
|
|
44
|
+
* > Printing the drawing order of layers configured with the `orderBy` property is supported with ArcGIS Server 11.5.0 or later.
|
|
45
|
+
* > Printing the background color of a [MapView#background](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#background) or [WebMap](https://developers.arcgis.com/javascript/latest/api-reference/esri-webmap-background-ColorBackground.html) requires ArcGIS Server 10.9.0 or later.
|
|
46
|
+
* > Printing layers with non-standard URLs (e.g. no MapServer, FeatureServer, or ImageServer in the URL) requires ArcGIS Server 10.9.1 or later.
|
|
47
|
+
* > Printing layers with supported [blendModes](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html) requires ArcGIS Server 10.9.1 or later. This is the list of currently supported types:
|
|
48
|
+
* > `"color-burn"`, `"color-dodge"`, `"color"`, `"darken"`, `"difference"`, `"exclusion"`, `"hard-light"`, `"hue"`, `"lighten"`, `"luminosity"`, `"multiply"`, `"normal"`, `"overlay"`, `"saturation"`, `"screen"`, `"soft-light"`.
|
|
49
|
+
* > Printing highlighted features with [SimpleFillSymbol](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html) with {@link layers/FeatureLayer#highlight FeatureLayers} requires ArcGIS Server 11.4.0 or higher.
|
|
50
|
+
* > For printing [CatalogLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html) the catalog footprint is sent as a feature collection if the ArcGIS Server version is less than 11.3.1.
|
|
51
|
+
* > Otherwise, it's sent as a CatalogLayer with the `dynamicGroupLayer` visibility set to `false`. The other layers from the CatalogLayer are sent separately.
|
|
52
|
+
* >
|
|
53
|
+
* > Behavior notes
|
|
54
|
+
* >
|
|
55
|
+
* > Printing layers using [effects](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#effect) will create a client-side image of the layer in the printout.
|
|
56
|
+
* > Printing layers using [binning](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionBinning.html) will create a client-side image of the layer in the printout.
|
|
57
|
+
* > Printing layers using [pie-chart renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-PieChartRenderer.html) will create a client-side image of the layer in the printout.
|
|
58
|
+
* > Printing layers using [TrackInfo](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-TrackInfo.html) and/or [TrackInfo#trackLines](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-TrackInfo.html#trackLines) will create a client-side image of the layer in the printout.
|
|
59
|
+
* > Printing [Multipoint](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Multipoint.html) geometries may result in a different output based on the algorithms used to compute labels on the print server versus that of the ArcGIS Maps SDK for JavaScript.
|
|
60
|
+
* > Printing layers using [highlighted features](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html#highlight) is only supported for [FeatureLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html). For other layer types, see [MapView#takeScreenshot()](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#takeScreenshot).
|
|
61
|
+
* > Printing layers using [spike renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-size.html#updateRendererWithSpike) will not apply the spike renderer to the printed legend.
|
|
62
|
+
* > Legends will print if there is enough space in the template for both the map and the legend.
|
|
63
|
+
* > The print server does not directly print [SVG](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/symbol) symbols. Rather, they are converted to [PictureMarkerSymbols](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-PictureMarkerSymbol.html) for display.
|
|
64
|
+
* > Make certain that any resources to be printed are accessible by the print server. For example, if printing a map containing [PictureMarkerSymbols](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-PictureMarkerSymbol.html),
|
|
65
|
+
* > the URL to these symbols must be accessible to the print server for it to work properly.
|
|
66
|
+
* > Currently, charts can only be printed when published as part of a [FeatureLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html), and with ArcGIS Server version 11.2 or later.
|
|
67
|
+
* > For [Print](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html) widget only: if the application and the print service are on the same origin, the name of the downloadable file can be customized with the [TemplateOptions#fileName](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#fileName)
|
|
68
|
+
* > or [TemplateOptions#title](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#title) properties. If not, the name of the downloadable file will be generated by the ArcGIS Enterprise that hosts the print service.
|
|
69
|
+
*
|
|
70
|
+
* @since 4.20
|
|
71
|
+
* @see [Print widget](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html) - _Deprecated since 4.33. Use the [Print component](https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-print/) instead._
|
|
72
|
+
* @see [Print component](https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-print/)
|
|
73
|
+
* @see [PrintTemplate](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-PrintTemplate.html)
|
|
74
|
+
*/
|
|
1
75
|
import type PrintParameters from "./support/PrintParameters.js";
|
|
2
76
|
import type { RequestOptions } from "../request/types.js";
|
|
3
77
|
import type { PrintResponse } from "./types.js";
|
package/rest/query.d.ts
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Executes different types of query operations on a layer. The most common
|
|
3
|
+
* method used is [executeQueryJSON()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-query.html#executeQueryJSON), which executes the query for JSON results as defined in the
|
|
4
|
+
* [Query](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html) object that is passed as a parameter to the function.
|
|
5
|
+
* `executeQueryJSON()` returns a Promise that resolves to a
|
|
6
|
+
* [FeatureSet](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html), which contains the features in the layer
|
|
7
|
+
* that satisfy the [Query](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html).
|
|
8
|
+
*
|
|
9
|
+
* You can also obtain the [number of features](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-query.html#executeForCount) that satisfy the
|
|
10
|
+
* query, the [extent](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-query.html#executeForExtent) of features, [related features or records](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-query.html#executeRelationshipQuery)
|
|
11
|
+
* associated with a feature, [attachments](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-query.html#executeAttachmentQuery) for features or the [featureIds](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-query.html#executeForIds)
|
|
12
|
+
* of features.
|
|
13
|
+
*
|
|
14
|
+
* For example, when working with a feature layer of world cities, to obtain a
|
|
15
|
+
* [FeatureSet](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html) of cities with a population greater than
|
|
16
|
+
* one million people, use the code below.
|
|
17
|
+
*
|
|
18
|
+
* @since 4.19
|
|
19
|
+
* @see [Query](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html)
|
|
20
|
+
* @see [AttachmentQuery](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttachmentQuery.html)
|
|
21
|
+
* @see [RelationshipQuery](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RelationshipQuery.html)
|
|
22
|
+
* @see [FeatureSet](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html)
|
|
23
|
+
* @example
|
|
24
|
+
* // query featureLayer for cities with a population greater than one million people
|
|
25
|
+
* const query = await $arcgis.import("@arcgis/core/rest/query");
|
|
26
|
+
*
|
|
27
|
+
* // url to the layer of interest to query
|
|
28
|
+
* const url = "https://sampleserver6.arcgisonline.com/arcgis/rest/services/SampleWorldCities/MapServer/0";
|
|
29
|
+
*
|
|
30
|
+
* const { features } = await query.executeQueryJSON(url, {
|
|
31
|
+
* where: "POP > 1000000"
|
|
32
|
+
* });
|
|
33
|
+
*/
|
|
1
34
|
import type Extent from "../geometry/Extent.js";
|
|
2
35
|
import type SpatialReference from "../geometry/SpatialReference.js";
|
|
3
36
|
import type AttachmentInfo from "./query/support/AttachmentInfo.js";
|
package/rest/route.d.ts
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Find routes between two or more locations and optionally get driving directions. The route module
|
|
3
|
+
* uses ArcGIS Server network analysis services to calculate routes. Network analysis services
|
|
4
|
+
* allow you to solve simple routing problems as well as complex ones that take into account
|
|
5
|
+
* multiple stops, barriers, and time windows.
|
|
6
|
+
*
|
|
7
|
+
* To work directly with route, the basic pattern is:
|
|
8
|
+
* 1. Define the URL to the ArcGIS Server REST resource
|
|
9
|
+
* 2. [Configure the parameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RouteParameters.html)
|
|
10
|
+
* 3. [Solve the route](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-route.html#solve) and then specify [what to do with its results](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RouteSolveResult.html) and handle any errors that may be returned.
|
|
11
|
+
*
|
|
12
|
+
* @since 4.19
|
|
13
|
+
* @see [RouteResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RouteResult.html)
|
|
14
|
+
* @see [RouteSolveResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RouteSolveResult.html)
|
|
15
|
+
* @see [RouteParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RouteParameters.html)
|
|
16
|
+
* @see [Esri Directions and Routing Services](https://developers.arcgis.com/en/features/directions/)
|
|
17
|
+
* @see [Sample - Route](https://developers.arcgis.com/javascript/latest/sample-code/route/)
|
|
18
|
+
*/
|
|
1
19
|
import type RouteParameters from "./support/RouteParameters.js";
|
|
2
20
|
import type RouteSolveResult from "./support/RouteSolveResult.js";
|
|
3
21
|
import type { RequestOptions } from "../request/types.js";
|
package/rest/serviceArea.d.ts
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* With the Service area service, you can find the area that can be reached from the input location within a given
|
|
3
|
+
* travel time or travel distance. A service area is the area that encompasses all streets that can be accessed within
|
|
4
|
+
* a given distance or travel time from one or more locations, referred to as facilities. Service areas are generally
|
|
5
|
+
* used to visualize and measure the accessibility of facilities. For example, a three-minute drive-time polygon around
|
|
6
|
+
* a grocery store can determine which residents are able to reach the store within three minutes and are thus more
|
|
7
|
+
* likely to shop there. The service can also create multiple concentric service areas around one or more facilities
|
|
8
|
+
* that can show how accessibility changes with an increase in travel time or travel distance. It can be used, for
|
|
9
|
+
* example, to determine how many hospitals are within 5-, 10-, and 15-minute drive times of schools. When creating
|
|
10
|
+
* service areas based on travel times, the service can make use of traffic data, which can influence the area that can
|
|
11
|
+
* be reached during different times of the day.
|
|
12
|
+
*
|
|
13
|
+
* @since 4.19
|
|
14
|
+
* @see [ServiceAreaParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ServiceAreaParameters.html)
|
|
15
|
+
* @see [ServiceAreaSolveResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ServiceAreaSolveResult.html)
|
|
16
|
+
* @see [Tutorial: Find service areas](https://developers.arcgis.com/javascript/latest/find-service-areas/)
|
|
17
|
+
* @see [Solve Service Area - ArcGIS Server REST API](https://developers.arcgis.com/rest/services-reference/enterprise/service-area-sync.htm)
|
|
18
|
+
*/
|
|
1
19
|
import type ServiceAreaParameters from "./support/ServiceAreaParameters.js";
|
|
2
20
|
import type ServiceAreaSolveResult from "./support/ServiceAreaSolveResult.js";
|
|
3
21
|
import type { RequestOptions } from "../request/types.js";
|
|
@@ -14,8 +14,8 @@ export type AreaUnitKebabCase = "acres" | "ares" | "hectares" | "square-miles" |
|
|
|
14
14
|
export type LengthUnit = "meters" | "feet" | "kilometers" | "miles" | "nautical-miles" | "yards";
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
|
-
* Input parameters for the
|
|
18
|
-
* method on the
|
|
17
|
+
* Input parameters for the [areasAndLengths()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-geometryService.html#areasAndLengths)
|
|
18
|
+
* method on the [geometryService](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-geometryService.html).
|
|
19
19
|
*
|
|
20
20
|
* @since 4.20
|
|
21
21
|
* @see [areasAndLengths()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-geometryService.html#areasAndLengths)
|
|
@@ -56,7 +56,6 @@ export default class AttachmentQuery extends JSONSupport {
|
|
|
56
56
|
* Use only for queries that have the same parameters every time the app is used.
|
|
57
57
|
* Some examples of cacheable queries:
|
|
58
58
|
* * Queries based on [preset input](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttachmentQuery.html#where), for example, a drop-down list of US states.
|
|
59
|
-
* * Queries based on {@link rest/support/AttachmentQuery#geometry preset extents}, for example bookmarks, in web maps.
|
|
60
59
|
*
|
|
61
60
|
* @since 4.24
|
|
62
61
|
*/
|
|
@@ -51,7 +51,7 @@ export interface AttributeBinsQueryProperties extends JSONSupportMixinProperties
|
|
|
51
51
|
export type BinParameters = AutoIntervalBinParameters | DateBinParameters | FixedBoundariesBinParameters | FixedIntervalBinParameters;
|
|
52
52
|
|
|
53
53
|
/**
|
|
54
|
-
* This class configures parameters for the [
|
|
54
|
+
* This class configures parameters for the [queryAttributeBins](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#queryAttributeBins) method, which groups features in a layer or layer view into bins
|
|
55
55
|
* based on numeric or date fields. This operation is useful for summarizing and analyzing large datasets by organizing them into meaningful groups, or bins, making it easier to detect patterns,
|
|
56
56
|
* trends, and anomalies across different ranges or time periods.
|
|
57
57
|
*
|
|
@@ -64,9 +64,9 @@ export type BinParameters = AutoIntervalBinParameters | DateBinParameters | Fixe
|
|
|
64
64
|
* crucial for understanding binning and boundary settings. There are four types of bin parameters:
|
|
65
65
|
* | Bin parameter type | Description |
|
|
66
66
|
* | ------------------- | ----------- |
|
|
67
|
-
* | [AutoIntervalBinParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html) | You specify the number of
|
|
67
|
+
* | [AutoIntervalBinParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html) | You specify the number of [numBins](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#numBins), [start](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#start) and [end](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#end) values of the binning. The bin size is calculated by dividing the dataset's range by this number of bins.|
|
|
68
68
|
* | [FixedBoundariesBinParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html) | The bins strictly follow the specified [input values](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#boundaries). The first item in the array specifies the lower boundary of the first bin, while the last item specifies the upper boundary of the last bin. Intermediate values represent the lower boundaries of each bin. |
|
|
69
|
-
* | [FixedIntervalBinParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html) | The number of bins is not important, but the [
|
|
69
|
+
* | [FixedIntervalBinParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html) | The number of bins is not important, but the [interval](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#interval) size must match the input data. Each bin will cover a range that exactly fits the specified interval. |
|
|
70
70
|
* | [DateBinParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html) | The [intervals](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#interval) are based on calendar units. For example, with monthly intervals, each bin represents an entire month. |
|
|
71
71
|
*
|
|
72
72
|
* @since 4.32
|
|
@@ -5,8 +5,8 @@ import type { NormalizationBinParametersMixinProperties, NormalizationBinParamet
|
|
|
5
5
|
export interface AutoIntervalBinParametersProperties extends BinParametersBaseProperties, NormalizationBinParametersMixinProperties, Partial<Pick<AutoIntervalBinParameters, "end" | "numBins" | "start">> {}
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
-
* AutoIntervalBinParameters specifies [
|
|
9
|
-
* It defines the number of
|
|
8
|
+
* AutoIntervalBinParameters specifies [binParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters) on [AttributeBinsQuery](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html) object.
|
|
9
|
+
* It defines the number of [numBins](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#numBins), and the [start](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#start) and [end](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#end) values for binning on a specified [field](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#field). Bin size is automatically calculated based
|
|
10
10
|
* on the range between the start and end values and the number of bins. The end value will be included in the last bin.
|
|
11
11
|
* The AutoIntervalBinParameters does not support `timestamp-offset`, `date-only`, or `time-only` field types.
|
|
12
12
|
*
|
|
@@ -14,11 +14,11 @@ export interface AutoIntervalBinParametersProperties extends BinParametersBasePr
|
|
|
14
14
|
* different hours of the day. The bin parameters would be:
|
|
15
15
|
*
|
|
16
16
|
* ```js
|
|
17
|
-
* // Query bins with auto interval bin parameters based on field "
|
|
17
|
+
* // Query bins with auto interval bin parameters based on field "HOUR" with 24 bins.
|
|
18
18
|
* const binQuery = new AttributeBinsQuery({
|
|
19
19
|
* where: "Unit = 0",
|
|
20
20
|
* binParameters: new AutoIntervalBinParameters({
|
|
21
|
-
*
|
|
21
|
+
* numBins: 24,
|
|
22
22
|
* field: "HOUR", // the field to bin, containing the hours of the day
|
|
23
23
|
* start: 0, // the lower boundary of the first bin
|
|
24
24
|
* end: 24 // the upper boundary of the last bin
|
|
@@ -13,7 +13,7 @@ export interface DateBinParametersProperties extends BinParametersBaseProperties
|
|
|
13
13
|
* > [!WARNING]
|
|
14
14
|
* >
|
|
15
15
|
* > **Known Limitations**
|
|
16
|
-
* > Only `days`, `hours`, `minutes`, `seconds` are supported for offset
|
|
16
|
+
* > Only `days`, `hours`, `minutes`, `seconds` are supported for offset [unit](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#unit).
|
|
17
17
|
* > The `offset` is only supported with server-side [FeatureLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html).
|
|
18
18
|
*/
|
|
19
19
|
offset?: DateBinTimeIntervalProperties | null;
|
|
@@ -75,7 +75,7 @@ export default class DateBinParameters extends BinParametersBase {
|
|
|
75
75
|
* > [!WARNING]
|
|
76
76
|
* >
|
|
77
77
|
* > **Known Limitations**
|
|
78
|
-
* > Only `days`, `hours`, `minutes`, `seconds` are supported for offset
|
|
78
|
+
* > Only `days`, `hours`, `minutes`, `seconds` are supported for offset [unit](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#unit).
|
|
79
79
|
* > The `offset` is only supported with server-side [FeatureLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html).
|
|
80
80
|
*/
|
|
81
81
|
get offset(): DateBinTimeInterval | null | undefined;
|
|
@@ -17,7 +17,7 @@ export default class DateBinTimeInterval extends DateBinTimeIntervalSuperclass {
|
|
|
17
17
|
* The unit value is defined via [value](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#value) property.
|
|
18
18
|
*/
|
|
19
19
|
unit: DateBinTimeUnit;
|
|
20
|
-
/** The numerical value of the time extent. This property works along with
|
|
20
|
+
/** The numerical value of the time extent. This property works along with [unit](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#unit) to define the time interval or time offset to generate date bins. */
|
|
21
21
|
accessor value: number;
|
|
22
22
|
}
|
|
23
23
|
declare const DateBinTimeIntervalSuperclass: typeof JSONSupport & typeof ClonableMixin
|
|
@@ -14,7 +14,7 @@ export interface DensifyParametersProperties extends JSONSupportMixinProperties,
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
|
-
* Input parameters for the
|
|
17
|
+
* Input parameters for the [densify()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-geometryService.html#densify) method on
|
|
18
18
|
* the GeometryService.
|
|
19
19
|
*
|
|
20
20
|
* @since 4.20
|
|
@@ -77,7 +77,7 @@ export default abstract class DirectionsFeature extends Graphic {
|
|
|
77
77
|
* };
|
|
78
78
|
*/
|
|
79
79
|
accessor attributes: any;
|
|
80
|
-
/** An array of
|
|
80
|
+
/** An array of [Directions Events](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DirectionsEvent.html). */
|
|
81
81
|
get events(): DirectionsEvent[] | null | undefined;
|
|
82
82
|
set events(value: DirectionsEventProperties[] | null | undefined);
|
|
83
83
|
/**
|
|
@@ -4,7 +4,7 @@ import type { MessageType } from "./interfaces.js";
|
|
|
4
4
|
export interface GPMessageProperties extends JSONSupportMixinProperties, Partial<Pick<GPMessage, "description" | "type">> {}
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
|
-
* Represents a message generated during the execution of a
|
|
7
|
+
* Represents a message generated during the execution of a [geoprocessor](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-geoprocessor.html) method.
|
|
8
8
|
* It includes information such as
|
|
9
9
|
* when the processing started, what parameter values are being used, the task progress, and
|
|
10
10
|
* warnings of potential problems and errors. It is composed of a message
|
|
@@ -235,7 +235,7 @@ export default class LastMileDeliveryParameters extends LastMileDeliveryParamete
|
|
|
235
235
|
* If `true`, directions will be generated and configured based on the value of
|
|
236
236
|
* the [directionsLanguage](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-LastMileDeliveryParameters.html#directionsLanguage) property.
|
|
237
237
|
* If `false`, directions will not be generated, and the service returns an empty value
|
|
238
|
-
* for the feature sets returned by
|
|
238
|
+
* for the feature sets returned by [getDirectionPoints()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-lastMileDelivery.html#getDirectionPoints) and [getDirectionLines()](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-lastMileDelivery.html#getDirectionLines) output parameter
|
|
239
239
|
*
|
|
240
240
|
* @see [Parameters: populate_directions](https://developers.arcgis.com/rest/routing/last-mile-delivery-service/#populate_directions)
|
|
241
241
|
*/
|
|
@@ -33,12 +33,12 @@ export default abstract class QuantizationParameters extends JSONSupport {
|
|
|
33
33
|
*/
|
|
34
34
|
accessor originPosition: "upper-left" | "lower-left";
|
|
35
35
|
/**
|
|
36
|
-
* The size of one pixel in the units of the
|
|
36
|
+
* The size of one pixel in the units of the [outSpatialReference](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#outSpatialReference).
|
|
37
37
|
* This number is used to convert coordinates to integers by building a grid with a resolution matching the tolerance.
|
|
38
38
|
* Each coordinate is then snapped to one pixel on the grid. Consecutive coordinates snapped to the same pixel are removed
|
|
39
|
-
* for reducing the overall response size. The units of tolerance will match the units of
|
|
39
|
+
* for reducing the overall response size. The units of tolerance will match the units of [outSpatialReference](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#outSpatialReference).
|
|
40
40
|
* If `outSpatialReference` is not specified, then tolerance is assumed to be in the units of the spatial
|
|
41
|
-
* reference of the layer. If tolerance is not specified, the
|
|
41
|
+
* reference of the layer. If tolerance is not specified, the [maxAllowableOffset](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#maxAllowableOffset) is used.
|
|
42
42
|
* If tolerance and `maxAllowableOffset` are not specified, a grid of 10,000 * 10,000 grid is used by default.
|
|
43
43
|
*
|
|
44
44
|
* @default 1
|
package/rest/support/Query.d.ts
CHANGED
|
@@ -311,7 +311,6 @@ export interface RangeValue {
|
|
|
311
311
|
* @see [FeatureLayer#queryFeatures()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#queryFeatures)
|
|
312
312
|
* @see [FeatureLayerView#queryFeatures()](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html#queryFeatures)
|
|
313
313
|
* @see [CSVLayer#queryFeatures()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#queryFeatures)
|
|
314
|
-
* @see {@link views/layers/CSVLayerView#queryFeatures}
|
|
315
314
|
* @see [SceneLayer#queryFeatures()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#queryFeatures)
|
|
316
315
|
* @see [SceneLayerView#queryFeatures()](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-SceneLayerView.html#queryFeatures)
|
|
317
316
|
* @see [Query and filter guide](https://developers.arcgis.com/javascript/latest/query-filter/)
|
|
@@ -58,7 +58,7 @@ export abstract class QueryMixin {
|
|
|
58
58
|
* [capabilities.query.supportsCacheHint](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#capabilities) is set to `true`.
|
|
59
59
|
* Use only for queries that have the same parameters every time the app is used.
|
|
60
60
|
* Some examples of cacheable queries:
|
|
61
|
-
* * Queries that fetch
|
|
61
|
+
* * Queries that fetch [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#outStatistics) or [features](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnGeometry) on app load.
|
|
62
62
|
* * Queries based on [preset input](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-QueryMixin.html#where), for example, a drop-down list of US states.
|
|
63
63
|
* * Queries based on [preset extents](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-QueryMixin.html#geometry), for example bookmarks, in web maps.
|
|
64
64
|
*/
|
|
@@ -37,7 +37,6 @@ export default class RelationshipQuery extends JSONSupport {
|
|
|
37
37
|
* Use only for queries that have the same parameters every time the app is used.
|
|
38
38
|
* Some examples of cacheable queries:
|
|
39
39
|
* * Queries based on [preset input](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RelationshipQuery.html#where), for example, a drop-down list of US states.
|
|
40
|
-
* * Queries based on {@link rest/support/RelationshipQuery#geometry preset extents}, for example bookmarks, in web maps.
|
|
41
40
|
*
|
|
42
41
|
* @since 4.24
|
|
43
42
|
*/
|
|
@@ -9,8 +9,7 @@ import type PolygonBarrier from "./PolygonBarrier.js";
|
|
|
9
9
|
import type PolylineBarrier from "./PolylineBarrier.js";
|
|
10
10
|
import type RouteInfo from "./RouteInfo.js";
|
|
11
11
|
import type Stop from "./Stop.js";
|
|
12
|
-
import type { TimeUnit } from "../../core/
|
|
13
|
-
import type { LengthUnit as CoreLengthUnit } from "../../core/units.js";
|
|
12
|
+
import type { TimeUnit, LengthUnit as CoreLengthUnit } from "../../core/units.js";
|
|
14
13
|
|
|
15
14
|
/**
|
|
16
15
|
* An object describing the parameter values for the
|
package/rest/symbolService.d.ts
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Represents [symbol service](https://developers.arcgis.com/rest/services-reference/enterprise/symbol-server.htm) resources exposed by the ArcGIS REST API. This module provides
|
|
3
|
+
* resources to convert [Scalable Vector Graphics](https://pro.arcgis.com/en/pro-app/latest/help/mapping/layer-properties/scalable-vector-graphics-support.htm) (SVG) to
|
|
4
|
+
* [CIMSymbols](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html).
|
|
5
|
+
*
|
|
6
|
+
* @since 4.25
|
|
7
|
+
* @see [CIMSymbol](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html)
|
|
8
|
+
* @see [cimSymbolUtils](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-cimSymbolUtils.html)
|
|
9
|
+
*/
|
|
1
10
|
import type { RequestOptions } from "../request/types.js";
|
|
2
11
|
import type { GenerateSymbolParameters, GenerateSymbolResponse } from "./types.js";
|
|
3
12
|
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Function that suggests a [FeatureReductionBinning#fixedBinLevel](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionBinning.html#fixedBinLevel) in a
|
|
3
|
+
* [FeatureReductionBinning](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionBinning.html) visualization.
|
|
4
|
+
*
|
|
5
|
+
* > [!WARNING]
|
|
6
|
+
* >
|
|
7
|
+
* > **Known Limitations**
|
|
8
|
+
* >
|
|
9
|
+
* > This function is not intended for use in 3D [SceneViews](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
10
|
+
*
|
|
11
|
+
* @since 4.25
|
|
12
|
+
*/
|
|
1
13
|
import type { BinLevelParams } from "./types.js";
|
|
2
14
|
|
|
3
15
|
/**
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Function for determining suggested [min](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#minScale) and
|
|
3
|
+
* [max](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#maxScale) scale ranges for an input layer.
|
|
4
|
+
*
|
|
5
|
+
* > [!WARNING]
|
|
6
|
+
* >
|
|
7
|
+
* > **Known Limitations**
|
|
8
|
+
* >
|
|
9
|
+
* > Input [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) must meet the following conditions:
|
|
10
|
+
* > - [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) without the `supportsRenderer` and `supportsLayerQuery` capabilities enabled, unless a predefined
|
|
11
|
+
* > [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is passed to the `statistics` parameter of the
|
|
12
|
+
* > method in conjunction with the layer. To check a SceneLayer's capabilities, use the [SceneLayer#getFieldUsageInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#getFieldUsageInfo) method.
|
|
13
|
+
*
|
|
14
|
+
* @since 4.12
|
|
15
|
+
*/
|
|
1
16
|
import type { ScaleRangeResult, ScaleRangeParams } from "./types.js";
|
|
2
17
|
|
|
3
18
|
/**
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Function for determining the suggested `minSize` and `maxSize` of a
|
|
3
|
+
* [scale-dependent size visual variable](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-visualVariables-SizeVariable.html).
|
|
4
|
+
*
|
|
5
|
+
* > [!WARNING]
|
|
6
|
+
* >
|
|
7
|
+
* > **Known Limitations**
|
|
8
|
+
* >
|
|
9
|
+
* > This function is not intended for use in 3D [SceneViews](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
10
|
+
*
|
|
11
|
+
* @since 4.12
|
|
12
|
+
*/
|
|
1
13
|
import type { SizeRangeResult, SizeRangeParams } from "./types.js";
|
|
2
14
|
|
|
3
15
|
/**
|
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains a helper method for generating default labels to be set on
|
|
3
|
+
* a layer's [binning configuration](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionBinning.html#labelingInfo).
|
|
4
|
+
* The default label is based on the [FeatureReductionBinning#renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionBinning.html#renderer). In most cases the default label configuration will
|
|
5
|
+
* be the total number of features in the bin. This value will be rounded and formatted (e.g. instead of `2385`, the
|
|
6
|
+
* bin label will display `2.4k`).
|
|
7
|
+
*
|
|
8
|
+
* This includes secondary labeling schemes you can experiment with using on your bins.
|
|
9
|
+
* This module only applies to layers with a point geometry type.
|
|
10
|
+
*
|
|
11
|
+
* @since 4.27
|
|
12
|
+
* @see [FeatureReductionBinning#labelingInfo](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionBinning.html#labelingInfo)
|
|
13
|
+
*/
|
|
1
14
|
import type KnowledgeGraphSublayer from "../../layers/knowledgeGraph/KnowledgeGraphSublayer.js";
|
|
2
15
|
import type LabelClass from "../../layers/support/LabelClass.js";
|
|
3
16
|
import type { RendererUnion } from "../../renderers/support/typeUtils.js";
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains a helper method for generating default labels to be set on
|
|
3
|
+
* a layer's [cluster configuration](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionCluster.html#labelingInfo).
|
|
4
|
+
* The default label is based on the layer's renderer. In most cases the default label configuration will
|
|
5
|
+
* be the total number of features in the cluster. This value will be rounded and formatted (e.g. instead of `2385`, the
|
|
6
|
+
* cluster label will display `2.4k`). In some cases, such as renderers with a [SizeVariable](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-visualVariables-SizeVariable.html),
|
|
7
|
+
* the default label will display the average value of the attribute represented by the size variable.
|
|
8
|
+
*
|
|
9
|
+
* [](https://developers.arcgis.com/javascript/latest/sample-code/featurereduction-cluster-filter/)
|
|
10
|
+
*
|
|
11
|
+
* This includes secondary labeling schemes you can experiment with in your clusters. This module only applies to layers with a point geometry type.
|
|
12
|
+
*
|
|
13
|
+
* @since 4.16
|
|
14
|
+
* @see [FeatureReductionCluster#labelingInfo](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionCluster.html#labelingInfo)
|
|
15
|
+
* @see [Sample - Point clustering - generate suggested configuration](https://developers.arcgis.com/javascript/latest/sample-code/featurereduction-cluster-filter/)
|
|
16
|
+
*/
|
|
1
17
|
import type LabelClass from "../../layers/support/LabelClass.js";
|
|
2
18
|
import type MapView from "../../views/MapView.js";
|
|
3
19
|
import type { SupportedLayer } from "../support/clusterUtils.js";
|
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating popup templates to be set on
|
|
3
|
+
* a layer's [FeatureReductionCluster#popupTemplate](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionCluster.html#popupTemplate).
|
|
4
|
+
* The suggested popup templates will include summary information about features in the cluster based on the
|
|
5
|
+
* layer's renderer. For example, in a layer visualizing population, the cluster popup template will include
|
|
6
|
+
* the number of features in the cluster and the average population of features in the cluster.
|
|
7
|
+
*
|
|
8
|
+
* 
|
|
9
|
+
*
|
|
10
|
+
* For layers with
|
|
11
|
+
* a [UniqueValueRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-UniqueValueRenderer.html), the popup will include the predominant unique value info
|
|
12
|
+
* of features in the cluster.
|
|
13
|
+
*
|
|
14
|
+
* [](https://developers.arcgis.com/javascript/latest/sample-code/featurereduction-cluster-filter/)
|
|
15
|
+
*
|
|
16
|
+
* This module only applies to layers with a point geometry type.
|
|
17
|
+
*
|
|
18
|
+
* @since 4.16
|
|
19
|
+
* @see [FeatureReductionCluster#popupTemplate](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionCluster.html#popupTemplate)
|
|
20
|
+
* @see [Sample - Point clustering - generate suggested configuration](https://developers.arcgis.com/javascript/latest/sample-code/featurereduction-cluster-filter/)
|
|
21
|
+
*/
|
|
1
22
|
import type SubtypeGroupLayer from "../../layers/SubtypeGroupLayer.js";
|
|
2
23
|
import type SubtypeSublayer from "../../layers/support/SubtypeSublayer.js";
|
|
3
24
|
import type { RendererWithVisualVariablesUnion } from "../../renderers/support/typeUtils.js";
|
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating popup templates to be set on
|
|
3
|
+
* a [layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#popupTemplate). The suggested popup templates
|
|
4
|
+
* will only include information in the popup related to the layer's renderer. For example, the
|
|
5
|
+
* popup template in the image below was generated based on a layer rendered with a
|
|
6
|
+
* [predominance](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-predominance.html) renderer coloring
|
|
7
|
+
* census tracks based on the decade in which the most homes were built.
|
|
8
|
+
*
|
|
9
|
+
* This provides a better default popup template than the traditional approach of providing a long table of unformatted values.
|
|
10
|
+
*
|
|
11
|
+
* Suggested default template based on renderer | Traditional default
|
|
12
|
+
* -----|----------
|
|
13
|
+
* [](https://developers.arcgis.com/javascript/latest/sample-code/visualization-sm-predominance/) | 
|
|
14
|
+
*
|
|
15
|
+
* @since 4.16
|
|
16
|
+
* @see [Sample - Generate a predominance visualization](https://developers.arcgis.com/javascript/latest/sample-code/visualization-sm-predominance/)
|
|
17
|
+
* @see [Sample - Generate a dot density visualization](https://developers.arcgis.com/javascript/latest/sample-code/visualization-sm-dotdensity/)
|
|
18
|
+
*/
|
|
1
19
|
import type { RendererUnion } from "../../renderers/support/typeUtils.js";
|
|
2
20
|
import type { Templates } from "./types.js";
|
|
3
21
|
import type { SupportedLayer } from "./support/utils.js";
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating class breaks visualizations for raster layers (i.e. [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html), [ImageryTileLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html), or [WCSLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html)) based on a cell or field value.
|
|
3
|
+
*
|
|
4
|
+
* The [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-renderers-classBreaks.html#createRenderer) method in this module generates a renderer that may be applied directly to the input layer.
|
|
5
|
+
*
|
|
6
|
+
* @since 4.20
|
|
7
|
+
*/
|
|
1
8
|
import type ClassBreaksRenderer from "../../../renderers/ClassBreaksRenderer.js";
|
|
2
9
|
import type { ClassBreaksParameters } from "../../../renderers/support/rasterRendererHelper.js";
|
|
3
10
|
import type { RasterRendererParameters } from "./types.js";
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating a [RasterColormapRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterColormapRenderer.html) for raster layers (i.e. [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html), [ImageryTileLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html)).
|
|
3
|
+
*
|
|
4
|
+
* The [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-renderers-colormap.html#createRenderer) method in this module generates a renderer that may be applied directly to the input layer.
|
|
5
|
+
*
|
|
6
|
+
* @since 4.20
|
|
7
|
+
*/
|
|
1
8
|
import type RasterColormapRenderer from "../../../renderers/RasterColormapRenderer.js";
|
|
2
9
|
import type { RasterRendererParameters } from "./types.js";
|
|
3
10
|
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating a [FlowRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-FlowRenderer.html) for a
|
|
3
|
+
* `Vector-UV` or `Vector-MagDir` [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html) or
|
|
4
|
+
* [ImageryTileLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html).
|
|
5
|
+
*
|
|
6
|
+
* The [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-renderers-flow.html#createRenderer) method in this module generates a renderer that may be
|
|
7
|
+
* applied directly to the input layer.
|
|
8
|
+
*
|
|
9
|
+
* > [!WARNING]
|
|
10
|
+
* >
|
|
11
|
+
* > **Known Limitations**
|
|
12
|
+
* >
|
|
13
|
+
* > FlowRenderer is only supported with [ImageryTileLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html) and
|
|
14
|
+
* > [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html) where the
|
|
15
|
+
* > [source type](https://pro.arcgis.com/en/pro-app/latest/help/data/imagery/raster-dataset-properties.htm)
|
|
16
|
+
* > is `Vector-UV` or `Vector-MagDir`.
|
|
17
|
+
*
|
|
18
|
+
* @since 4.23
|
|
19
|
+
*/
|
|
1
20
|
import type FlowRenderer from "../../../renderers/FlowRenderer.js";
|
|
2
21
|
import type { VisualVariable } from "../../../renderers/types.js";
|
|
3
22
|
import type { RendererLegendOptionsProperties } from "../../../renderers/support/RendererLegendOptions.js";
|