@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
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating an RGB [stretch visualization](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.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), or [WCSLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html)).
|
|
3
|
+
*
|
|
4
|
+
* The [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-renderers-rgb.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 RasterStretchRenderer from "../../../renderers/RasterStretchRenderer.js";
|
|
2
9
|
import type { RasterStretchType } from "../../../renderers/types.js";
|
|
3
10
|
import type { RasterRendererParameters } from "./types.js";
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating a [RasterShadedReliefRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterShadedReliefRenderer.html) to render elevation values in 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-shadedRelief.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 RasterShadedReliefRenderer from "../../../renderers/RasterShadedReliefRenderer.js";
|
|
2
9
|
import type AlgorithmicColorRamp from "../../../rest/support/AlgorithmicColorRamp.js";
|
|
3
10
|
import type MultipartColorRamp from "../../../rest/support/MultipartColorRamp.js";
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating a single-band [stretch visualization](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.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), or [WCSLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html)).
|
|
3
|
+
*
|
|
4
|
+
* The [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-renderers-stretch.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 RasterStretchRenderer from "../../../renderers/RasterStretchRenderer.js";
|
|
2
9
|
import type AlgorithmicColorRamp from "../../../rest/support/AlgorithmicColorRamp.js";
|
|
3
10
|
import type MultipartColorRamp from "../../../rest/support/MultipartColorRamp.js";
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating a [UniqueValueRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-UniqueValueRenderer.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-uniqueValue.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 UniqueValueRenderer from "../../../renderers/UniqueValueRenderer.js";
|
|
2
9
|
import type AlgorithmicColorRamp from "../../../rest/support/AlgorithmicColorRamp.js";
|
|
3
10
|
import type MultipartColorRamp from "../../../rest/support/MultipartColorRamp.js";
|
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating a [VectorFieldRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-VectorFieldRenderer.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-vectorField.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
|
+
* > VectorFieldRenderer 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
|
+
* > VectorFieldRenderer is only supported in 2D [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html).
|
|
18
|
+
*
|
|
19
|
+
* @since 4.20
|
|
20
|
+
*/
|
|
1
21
|
import type VectorFieldRenderer from "../../../renderers/VectorFieldRenderer.js";
|
|
2
22
|
import type { RotationType } from "../../../core/quantity.js";
|
|
3
23
|
import type { RasterRendererParameters } from "./types.js";
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This module provides convenience methods for querying color ramps (arrays of colors) used for raster renderers
|
|
3
|
+
* in the `module:esri/smartMapping/raster/color/renderers` modules.
|
|
4
|
+
*
|
|
5
|
+
* @since 4.29
|
|
6
|
+
* @see [Sample - ImageryTileLayer - shaded relief renderer](https://developers.arcgis.com/javascript/latest/sample-code/layers-imagery-renderer/)
|
|
7
|
+
*/
|
|
1
8
|
import type Color from "../../../Color.js";
|
|
2
9
|
import type AlgorithmicColorRamp from "../../../rest/support/AlgorithmicColorRamp.js";
|
|
3
10
|
import type MultipartColorRamp from "../../../rest/support/MultipartColorRamp.js";
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains utility methods for obtaining information about supported renderers of 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)).
|
|
3
|
+
*
|
|
4
|
+
* @since 4.20
|
|
5
|
+
*/
|
|
1
6
|
import type { RasterRendererUnion } from "../../../renderers/support/rasterTypeUtils.js";
|
|
2
7
|
import type { RasterRendererParameters } from "../renderers/types.js";
|
|
3
8
|
|
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating data-driven visualizations with continuous
|
|
3
|
+
* color or class breaks based on a field value or expression from features in a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html).
|
|
4
|
+
* The methods in this module generate renderer or visual variable objects that may be applied directly to a supported layer. The
|
|
5
|
+
* renderers specify how features should be visualized based on data values and colors compatible with the view's background.
|
|
6
|
+
*
|
|
7
|
+
* > [!WARNING]
|
|
8
|
+
* >
|
|
9
|
+
* > **Known Limitations**
|
|
10
|
+
* >
|
|
11
|
+
* > [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) must have the `supportsRenderer` and `supportsLayerQuery` capabilities enabled unless a predefined [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is provided to the `statistics` parameter of the method. To check a SceneLayer's capabilities, use the [SceneLayer#getFieldUsageInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#getFieldUsageInfo) method.
|
|
12
|
+
* > You cannot generate renderers and visual variables using SQL expressions for client-side [FeatureLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html)
|
|
13
|
+
* > in a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
14
|
+
*
|
|
15
|
+
* @since 4.2
|
|
16
|
+
* @see [Styles and data visualization](https://developers.arcgis.com/javascript/latest/visualization/)
|
|
17
|
+
*/
|
|
1
18
|
import type Basemap from "../../Basemap.js";
|
|
2
19
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
3
20
|
import type ClassBreaksRenderer from "../../renderers/ClassBreaksRenderer.js";
|
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains a helper method for generating a [dot density visualization](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-DotDensityRenderer.html).
|
|
3
|
+
* The [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-dotDensity.html#createRenderer) method uses the view's background to determine the most
|
|
4
|
+
* appropriate dot color for each attribute. It also queries the layer for spatial statistics to determine
|
|
5
|
+
* an appropriate [dot value](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-DotDensityRenderer.html#dotValue) for the
|
|
6
|
+
* given scale. The starting dot value isn't necessarily what will work best for your data. Rather, it
|
|
7
|
+
* is a suggestion that should give you a good starting point for authoring a dot density renderer.
|
|
8
|
+
*
|
|
9
|
+
* > [!WARNING]
|
|
10
|
+
* >
|
|
11
|
+
* > **Known Limitations**
|
|
12
|
+
* >
|
|
13
|
+
* > [DotDensityRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-DotDensityRenderer.html) is currently not supported in 3D [SceneViews](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
14
|
+
* > Only layers with polygon geometries are supported.
|
|
15
|
+
*
|
|
16
|
+
* @since 4.12
|
|
17
|
+
* @see [Sample - Generate a predominance visualization](https://developers.arcgis.com/javascript/latest/sample-code/visualization-sm-predominance/)
|
|
18
|
+
* @see [ArcGIS Blog: Creating a predominance visualization with Arcade](https://www.esri.com/arcgis-blog/products/js-api-arcgis/mapping/creating-a-predominance-visualization-with-arcade/)
|
|
19
|
+
* @see [ArcGIS Blog: Map Multiple Attributes at Once using Predominance](https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/map-multiple-attributes-at-once-using-predominance/)
|
|
20
|
+
* @see [Styles and data visualization](https://developers.arcgis.com/javascript/latest/visualization/)
|
|
21
|
+
*/
|
|
1
22
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
2
23
|
import type DotDensityRenderer from "../../renderers/DotDensityRenderer.js";
|
|
3
24
|
import type MapView from "../../views/MapView.js";
|
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains a helper method for generating a [HeatmapRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-HeatmapRenderer.html) for a point [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html).
|
|
3
|
+
*
|
|
4
|
+
* It is important to note that the input layer must have features available in the input view
|
|
5
|
+
* for the [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-heatmap.html#createRenderer) method to generate a meaningful heatmap.
|
|
6
|
+
* Otherwise, the method will fail.
|
|
7
|
+
*
|
|
8
|
+
* > [!WARNING]
|
|
9
|
+
* >
|
|
10
|
+
* > **Known Limitation**
|
|
11
|
+
* >
|
|
12
|
+
* > Only layers with point geometries are supported.
|
|
13
|
+
*
|
|
14
|
+
* @since 4.11
|
|
15
|
+
* @see [Styles and data visualization](https://developers.arcgis.com/javascript/latest/visualization/)
|
|
16
|
+
* @see [Sample - Explore point data with a heatmap](https://developers.arcgis.com/javascript/latest/sample-code/visualization-heatmap/)
|
|
17
|
+
*/
|
|
1
18
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
2
19
|
import type HeatmapRenderer from "../../renderers/HeatmapRenderer.js";
|
|
3
20
|
import type { AbortOptions } from "../../core/promiseUtils.js";
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating location-only visualizations (not data-driven) in
|
|
3
|
+
* a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html).
|
|
4
|
+
* The [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-location.html#createRenderer) method generates a
|
|
5
|
+
* [SimpleRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-SimpleRenderer.html) object that may be applied directly to the layer. This
|
|
6
|
+
* renderer contains a single symbol with a color optimally selected based on the background of the view.
|
|
7
|
+
*
|
|
8
|
+
* @since 4.2
|
|
9
|
+
* @see [Styles and data visualization](https://developers.arcgis.com/javascript/latest/visualization/)
|
|
10
|
+
*/
|
|
1
11
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
2
12
|
import type SimpleRenderer from "../../renderers/SimpleRenderer.js";
|
|
3
13
|
import type { AbortOptions } from "../../core/promiseUtils.js";
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains a helper method for generating data-driven visualizations with continuous
|
|
3
|
+
* opacity based on data returned from a field value or expression in a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html).
|
|
4
|
+
*
|
|
5
|
+
* The [createVisualVariable()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-opacity.html#createVisualVariable) method
|
|
6
|
+
* generates an {@link renderers/Renderer#OpacityVisualVariable opacity visual variable}
|
|
7
|
+
* with default alpha values that are optimally mapped to data values based on the statistics of the indicated field.
|
|
8
|
+
*
|
|
9
|
+
* > [!WARNING]
|
|
10
|
+
* >
|
|
11
|
+
* > **Known Limitations**
|
|
12
|
+
* >
|
|
13
|
+
* > [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) must have the `supportsRenderer` and `supportsLayerQuery` capabilities enabled unless a predefined [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is provided to the `statistics` parameter of the method. To check a SceneLayer's capabilities, use the [SceneLayer#getFieldUsageInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#getFieldUsageInfo) method.
|
|
14
|
+
* > You cannot generate renderers and visual variables using SQL expressions for client-side [FeatureLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html)
|
|
15
|
+
* > in a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
16
|
+
*
|
|
17
|
+
* @since 4.6
|
|
18
|
+
* @see [Styles and data visualization](https://developers.arcgis.com/javascript/latest/visualization/)
|
|
19
|
+
*/
|
|
1
20
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
2
21
|
import type AuthoringInfo from "../../renderers/support/AuthoringInfo.js";
|
|
3
22
|
import type OpacityVariable from "../../renderers/visualVariables/OpacityVariable.js";
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains a helper method for generating a pie chart for every feature.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* For example, suppose you have a layer of U.S. counties with fields containing the total sales of various crops:
|
|
6
|
+
* wheat, soybeans, corn, cotton, and vegetables.
|
|
7
|
+
* You can use the [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-pieChart.html#createRenderer) method in this module to generate a chart for each feature visualizing the proportion
|
|
8
|
+
* of each crop type for every county.
|
|
9
|
+
*
|
|
10
|
+
* > [!WARNING]
|
|
11
|
+
* >
|
|
12
|
+
* > **Known Limitations**
|
|
13
|
+
* >
|
|
14
|
+
* > Only supported in 2D [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html).
|
|
15
|
+
* > Only supported in layers with `point` and `polygon` geometries.
|
|
16
|
+
*
|
|
17
|
+
* @since 4.24
|
|
18
|
+
* @see [PieChartRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-PieChartRenderer.html)
|
|
19
|
+
*/
|
|
1
20
|
import type CSVLayer from "../../layers/CSVLayer.js";
|
|
2
21
|
import type FeatureLayer from "../../layers/FeatureLayer.js";
|
|
3
22
|
import type GeoJSONLayer from "../../layers/GeoJSONLayer.js";
|
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains a helper method for generating a predominance visualization.
|
|
3
|
+
* Visualizing predominance involves coloring a [layer's](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html) features based on which attribute among a set of competing
|
|
4
|
+
* numeric attributes wins or beats the others in total count. Common applications of this include visualizing
|
|
5
|
+
* election results, survey results, and demographic majorities.
|
|
6
|
+
*
|
|
7
|
+
* For example, suppose you have a layer of U.S. counties with fields containing the total sales of various crops: wheat, soybeans, corn, cotton, and vegetables.
|
|
8
|
+
* You can use the [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-predominance.html#createRenderer) method in this module to generate a default visualization depicting the winner, or most
|
|
9
|
+
* predominant crop, in each county.
|
|
10
|
+
*
|
|
11
|
+
* The example below depicts the predominant decade in which homes were constructed based on a city's block groups.
|
|
12
|
+
*
|
|
13
|
+
* [](https://developers.arcgis.com/javascript/latest/sample-code/visualization-sm-predominance/)
|
|
14
|
+
*
|
|
15
|
+
* > [!WARNING]
|
|
16
|
+
* >
|
|
17
|
+
* > **Known Limitations**
|
|
18
|
+
* >
|
|
19
|
+
* > Currently, 3D symbols can only be generated for layers with a `point` geometry type.
|
|
20
|
+
* > [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) must have the `supportsRenderer` and `supportsLayerQuery` capabilities enabled unless a predefined [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is provided to the `statistics` parameter of the method. To check a SceneLayer's capabilities, use the [SceneLayer#getFieldUsageInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#getFieldUsageInfo) method.
|
|
21
|
+
*
|
|
22
|
+
* @since 4.9
|
|
23
|
+
* @see [Sample - Generate a predominance visualization](https://developers.arcgis.com/javascript/latest/sample-code/visualization-sm-predominance/)
|
|
24
|
+
* @see [ArcGIS Blog: Creating a predominance visualization with Arcade](https://www.esri.com/arcgis-blog/products/js-api-arcgis/mapping/creating-a-predominance-visualization-with-arcade/)
|
|
25
|
+
* @see [ArcGIS Blog: Map Multiple Attributes at Once using Predominance](https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/map-multiple-attributes-at-once-using-predominance/)
|
|
26
|
+
* @see [Styles and data visualization](https://developers.arcgis.com/javascript/latest/visualization/)
|
|
27
|
+
*/
|
|
1
28
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
2
29
|
import type UniqueValueRenderer from "../../renderers/UniqueValueRenderer.js";
|
|
3
30
|
import type * as opacityCreator from "./opacity.js";
|
|
@@ -1,3 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains a helper method for creating a renderer for exploring the relationship between two numeric attributes.
|
|
3
|
+
* This is commonly known as a [bivariate choropleth](https://www.joshuastevens.net/cartography/make-a-bivariate-choropleth-map/)
|
|
4
|
+
* visualization. This renderer classifies each variable in either 2, 3, or 4 classes along separate color ramps. One of those ramps
|
|
5
|
+
* is rotated 90 degrees and overlaid on the other to create a 2x2, 3x3, or 4x4 square grid. The x-axis indicates the range of
|
|
6
|
+
* values for one variable, and the y-axis indicates the range for the second variable. The squares running diagonal from the
|
|
7
|
+
* lower left corner to the upper right corner indicate features where the two variables may be related or in agreement with one
|
|
8
|
+
* another.
|
|
9
|
+
*
|
|
10
|
+
* <figure>
|
|
11
|
+
* <a href="https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/what-is-a-relationship-map" target="_blank"><img src="https://developers.arcgis.com/javascript/latest/assets/img/apiref/renderers/smartmapping/relationship-legend.png" alt="Relationship renderer legend"></a>
|
|
12
|
+
* <figcaption style="border-left: none;margin-top:0">
|
|
13
|
+
* The legend of a relationship renderer resembles a grid of two single-hue sequential color ramps overlaid on each other, forming a third
|
|
14
|
+
* hue along a diagonal line, which indicates where the two variables could potentially be related.
|
|
15
|
+
* </figcaption>
|
|
16
|
+
* </figure>
|
|
17
|
+
*
|
|
18
|
+
* The lower right and upper left corners indicate features where one field has high values and the other field low values and
|
|
19
|
+
* vice versa. The image below shows what this style looks like on a map of U.S. counties where the percent of the population diagnosed
|
|
20
|
+
* with Diabetes is compared to the percent of the population that is obese.
|
|
21
|
+
*
|
|
22
|
+
* [](https://www.arcgis.com/home/webmap/viewer.html?webmap=c09aee5d3fee41c489fdffec21cb270a)
|
|
23
|
+
*
|
|
24
|
+
* While this visualization style was originally designed for 2D choropleth maps, it is particularly useful in 3D scenes where
|
|
25
|
+
* bivariate visualizations of color and size would not otherwise be possible since the size of features is reserved for real-world sizes of objects,
|
|
26
|
+
* such as buildings. Therefore, the relationship renderer becomes ideal for creating thematic bivariate visualizations of
|
|
27
|
+
* 3d object [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html).
|
|
28
|
+
*
|
|
29
|
+
* [](https://developers.arcgis.com/javascript/latest/sample-code/visualization-sm-relationship/)
|
|
30
|
+
*
|
|
31
|
+
* Keep in mind that even if you observe a positive relationship between the two variables of interest, it doesn't mean they
|
|
32
|
+
* are statistically correlated. It also doesn't imply the presence of one variable influences the other. Therefore, this
|
|
33
|
+
* renderer should be used judiciously with some prior knowledge that two variables may likely be related.
|
|
34
|
+
*
|
|
35
|
+
* > [!WARNING]
|
|
36
|
+
* >
|
|
37
|
+
* > **Known Limitations**
|
|
38
|
+
* >
|
|
39
|
+
* > [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) must have the `supportsRenderer` and `supportsLayerQuery` capabilities enabled unless a predefined [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is provided to the `statistics` parameter of the method. To check a SceneLayer's capabilities, use the [SceneLayer#getFieldUsageInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#getFieldUsageInfo) method.
|
|
40
|
+
*
|
|
41
|
+
* @since 4.9
|
|
42
|
+
* @see [Samples - Generate a relationship visualization](https://developers.arcgis.com/javascript/latest/sample-code/visualization-sm-relationship/)
|
|
43
|
+
* @see [ArcGIS Blog - What is a Relationship Map?](https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/what-is-a-relationship-map/)
|
|
44
|
+
* @see [ArcGIS Blog - How to Make a Relationship Map in ArcGIS Online](https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/how-to-make-a-relationship-map-in-arcgis-online/)
|
|
45
|
+
* @see [Bivariate Choropleth Maps: A How-to Guide](https://www.joshuastevens.net/cartography/make-a-bivariate-choropleth-map/)
|
|
46
|
+
* @see [Wikipedia - Bivariate map](https://en.wikipedia.org/wiki/Bivariate_map)
|
|
47
|
+
* @see [Styles and data visualization](https://developers.arcgis.com/javascript/latest/visualization/)
|
|
48
|
+
*/
|
|
1
49
|
import type Color from "../../Color.js";
|
|
2
50
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
3
51
|
import type UniqueValueRenderer from "../../renderers/UniqueValueRenderer.js";
|
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating data-driven visualizations with continuous
|
|
3
|
+
* size or class breaks based on a field value or expression from features in a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html).
|
|
4
|
+
* The methods in this module generate renderer or visual variable objects that may be applied directly to a supported layer. The
|
|
5
|
+
* renderers specify how features should be visualized based on data values and the view's background.
|
|
6
|
+
*
|
|
7
|
+
* > [!WARNING]
|
|
8
|
+
* >
|
|
9
|
+
* > **Known Limitations**
|
|
10
|
+
* >
|
|
11
|
+
* > Currently, 3D symbols can only be generated for layers with a `point` geometry type.
|
|
12
|
+
* > [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) with `mesh` [SceneLayer#geometryType](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#geometryType) or [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) without the `supportsRenderer` and `supportsLayerQuery` capabilities enabled are not supported unless a predefined [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is passed to the `statistics` parameter of the 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
|
+
* > You cannot generate renderers and visual variables using SQL expressions for client-side [FeatureLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html)
|
|
14
|
+
* > in a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
15
|
+
*
|
|
16
|
+
* @since 4.2
|
|
17
|
+
* @see [Styles and data visualization](https://developers.arcgis.com/javascript/latest/visualization/)
|
|
18
|
+
*/
|
|
1
19
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
2
20
|
import type ClassBreaksRenderer from "../../renderers/ClassBreaksRenderer.js";
|
|
3
21
|
import type UniqueValueRenderer from "../../renderers/UniqueValueRenderer.js";
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This module provides a function for regenerating renderers based on the current state of the layer and view.
|
|
3
|
+
* This is useful when you want to update a renderer based on changes to the layer's data, the data
|
|
4
|
+
* visible in the view, binning configuration, or the view's scale.
|
|
5
|
+
*
|
|
6
|
+
* @since 4.31
|
|
7
|
+
* @see [Renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-Renderer.html)
|
|
8
|
+
*/
|
|
1
9
|
import type FeatureFilter from "../../../layers/support/FeatureFilter.js";
|
|
2
10
|
import type { MapViewOrSceneView } from "../../../views/MapViewOrSceneView.js";
|
|
3
11
|
import type { AbortOptions } from "../../../core/promiseUtils.js";
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This module provides utility functions for creating and updating spike symbols for size renderers
|
|
3
|
+
* generated with a `spike` theme.
|
|
4
|
+
*
|
|
5
|
+
* @since 4.33
|
|
6
|
+
*/
|
|
1
7
|
import type Color from "../../../Color.js";
|
|
2
8
|
import type CIMSymbol from "../../../symbols/CIMSymbol.js";
|
|
3
9
|
import type { PrimitiveOverride } from "../../../symbols/cim/CIMTypes.js";
|
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating data-driven visualizations with unique types (or categories)
|
|
3
|
+
* based on a field value from features in a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html).
|
|
4
|
+
* The [createRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-type.html#createRenderer) method generates a
|
|
5
|
+
* [Renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-Renderer.html) object that may be applied directly to the layer used to
|
|
6
|
+
* generate it. This
|
|
7
|
+
* renderer contains unique values with colors best suited to the view's background.
|
|
8
|
+
*
|
|
9
|
+
* > [!WARNING]
|
|
10
|
+
* >
|
|
11
|
+
* > **Known Limitations**
|
|
12
|
+
* >
|
|
13
|
+
* > [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) must have the `supportsRenderer` and `supportsLayerQuery` capabilities enabled unless a predefined [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is provided to the `statistics` parameter of the method. To check a SceneLayer's capabilities, use the [SceneLayer#getFieldUsageInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#getFieldUsageInfo) method.
|
|
14
|
+
* > Generating renderers and visual variables using SQL expressions is currently restricted to feature services hosted on [ArcGIS Online](https://www.arcgis.com).
|
|
15
|
+
*
|
|
16
|
+
* @since 4.4
|
|
17
|
+
* @see [Styles and data visualization](https://developers.arcgis.com/javascript/latest/visualization/)
|
|
18
|
+
*/
|
|
1
19
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
2
20
|
import type PointCloudUniqueValueRenderer from "../../renderers/PointCloudUniqueValueRenderer.js";
|
|
3
21
|
import type UniqueValueRenderer from "../../renderers/UniqueValueRenderer.js";
|
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This object contains helper methods for generating data-driven univariate visualizations using both continuous
|
|
3
|
+
* color and continuous size based on a single field value or expression from features in a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html).
|
|
4
|
+
* The [createContinuousRenderer()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-univariateColorSize.html#createContinuousRenderer) method generates a
|
|
5
|
+
* [Renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-Renderer.html) object that may be applied directly to a supported layer. This
|
|
6
|
+
* renderer contains a continuous color and size ramp with optimal colors based on the view's background
|
|
7
|
+
* and mapped to specific break values based on the statistics of the indicated field or expression.
|
|
8
|
+
*
|
|
9
|
+
* Alternately, you can use the {@link smartMapping/renderers/univariateColorSize#createvisualvariables createVisualVariable()} method to
|
|
10
|
+
* generate a {@link renderers/Renderer#ColorVisualVariable color}
|
|
11
|
+
* and a {@link renderers/Renderer#ColorVisualVariable size visual variable}
|
|
12
|
+
* with default stops and colors that are optimally chosen based on the statistics of the indicated field.
|
|
13
|
+
*
|
|
14
|
+
* Since thematic size
|
|
15
|
+
* may be difficult to interpret on its own in 3D extrusions, adding a color ramp representing the same
|
|
16
|
+
* data helps effectively communicate the story of the visualization so it's more easily understood by the audience.
|
|
17
|
+
*
|
|
18
|
+
* > [!WARNING]
|
|
19
|
+
* >
|
|
20
|
+
* > **Known Limitations**
|
|
21
|
+
* >
|
|
22
|
+
* > Currently 3D symbols can only be generated for layers with a `point` geometry type.
|
|
23
|
+
* > [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) with `mesh` [SceneLayer#geometryType](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#geometryType) or [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) without the `supportsRenderer` and `supportsLayerQuery` capabilities enabled are not supported unless a predefined [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is passed to the `statistics` parameter of the 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.
|
|
24
|
+
* > You cannot generate renderers and visual variables using SQL expressions for client-side [FeatureLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html)
|
|
25
|
+
* > in a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
26
|
+
*
|
|
27
|
+
* @since 4.2
|
|
28
|
+
* @see [Styles and data visualization](https://developers.arcgis.com/javascript/latest/visualization/)
|
|
29
|
+
*/
|
|
1
30
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
2
31
|
import type ClassBreaksRenderer from "../../renderers/ClassBreaksRenderer.js";
|
|
3
32
|
import type AuthoringInfo from "../../renderers/support/AuthoringInfo.js";
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Function for generating class breaks for an input field in a [FeatureLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html) based
|
|
3
|
+
* on a given classification method and normalization type.
|
|
4
|
+
*
|
|
5
|
+
* > [!WARNING]
|
|
6
|
+
* >
|
|
7
|
+
* > **Known Limitations**
|
|
8
|
+
* >
|
|
9
|
+
* > [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) must have the `supportsRenderer` and `supportsLayerQuery` capabilities enabled unless a predefined [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is provided to the `statistics` parameter of the method. To check a SceneLayer's capabilities, use the [SceneLayer#getFieldUsageInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#getFieldUsageInfo) method.
|
|
10
|
+
* > You cannot generate statistics using SQL expressions for client-side [FeatureLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html)
|
|
11
|
+
* > in a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
12
|
+
*
|
|
13
|
+
* @since 4.2
|
|
14
|
+
*/
|
|
1
15
|
import type { ClassBreaksParams, ClassBreaksResult } from "./types.js";
|
|
2
16
|
|
|
3
17
|
/**
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Function for generating statistics from a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html) for
|
|
3
|
+
* a [HeatmapRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-HeatmapRenderer.html) visualization.
|
|
4
|
+
*
|
|
5
|
+
* It is important to note that the input layer must have features available in the input view
|
|
6
|
+
* for the [heatmapStatistics()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-heatmapStatistics.html#heatmapStatistics) method to generate pixel intensity statistics.
|
|
7
|
+
*
|
|
8
|
+
* > [!WARNING]
|
|
9
|
+
* >
|
|
10
|
+
* > **Known Limitations**
|
|
11
|
+
* >
|
|
12
|
+
* > Only layers with point geometries are supported.
|
|
13
|
+
*
|
|
14
|
+
* @since 4.8
|
|
15
|
+
*/
|
|
1
16
|
import type { HeatmapStatisticsParams, HeatmapStatisticsResult } from "./types.js";
|
|
2
17
|
|
|
3
18
|
/**
|
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generates a histogram based on data in a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html) for a given field.
|
|
3
|
+
* The returned object can be used for displaying
|
|
4
|
+
* a histogram in the UI within visualization authoring applications and analytical apps that query and
|
|
5
|
+
* display statistics.
|
|
6
|
+
*
|
|
7
|
+
* > [!WARNING]
|
|
8
|
+
* >
|
|
9
|
+
* > **Known Limitations**
|
|
10
|
+
* >
|
|
11
|
+
* > [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) must have the `supportsRenderer` and `supportsLayerQuery` capabilities enabled unless a predefined [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is provided to the `statistics` parameter of the method. To check a SceneLayer's capabilities, use the [SceneLayer#getFieldUsageInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#getFieldUsageInfo) method.
|
|
12
|
+
* > You cannot generate statistics using SQL expressions for client-side [FeatureLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html)
|
|
13
|
+
* > in a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
14
|
+
* > The `normalizationType` parameter only normalizes data returned by a `field`. It does not apply to values returned from a `valueExpression` or `sqlExpression`.
|
|
15
|
+
*
|
|
16
|
+
* @since 4.2
|
|
17
|
+
*/
|
|
1
18
|
import type { HistogramParams, HistogramResult } from "./types.js";
|
|
2
19
|
|
|
3
20
|
/**
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Function for generating category statistics for a [predominance](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-predominance.html)
|
|
3
|
+
* renderer.
|
|
4
|
+
*
|
|
5
|
+
* @since 4.13
|
|
6
|
+
*/
|
|
1
7
|
import type { PredominantCategoriesParams, PredominantCategoriesResult } from "./types.js";
|
|
2
8
|
|
|
3
9
|
/**
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Function for generating attribute statistics in a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html) based on
|
|
3
|
+
* values returned from a given field.
|
|
4
|
+
*
|
|
5
|
+
* > [!WARNING]
|
|
6
|
+
* >
|
|
7
|
+
* > **Known Limitations**
|
|
8
|
+
* >
|
|
9
|
+
* > [SceneLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html) must have the `supportsRenderer` and `supportsLayerQuery` capabilities enabled unless a predefined [statistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult) object is provided to the `statistics` parameter of the method. To check a SceneLayer's capabilities, use the [SceneLayer#getFieldUsageInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#getFieldUsageInfo) method.
|
|
10
|
+
* > You cannot generate statistics using SQL expressions for client-side [FeatureLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html)
|
|
11
|
+
* > in a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
12
|
+
* > The `normalizationType` parameter only normalizes data returned by a `field`. It does not apply to values returned from a `valueExpression` or `sqlExpression`.
|
|
13
|
+
*
|
|
14
|
+
* @since 4.2
|
|
15
|
+
*/
|
|
1
16
|
import type { SummaryStatisticsParams, SummaryStatisticsResult } from "./types.js";
|
|
2
17
|
|
|
3
18
|
/**
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Function for generating statistics for the age of features in a layer based on a given start time and end time.
|
|
3
|
+
*
|
|
4
|
+
* @since 4.13
|
|
5
|
+
* @see [colorRendererCreator.createAgeRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-color.html#createAgeRenderer)
|
|
6
|
+
* @see [sizeRendererCreator.createAgeRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-size.html#createAgeRenderer)
|
|
7
|
+
*/
|
|
1
8
|
import type { SummaryStatisticsForAgeParams, SummaryStatisticsResult } from "./types.js";
|
|
2
9
|
|
|
3
10
|
/**
|
|
@@ -5,7 +12,7 @@ import type { SummaryStatisticsForAgeParams, SummaryStatisticsResult } from "./t
|
|
|
5
12
|
* the difference between a given end time from a start time) in a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html).
|
|
6
13
|
*
|
|
7
14
|
* @param parameters - See the table below for details of each parameter.
|
|
8
|
-
* @returns Returns a promise that resolves to
|
|
15
|
+
* @returns Returns a promise that resolves to [SummaryStatisticsResult](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-types.html#SummaryStatisticsResult).
|
|
9
16
|
* @example
|
|
10
17
|
* summaryStatisticsForAge({
|
|
11
18
|
* layer: featureLayer,
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Provides utility functions for generating [Arcade](https://developers.arcgis.com/javascript/latest/arcade/) expressions
|
|
3
|
+
* intended for use in an [age renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-color.html#createAgeRenderer).
|
|
4
|
+
*
|
|
5
|
+
* @since 4.13
|
|
6
|
+
* @see [colorRendererCreator.createAgeRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-color.html#createAgeRenderer)
|
|
7
|
+
* @see [sizeRendererCreator.createAgeRenderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-size.html#createAgeRenderer)
|
|
8
|
+
*/
|
|
1
9
|
import type { SupportedLayer } from "../../types.js";
|
|
2
10
|
import type { DateType, UnitType } from "../../support/utils.js";
|
|
3
11
|
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Provides utility functions for generating [Arcade](https://developers.arcgis.com/javascript/latest/arcade/) and SQL expressions
|
|
3
|
+
* intended for use in an [predominance renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-predominance.html).
|
|
4
|
+
*
|
|
5
|
+
* @since 4.23
|
|
6
|
+
* @see [predominance renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-predominance.html)
|
|
7
|
+
*/
|
|
1
8
|
import type CSVLayer from "../../../layers/CSVLayer.js";
|
|
2
9
|
import type FeatureLayer from "../../../layers/FeatureLayer.js";
|
|
3
10
|
import type GeoJSONLayer from "../../../layers/GeoJSONLayer.js";
|
|
@@ -27,7 +34,7 @@ import type SubtypeSublayer from "../../../layers/support/SubtypeSublayer.js";
|
|
|
27
34
|
*/
|
|
28
35
|
export function getPredominanceExpressions(layer: FeatureLayer | SceneLayer | CSVLayer | GeoJSONLayer | WFSLayer | OGCFeatureLayer | StreamLayer | OrientedImageryLayer | KnowledgeGraphSublayer | SubtypeGroupLayer | CatalogFootprintLayer | SubtypeSublayer, fieldNames: string[]): PredominantExpressions;
|
|
29
36
|
|
|
30
|
-
/** The result object returned from the
|
|
37
|
+
/** The result object returned from the [getPredominanceExpressions()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-support-predominanceUtils.html#getPredominanceExpressions) method. */
|
|
31
38
|
export interface PredominantExpressions {
|
|
32
39
|
/** The Arcade and SQL expressions used to query the server or client-side layer for statistics of the percentage among all competing fields comprised by the predominant category. */
|
|
33
40
|
opacity: OpacityExpressionInfo;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A module for importing types used in smart mapping statistics modules.
|
|
3
|
+
*
|
|
4
|
+
* @since 4.33
|
|
5
|
+
*/
|
|
1
6
|
import type Graphic from "../../Graphic.js";
|
|
2
7
|
import type FeatureFilter from "../../layers/support/FeatureFilter.js";
|
|
3
8
|
import type { MapViewOrSceneView } from "../../views/MapViewOrSceneView.js";
|
|
@@ -8,7 +13,7 @@ import type { SupportedLayer } from "../types.js";
|
|
|
8
13
|
import type { UnitType, DateType } from "../support/utils.js";
|
|
9
14
|
import type { OutStatisticTypes } from "../../statistics/types.js";
|
|
10
15
|
|
|
11
|
-
/** The result returned from the
|
|
16
|
+
/** The result returned from the [histogram()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-histogram.html#histogram) method. */
|
|
12
17
|
export interface HistogramResult {
|
|
13
18
|
/** An array of objects representing each bin in the histogram. */
|
|
14
19
|
bins: HistogramBin[];
|