@agrotools1/at-components 0.6.16 → 0.6.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Map/Map.d.ts +27 -4
- package/dist/Map/Map.vue.js +1 -1
- package/dist/Map/Map.vue2.js +162 -121
- package/dist/Stepper/Stepper.vue.js +48 -35
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/analysis/SlicePlane.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/ImageMaterial.glsl.js +56 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Laserlines.glsl.js +7 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/LineCallout.glsl.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/LineMarker.glsl.js +200 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/NativeLine.glsl.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Path.glsl.js +111 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Pattern.glsl.js +185 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/SlicePlaneMaterial.glsl.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/WaterSurface.glsl.js +158 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/vec32.js +13 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/MapUtils.js +18 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/PooledArray.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/accessorSupport/diffUtils.js +75 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/arrayUtils.js +59 -53
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/asyncUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/colorUtils.js +77 -59
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/fontUtils.js +22 -18
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/handleUtils.js +12 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/factories/mat2f64.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/math/mat2.js +104 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/math/mat4.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/mathUtils.js +29 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/quantityFormatUtils.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/quantityUtils.js +38 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/reactiveUtils.js +63 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/scheduling.js +56 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/time.js +9 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/unitFormatUtils.js +95 -41
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/unitUtils.js +130 -89
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/Circle.js +82 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/ellipsoidUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectBoundingRect.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPointToVector.js +16 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPolygonToWGS84ComparableLonLat.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPolylineToWGS84ComparableLonLat.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectVectorToPoint.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/spatialReferenceEllipsoidUtils.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/FloatArray.js +12 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/Indices.js +26 -22
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/aaBoundingBox.js +133 -74
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/aaBoundingRect.js +78 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/axisAngleDegrees.js +13 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/buffer/BufferView.js +93 -93
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/coordsUtils.js +132 -68
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/geodesicUtils.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/heightModelInfoUtils.js +71 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/lineSegment.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/meshUtils/External.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/plane.js +107 -89
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/ray.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/rotate.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/triangle.js +16 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/vector.js +14 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/vectorStacks.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/data/QueryEngine.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/dehydratedFeatures.js +64 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/hydratedFeatures.js +54 -46
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/sources/support/uploadAssets.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/mixins/ArcGISMapService.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/mixins/PortalLayer.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/ElevationSampler.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/layerUtils.js +44 -24
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/vectorTileLayerLoader.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/libs/maquette/h.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/UniqueValueRenderer.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/AuthoringInfo.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/numberUtils.js +65 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/rendererConversion.js +55 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/renderingInfoUtils.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/visualVariables/support/visualVariableUtils.js +195 -149
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/actions/ActionSlider.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/basemapUtils.js +31 -26
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/elevationInfoUtils.js +77 -57
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/progressUtils.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/callouts/calloutUtils.js +20 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/cim/CIMSymbolRasterizer.js +80 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/cim/utils.js +100 -76
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/IconSymbol3DLayerResource.js +11 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/ObjectSymbol3DLayerResource.js +7 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/cimSymbolUtils.js +169 -16
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/defaults3D.js +31 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/defaultsJSON.js +8 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/gfxUtils.js +89 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewCIMSymbol.js +47 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewSymbol2D.js +142 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewSymbol3D.js +288 -37
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewUtils.js +87 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewWebStyleSymbol.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/renderUtils.js +82 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/styleUtils.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/svgUtils.js +271 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/symbolLayerUtils3D.js +34 -16
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/symbolUtils.js +147 -41
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/utils.js +169 -128
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/ControlPointsTransformTool.js +149 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/MediaTransformToolsWrapper.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/TransformTool.js +218 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/draw/DrawGraphicTool2D.js +70 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/draw/symbols.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/DragManipulation.js +50 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/Manipulation.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/RotateManipulation.js +50 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/ScaleManipulation.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/utils.js +54 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/FeatureLayerView2D.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/ImageryLayerView2D.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/TileLayerView2D.js +8 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/features/Processor.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/support/ExportStrategy.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/navigation/MapViewNavigation.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/ResizeManipulator.js +31 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/RotateManipulator.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/ShiftManipulator.js +88 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/sliceToolConfig.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/sliceToolUtils.js +129 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/Factory.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/generateTextures.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/heading-rotate-svg.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/environment/CloudsParameters.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/environment/weather.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/SegmentLabels3D.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/GrabbingState.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/ManipulatorState.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/ManipulatorType.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/dragEventPipeline3D.js +121 -67
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/draw/DrawGraphicTool3D.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/geometryUtils.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/isSupportedGraphicUtils.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/lineGraphicVisualElementUtils.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/Manipulation.js +53 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveManipulation.js +84 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYAxisManipulation.js +116 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYDiscManipulation.js +90 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYGraphicManipulation.js +36 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveZManipulation.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/config.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/moveUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulatorUtils.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/meshFastUpdateUtils.js +34 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/moveGraphic/GraphicMoveTool.js +256 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/moveGraphic/isSupportedGraphic.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/originGraphicVisualElementUtils.js +94 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/GraphicReshapeTool.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/ReshapeOperation.js +738 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/edgeOffsetUtils.js +39 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/isSupportedGraphic.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/settings.js +124 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/snapping/SnapToScene.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentMove.js +108 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentRotate.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentScale.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentTransformTool.js +164 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/GraphicScaleRotateTransform.js +331 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/GraphicTransformTool.js +170 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/PreserveAspectRatio.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ScaleRotateMeshAdapter.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ScaleRotateObjectSymbol3DAdapter.js +142 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/extentUtils.js +71 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/isSupportedGraphic.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/undoRecords.js +37 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/visualElementUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/manipulatorUtils.js +50 -38
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/measurementTools/areaMeasurement3D/AreaMeasurement3DTool.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/measurementTools/directLineMeasurement3D/DirectLineMeasurement3DTool.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/visualElements/OutlineVisualElement.js +196 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/visualElements/VerticesVisualElement.js +108 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/GraphicsLayerView3D.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/LayerView3D.js +42 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/DisplayFeatureLimit.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ElevationAligners.js +87 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ElevationQuery.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ExtentSet.js +71 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicState.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicStateTracking.js +65 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DCalloutSymbolLayerFactory.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DCore.js +1110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DDrapedGraphicLayer.js +84 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DElevationAlignment.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DExtrudeSymbolLayer.js +221 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DFeatureStore.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DFrustumVisibility.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DGraphic.js +164 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DGraphicCreationContext.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DIconSymbolLayer.js +367 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLineCalloutSymbolLayer.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLineSymbolLayer.js +226 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLodInstanceGraphicLayer.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DMeshFillSymbolLayer.js +511 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DMeshObject3DGraphicLayer.js +91 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObject3DGraphicLayer.js +147 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectMetadata.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectStateSet.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectStates.js +69 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectSymbolLayer.js +347 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPathSymbolLayer.js +240 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPathSymbolLayerConstants.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPointSymbol.js +51 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPolygonFillSymbolLayer.js +203 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DScaleVisibility.js +145 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbol.js +158 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolCreationContext.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolFactory.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolLayer.js +195 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolLayerFactory.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DTextSymbolLayer.js +153 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DWaterSymbolLayer.js +151 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DWebStyleSymbol.js +57 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicsCorePerformanceInfo.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicsProcessor.js +192 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/LabelParameters.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Loadable.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/MeshFastUpdateProcessor.js +85 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/SpatialIndex2D.js +70 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/SymbolComplexity.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/constants.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/defaultSymbolComplexity.js +152 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/elevationAlignPointsInFeatures.js +35 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/elevationAlignmentUtils.js +107 -33
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/enums.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/featureExpressionInfoUtils.js +48 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/graphicUtils.js +119 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/interfaces.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/lineUtils.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/lodResourceUtils.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/objectResourceUtils.js +15 -15
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/placementUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/pointUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/polygonUtils.js +60 -29
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/primitiveObjectSymbolUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/queryForSymbologySnapping.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/symbolMemory.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/webStyleUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/FastSymbolUpdates.js +323 -31
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/LayerViewPerformanceInfo.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/StageLayerElevationProvider.js +76 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/edgeUtils.js +37 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/layerUtils.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/patternUtils.js +52 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/projectExtentUtils.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/symbolColorUtils.js +28 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/uvUtils.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/ElevationProvider.js +11 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/ElevationUpdateEvent.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/FrustumExtentIntersection.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/buffer/InterleavedLayout.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/engineContent/line.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/engineContent/marker.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/extentUtils.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/geometryUtils/ray.js +15 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/intersectionUtils.js +33 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/mathUtils.js +13 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/orientedBoundingBox.js +22 -22
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/line.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/point.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/polygon.js +63 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/ShaderOutput.js +25 -17
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/PathVertexPosition.glsl.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/VertexNormal.glsl.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/VertexPosition.glsl.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/FoamRendering.glsl.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/Gamma.glsl.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/NormalUtils.glsl.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/PhysicallyBasedRendering.glsl.js +53 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/ScreenSpaceReflections.glsl.js +123 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/Water.glsl.js +85 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/WaterDistortion.glsl.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/util/CloudsParallaxShading.glsl.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderModules/TextureCubePassUniform.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/effects/RenderPlugin.js +5 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/AnimationTimer.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/BoundingInfo.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/FontMetrics.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/GeometryUtil.js +308 -73
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/GeometryWithMapPositions.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Intersector.js +14 -14
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Normals.js +16 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Object3D.js +14 -14
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Object3DStateSet.js +57 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Octree.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Path.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathBuilder.js +62 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathCapBuilder.js +100 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathExtruder.js +53 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathGeometry.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathGeometryData.js +94 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathProfile.js +62 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathVertex.js +81 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextHelperCanvas.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextRenderParameters.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextRenderer.js +219 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextTextureAtlas.js +212 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextTextureFactory.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/edgeRendering/edgePreprocessing.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/BackedBufferObject.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/InstanceData.js +174 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/InstanceOctree.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/Intersector.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LevelSelector.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodComponentData.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodLevel.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodRenderer.js +264 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodResources.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/RenderInstanceData.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/pathGeometryUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/DefaultLayouts.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/DefaultMaterial.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/ImageMaterial.js +66 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/LineCalloutMaterial.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/LineMarkerMaterial.js +104 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/NativeLineMaterial.js +106 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PathMaterial.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PathTechnique.js +49 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PatternMaterial.js +86 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PatternStyle.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterGLMaterial.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterMaterial.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterTechnique.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/internal/bufferWriterUtils.js +122 -109
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/internal/waterMaterialUtils.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/lineStippleUtils.js +18 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/renderers/utils.js +15 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/DefaultMaterialTechnique.js +33 -27
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/ImageMaterial.glsl.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/ImageMaterialTechnique.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LaserlineTechnique.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCallout.glsl.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCalloutTechnique.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCalloutTechniqueConfiguration.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineMarker.glsl.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineMarkerTechnique.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLine.glsl.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLineTechnique.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLineTechniqueConfiguration.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/Path.glsl.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/Pattern.glsl.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/PatternTechnique.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/RibbonLineTechnique.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/SlicePlaneMaterial.glsl.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/SlicePlaneMaterialTechnique.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/WaterSurface.glsl.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/DOMContainer.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawGraphicTool.js +397 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawOperation.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawScreenTool.js +126 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/drawSurfaces.js +47 -21
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/Box.js +481 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/GraphicMover.js +211 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/HighlightHelper.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/Reshape.js +556 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/createUtils.js +118 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/drawUtils.js +117 -23
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/helpMessageUtils.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/helpMessageUtils3d.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/input/GraphicMoverEvents.js +65 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/layerUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/settings.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/SegmentLabels.js +147 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/dragEventPipeline.js +165 -81
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/editGeometry/operations/OffsetEdgeVertex.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/editGeometry/support/editPlaneUtils.js +52 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/keybindings.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchOptions.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipElevationOptions.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipOptions.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipVisibleElements.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchValueOptions.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/constraints.js +25 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/normalizedPoint.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/FeatureSnappingEngine.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/FeatureCollectionSnappingSource.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/FeatureServiceSnappingSource.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/GraphicsSnappingSource.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/DrawTooltipInfos.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/ExtentTooltipInfos.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/ReshapeTooltipInfos.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/SketchTooltipInfo.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/Tooltip.js +80 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/TransformTooltipInfos.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/TranslateTooltipInfos.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/DrawHeaderActions.js +34 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/TooltipEditableField.js +117 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/TooltipField.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/ValueByValue.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/directionModeIcons.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/constraintUtils.js +90 -91
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/Fields.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContent.js +150 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawCircle.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawMesh.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPoint.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPolygon.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPolyline.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawRectangle.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentExtentRotate.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentExtentScale.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentReshapeEdgeOffset.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformAbsolute.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformRotate.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformScale.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphic.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphicXY.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphicZ.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertex.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertexXY.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertexZ.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/tooltipContentFactory.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/css.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/TooltipField.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/TooltipFieldElevation.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/fields.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/layers/WMSLayerView.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/layers/support/popupUtils.js +17 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/overlay/OutlineOverlayItem.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/overlay/TextOverlayItem.js +76 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/DefaultsFromMap.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/angularMeasurementUtils.js +87 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/automaticAreaMeasurementUtils.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/automaticLengthMeasurementUtils.js +18 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/euclideanAreaMeasurementUtils.js +67 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/euclideanLengthMeasurementUtils.js +92 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/extentUtils.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geodesicAreaMeasurementUtils.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geodesicLengthMeasurementUtils.js +57 -27
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geometry2dUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/hitTestSelectUtils.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/layerViewUtils.js +10 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/measurementUtils.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/webgl/Util.js +90 -70
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/webgl/testFloatBufferBlend.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Feature/FeatureRelationship.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Feature/support/featureUtils.js +54 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/LayerListViewModel.js +113 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/ListItem.js +144 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/ListItemPanel.js +98 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/support/layerListUtils.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/LegendViewModel.js +190 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/Card.js +284 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/CardCSS.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/Classic.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/ClassicCSS.js +5 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/support/relationshipUtils.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/support/univariateUtils.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/ActiveLayerInfo.js +1053 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/clusterUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/colorRampUtils.js +54 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/relationshipRampUtils.js +59 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/sizeRampUtils.js +155 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/styleUtils.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/utils.js +75 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/SketchViewModel.js +886 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/VisibleElements.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/support/OperationHandle.js +81 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch.js +293 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/smartMapping/support/utils.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Heading.js +13 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/LabeledSwitch.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SelectionToolbar/SelectionToolbarViewModel.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SelectionToolbar.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Selector2D/SelectionOperation.js +95 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Selector2D/selectorUtils.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SketchTooltipControls/VisibleElements.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SketchTooltipControls.js +66 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingControlsViewModel.js +79 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingLayerListViewModel.js +41 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingListItem.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/VisibleElements.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/snappingLayerListUtils.js +33 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls.js +141 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/widget.js +7 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/widgetUtils.js +19 -15
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-accordion-item.js +157 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-accordion.js +97 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-block.js +230 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown-group.js +97 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown-item.js +171 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-radio-button-group.js +144 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-radio-button.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-switch.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-tooltip.js +290 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/dom.js +91 -79
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/dropdown.js +319 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/floating-ui.js +11 -10
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/radio-button.js +244 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/resources3.js +20 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/switch.js +123 -0
- package/dist/node_modules/.pnpm/@terraformer_arcgis@2.1.2/node_modules/@terraformer/arcgis/dist/t-arcgis.esm.js +124 -45
- package/dist/node_modules/.pnpm/@terraformer_wkt@2.2.1/node_modules/@terraformer/wkt/dist/t-wkt.esm.js +1287 -0
- package/dist/style.css +1 -1
- package/package.json +3 -1
- package/dist/_virtual/_commonjsHelpers.js +0 -8
- package/dist/_virtual/terraformer-wkt-parser.js +0 -4
- package/dist/_virtual/terraformer.js +0 -4
- package/dist/node_modules/.pnpm/terraformer-wkt-parser@1.2.1/node_modules/terraformer-wkt-parser/terraformer-wkt-parser.js +0 -469
- package/dist/node_modules/.pnpm/terraformer@1.0.12/node_modules/terraformer/terraformer.js +0 -637
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import { c as f, e as j, g as S } from "../../../../chunks/vec32.js";
|
|
2
|
+
import { create as m } from "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
3
|
+
import { setMin as y, setMax as E, create as M, isPoint as A, empty as x, center as L, offset as B } from "../../../../geometry/support/aaBoundingBox.js";
|
|
4
|
+
import { g as C } from "../../../../chunks/sphere.js";
|
|
5
|
+
import { evaluateElevationInfoAtPoint as T } from "./elevationAlignmentUtils.js";
|
|
6
|
+
import { setContextFeature as V } from "./featureExpressionInfoUtils.js";
|
|
7
|
+
import { demResolutionForBoundingBox as R } from "./graphicUtils.js";
|
|
8
|
+
import { Object3DState as v } from "../../webgl-engine/lib/basicInterfaces.js";
|
|
9
|
+
import { Transparency as O } from "../../webgl-engine/lib/edgeRendering/interfaces.js";
|
|
10
|
+
class z {
|
|
11
|
+
constructor(e, t, s) {
|
|
12
|
+
this.baseMaterial = e, this.edgeMaterials = t, this.properties = s;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
class F {
|
|
16
|
+
get isElevationSource() {
|
|
17
|
+
return !!this.stageObject.lastValidElevationBB;
|
|
18
|
+
}
|
|
19
|
+
constructor(e, t, s, o, n, i, g, d = null) {
|
|
20
|
+
this.graphics3DSymbolLayer = e, this.stageObject = t, this._uniqueGeometries = s, this._uniqueMaterials = o, this._sharedResource = n, this.elevationAligner = i, this.elevationContext = g, this._edgeState = d, this.type = "object3d", this._stageLayer = null, this._visible = !1, this._addedToStage = !1, this.alignedSampledElevation = 0, this.needsElevationUpdates = !1, this.useObjectOriginAsAttachmentOrigin = !1;
|
|
21
|
+
}
|
|
22
|
+
initialize(e) {
|
|
23
|
+
this._stageLayer = e;
|
|
24
|
+
const t = e.stage;
|
|
25
|
+
t.addMany(this._uniqueMaterials), t.addMany(this._uniqueGeometries), t.add(this.stageObject);
|
|
26
|
+
}
|
|
27
|
+
destroy() {
|
|
28
|
+
var t, s;
|
|
29
|
+
if (!this._stageLayer)
|
|
30
|
+
return;
|
|
31
|
+
const e = this._stageLayer.stage;
|
|
32
|
+
e.removeMany(this._uniqueMaterials), e.removeMany(this._uniqueGeometries), e.remove(this.stageObject), this._addedToStage && (this._stageLayer.remove(this.stageObject), this._addedToStage = !1), (t = e.renderer.edgeView) == null || t.removeObject(this.stageObject), this.stageObject.dispose(), (s = this._sharedResource) == null || s.release(), this._visible = !1, this._stageLayer = null;
|
|
33
|
+
}
|
|
34
|
+
layerOpacityChanged(e, t) {
|
|
35
|
+
if (this._edgeState == null)
|
|
36
|
+
return;
|
|
37
|
+
const s = _(this._edgeState.baseMaterial);
|
|
38
|
+
let o = !1;
|
|
39
|
+
for (const n of this._edgeState.edgeMaterials)
|
|
40
|
+
n.objectTransparency !== s && (n.objectTransparency = s, o = !0);
|
|
41
|
+
o && this.resetEdgeObject(t), this._stageLayer.stage.renderer.ensureEdgeView().updateAllComponentOpacities(this.stageObject, [e]);
|
|
42
|
+
}
|
|
43
|
+
slicePlaneEnabledChanged(e, t) {
|
|
44
|
+
this._edgeState != null && (this._stageLayer.stage.renderer.ensureEdgeView().updateAllComponentMaterials(this.stageObject, this._edgeState.edgeMaterials, { hasSlicePlane: e }, !t), this._edgeState.properties.hasSlicePlane = e);
|
|
45
|
+
}
|
|
46
|
+
setVisibility(e) {
|
|
47
|
+
if (this._stageLayer != null && this._visible !== e && (this._visible = e, this.stageObject.visible = e, this._visible && !this._addedToStage && (this._stageLayer.add(this.stageObject), this._addedToStage = !0), this._edgeState)) {
|
|
48
|
+
const t = this._stageLayer.stage.renderer.ensureEdgeView();
|
|
49
|
+
t.hasObject(this.stageObject) ? t.updateObjectVisibility(this.stageObject, e) : e && this._addOrUpdateEdgeObject(t, !1);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
get visible() {
|
|
53
|
+
return this._visible;
|
|
54
|
+
}
|
|
55
|
+
alignWithElevation(e, t, s, o) {
|
|
56
|
+
if (this.elevationAligner == null)
|
|
57
|
+
return;
|
|
58
|
+
s != null && V(this.elevationContext.featureExpressionInfoContext, s);
|
|
59
|
+
const n = (i, g) => T(i, e, this.elevationContext, t, g);
|
|
60
|
+
this.alignedSampledElevation = this.elevationAligner(this, this.elevationContext, e.spatialReference, n, t), this.resetEdgeObject(o);
|
|
61
|
+
}
|
|
62
|
+
alignWithAbsoluteElevation(e, t, s) {
|
|
63
|
+
const o = (n, i) => {
|
|
64
|
+
i.sampledElevation = e, i.verticalDistanceToGround = 0, i.z = e;
|
|
65
|
+
};
|
|
66
|
+
this.alignedSampledElevation = this.elevationAligner(this, this.elevationContext, null, o, t), this.resetEdgeObject(s);
|
|
67
|
+
}
|
|
68
|
+
getCenterObjectSpace(e = m()) {
|
|
69
|
+
return f(e, C(this.stageObject.boundingVolumeObjectSpace.bounds));
|
|
70
|
+
}
|
|
71
|
+
getBoundingBoxObjectSpace(e = M()) {
|
|
72
|
+
const t = this.stageObject.boundingVolumeObjectSpace;
|
|
73
|
+
return y(e, t.min), E(e, t.max), e;
|
|
74
|
+
}
|
|
75
|
+
computeAttachmentOrigin(e) {
|
|
76
|
+
const t = this.stageObject.effectiveTransformation;
|
|
77
|
+
if (this.useObjectOriginAsAttachmentOrigin)
|
|
78
|
+
e.render.origin[0] += t[12], e.render.origin[1] += t[13], e.render.origin[2] += t[14], e.render.num++;
|
|
79
|
+
else
|
|
80
|
+
for (const s of this.stageObject.geometries)
|
|
81
|
+
s.computeAttachmentOrigin(c) && (j(c, c, t), S(e.render.origin, e.render.origin, c), e.render.num++);
|
|
82
|
+
}
|
|
83
|
+
async getProjectedBoundingBox(e, t, s, o, n) {
|
|
84
|
+
const i = this.getBoundingBoxObjectSpace(n), g = P, d = A(i) ? 1 : g.length;
|
|
85
|
+
for (let a = 0; a < d; a++) {
|
|
86
|
+
const r = g[a];
|
|
87
|
+
l[0] = i[r[0]], l[1] = i[r[1]], l[2] = i[r[2]], j(l, l, this.stageObject.transformation), h[3 * a] = l[0], h[3 * a + 1] = l[1], h[3 * a + 2] = l[2];
|
|
88
|
+
}
|
|
89
|
+
if (!e(h, 0, d))
|
|
90
|
+
return null;
|
|
91
|
+
x(i);
|
|
92
|
+
let b = null;
|
|
93
|
+
this.calculateRelativeScreenBounds && (b = this.calculateRelativeScreenBounds());
|
|
94
|
+
for (let a = 0; a < 3 * d; a += 3) {
|
|
95
|
+
for (let r = 0; r < 3; r++)
|
|
96
|
+
i[r] = Math.min(i[r], h[a + r]), i[r + 3] = Math.max(i[r + 3], h[a + r]);
|
|
97
|
+
b && s.push({ location: h.slice(a, a + 3), screenSpaceBoundingRect: b });
|
|
98
|
+
}
|
|
99
|
+
if (t != null && t.service && this.elevationContext.mode !== "absolute-height") {
|
|
100
|
+
L(i, c);
|
|
101
|
+
const a = this.elevationContext.mode === "relative-to-scene" ? "scene" : "ground";
|
|
102
|
+
let r = 0;
|
|
103
|
+
if (t.useViewElevation)
|
|
104
|
+
r = t.service.getElevation(c[0], c[1], a) ?? 0;
|
|
105
|
+
else
|
|
106
|
+
try {
|
|
107
|
+
const p = R(i, t.service.spatialReference, t);
|
|
108
|
+
r = await t.service.queryElevation(c[0], c[1], o, p, a) ?? 0;
|
|
109
|
+
} catch {
|
|
110
|
+
}
|
|
111
|
+
B(i, 0, 0, -this.alignedSampledElevation + r);
|
|
112
|
+
}
|
|
113
|
+
return i;
|
|
114
|
+
}
|
|
115
|
+
addObjectState(e, t) {
|
|
116
|
+
e === v.Highlight && t.addObject(this.stageObject, this.stageObject.highlight()), e === v.MaskOccludee && t.addObject(this.stageObject, this.stageObject.maskOccludee());
|
|
117
|
+
}
|
|
118
|
+
removeObjectState(e) {
|
|
119
|
+
e.removeObject(this.stageObject);
|
|
120
|
+
}
|
|
121
|
+
resetEdgeObject(e) {
|
|
122
|
+
if (this._edgeState == null)
|
|
123
|
+
return;
|
|
124
|
+
const t = this._stageLayer.stage.renderer.ensureEdgeView();
|
|
125
|
+
this._visible ? this._addOrUpdateEdgeObject(t, e) : t.removeObject(this.stageObject);
|
|
126
|
+
}
|
|
127
|
+
_addOrUpdateEdgeObject(e, t) {
|
|
128
|
+
const s = this._edgeState;
|
|
129
|
+
if (s == null)
|
|
130
|
+
return;
|
|
131
|
+
const o = _(s.baseMaterial);
|
|
132
|
+
for (const n of s.edgeMaterials)
|
|
133
|
+
n.objectTransparency = o;
|
|
134
|
+
e.addOrUpdateObject3D(this.stageObject, s.edgeMaterials, s.properties, !t).then(() => {
|
|
135
|
+
var n;
|
|
136
|
+
return (n = this._stageLayer) == null ? void 0 : n.sync();
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
function _(u) {
|
|
141
|
+
return u.isVisible() ? u.parameters.transparent ? O.TRANSPARENT : O.OPAQUE : O.INVISIBLE;
|
|
142
|
+
}
|
|
143
|
+
const h = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], l = m(), c = m(), P = [[0, 1, 2], [3, 1, 2], [0, 4, 2], [3, 4, 2], [0, 1, 5], [3, 1, 5], [0, 4, 5], [3, 4, 5]];
|
|
144
|
+
export {
|
|
145
|
+
F as Graphics3DObject3DGraphicLayer,
|
|
146
|
+
z as Object3DEdgeState
|
|
147
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Object3DStateSet as s } from "../../webgl-engine/lib/Object3DStateSet.js";
|
|
2
|
+
class h {
|
|
3
|
+
constructor(t, e) {
|
|
4
|
+
this.stateType = t, this.objectIdField = e, this.objectStateSet = new s(), this.ids = /* @__PURE__ */ new Set(), this.paused = !1;
|
|
5
|
+
}
|
|
6
|
+
hasGraphic(t) {
|
|
7
|
+
if (this.objectIdField) {
|
|
8
|
+
const e = t.graphic.attributes[this.objectIdField];
|
|
9
|
+
return this.ids.has(e);
|
|
10
|
+
}
|
|
11
|
+
return this.ids.has(t.graphic.uid);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export {
|
|
15
|
+
h as Graphics3DObjectStateSet
|
|
16
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { makeHandle as i } from "../../../../core/handleUtils.js";
|
|
2
|
+
import { Graphics3DObjectStateSet as h } from "./Graphics3DObjectStateSet.js";
|
|
3
|
+
class o {
|
|
4
|
+
constructor(t) {
|
|
5
|
+
this._graphicsCore = t, this._stateSets = new Array();
|
|
6
|
+
}
|
|
7
|
+
destroy() {
|
|
8
|
+
this.reset(), this._stateSets = null;
|
|
9
|
+
}
|
|
10
|
+
reset() {
|
|
11
|
+
this._stateSets && (this._stateSets.forEach((t) => t.objectStateSet.removeAll()), this._stateSets.length = 0);
|
|
12
|
+
}
|
|
13
|
+
acquireSet(t, e) {
|
|
14
|
+
const s = new h(t, e);
|
|
15
|
+
this._stateSets.push(s);
|
|
16
|
+
const a = i(() => this.releaseSet(s));
|
|
17
|
+
return { set: s, handle: a };
|
|
18
|
+
}
|
|
19
|
+
releaseSet(t) {
|
|
20
|
+
t.objectStateSet.removeAll();
|
|
21
|
+
const e = this._stateSets ? this._stateSets.indexOf(t) : -1;
|
|
22
|
+
e !== -1 && this._stateSets.splice(e, 1);
|
|
23
|
+
}
|
|
24
|
+
_addObjectStateSet(t, e) {
|
|
25
|
+
t.addObjectStateSet(e.stateType, e.objectStateSet);
|
|
26
|
+
}
|
|
27
|
+
_removeObjectStateSet(t, e) {
|
|
28
|
+
t.removeObjectState(e.objectStateSet);
|
|
29
|
+
}
|
|
30
|
+
setUid(t, e) {
|
|
31
|
+
t.ids.add(e);
|
|
32
|
+
const s = this._graphicsCore.graphics3DGraphics.get(e);
|
|
33
|
+
s && this._addObjectStateSet(s, t);
|
|
34
|
+
}
|
|
35
|
+
setUids(t, e) {
|
|
36
|
+
e.forEach((s) => this.setUid(t, s));
|
|
37
|
+
}
|
|
38
|
+
setObjectIds(t, e) {
|
|
39
|
+
e.forEach((s) => t.ids.add(s)), this._initializeSet(t);
|
|
40
|
+
}
|
|
41
|
+
addGraphic(t) {
|
|
42
|
+
this._stateSets.forEach((e) => {
|
|
43
|
+
!e.paused && e.hasGraphic(t) && this._addObjectStateSet(t, e);
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
removeGraphic(t) {
|
|
47
|
+
this._stateSets.forEach((e) => {
|
|
48
|
+
e.hasGraphic(t) && this._removeObjectStateSet(t, e);
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
allGraphicsDeleted() {
|
|
52
|
+
this._stateSets && this._stateSets.forEach((t) => t.objectStateSet.removeAll());
|
|
53
|
+
}
|
|
54
|
+
_initializeSet(t) {
|
|
55
|
+
const e = this._graphicsCore.graphics3DGraphics;
|
|
56
|
+
t.objectIdField ? e.forEach((s) => {
|
|
57
|
+
s && t.hasGraphic(s) && this._addObjectStateSet(s, t);
|
|
58
|
+
}) : t.ids.forEach((s) => {
|
|
59
|
+
const a = e.get(s);
|
|
60
|
+
a && this._addObjectStateSet(a, t);
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
get test() {
|
|
64
|
+
return { states: this._stateSets };
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
export {
|
|
68
|
+
o as Graphics3DObjectStates
|
|
69
|
+
};
|
|
@@ -0,0 +1,347 @@
|
|
|
1
|
+
import F from "../../../../Color.js";
|
|
2
|
+
import W from "../../../../core/has.js";
|
|
3
|
+
import { throwIfAborted as pe } from "../../../../core/promiseUtils.js";
|
|
4
|
+
import { pt2px as k } from "../../../../core/screenUtils.js";
|
|
5
|
+
import { estimateSize as ue } from "../../../../core/typedArrayUtil.js";
|
|
6
|
+
import { identity as ye, scale as fe, translate as _e, copy as ge } from "../../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
7
|
+
import { create as oe } from "../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
8
|
+
import { l as q, F as D, c as N, B as be, g as Pe, s as Y } from "../../../../chunks/vec32.js";
|
|
9
|
+
import { fromArray as b, ONES as E, ZEROS as z, fromValues as J, create as ne } from "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
10
|
+
import { ONES as S, create as Re } from "../../../../core/libs/gl-matrix-2/factories/vec4f64.js";
|
|
11
|
+
import { computeTranslationToOriginAndRotation as ve } from "../../../../geometry/projection/computeTranslationToOriginAndRotation.js";
|
|
12
|
+
import { projectPointToVector as xe } from "../../../../geometry/projection/projectPointToVector.js";
|
|
13
|
+
import { create as Le, size as T, containsPoint as Se, center as O } from "../../../../geometry/support/aaBoundingBox.js";
|
|
14
|
+
import { defaultPrimitive as Ce } from "../../../../symbols/support/ObjectSymbol3DLayerResource.js";
|
|
15
|
+
import { objectSymbolLayerPrimitiveBoundingBox as Ee, objectSymbolLayerSizeWithResourceSize as V } from "../../../../symbols/support/symbolLayerUtils3D.js";
|
|
16
|
+
import { estimateNumVerticesForLods as Te, defaultSymbolLayerMemoryComplexity as Oe } from "./defaultSymbolComplexity.js";
|
|
17
|
+
import { perLodInstanceElevationAligner as we } from "./ElevationAligners.js";
|
|
18
|
+
import { needsElevationUpdates3D as Q, evaluateElevationInfoAtPoint as Be, SampleElevationInfo as Ie } from "./elevationAlignmentUtils.js";
|
|
19
|
+
import { Graphics3DLodInstanceGraphicLayer as Ue } from "./Graphics3DLodInstanceGraphicLayer.js";
|
|
20
|
+
import { Graphics3DSymbolLayer as Ae } from "./Graphics3DSymbolLayer.js";
|
|
21
|
+
import { validateSymbolLayerSize as Ge, mixinColorAndOpacity as Fe, computeObjectScale as Z, computeObjectRotation as De } from "./graphicUtils.js";
|
|
22
|
+
import { ApplyRendererDiffResult as w } from "./interfaces.js";
|
|
23
|
+
import { LoadStatus as ze } from "./Loadable.js";
|
|
24
|
+
import { makeLodResources as Ve } from "./lodResourceUtils.js";
|
|
25
|
+
import { fetch as je } from "./objectResourceUtils.js";
|
|
26
|
+
import { placePointOnGeometry as K, extendPointGraphicElevationContext as X } from "./pointUtils.js";
|
|
27
|
+
import { isValidPrimitive as Me, primitiveLodResources as He } from "./primitiveObjectSymbolUtils.js";
|
|
28
|
+
import { SymbolComplexity as $e } from "./SymbolComplexity.js";
|
|
29
|
+
import { getResourceUrlFromSymbolStyle as We } from "./webStyleUtils.js";
|
|
30
|
+
import { initFastSymbolUpdatesState as ee, updateFastSymbolUpdatesState as te, ConvertOptions as ke, evaluateModelTransform as qe, evaluateModelTransformScale as Ne } from "../support/FastSymbolUpdates.js";
|
|
31
|
+
import { CullFaceOptions as B } from "../../webgl-engine/lib/basicInterfaces.js";
|
|
32
|
+
import { VertexAttribute as P } from "../../webgl-engine/lib/VertexAttribute.js";
|
|
33
|
+
import { LodRenderer as Ye } from "../../webgl-engine/lib/lodRendering/LodRenderer.js";
|
|
34
|
+
import { materialsFromLodResources as I, texturesFromLodResources as se, geometriesFromLodResources as re } from "../../webgl-engine/lib/lodRendering/LodResources.js";
|
|
35
|
+
import { DefaultMaterial as Je } from "../../webgl-engine/materials/DefaultMaterial.js";
|
|
36
|
+
import { defaultSchematicMRRFactors as Qe } from "../../webgl-engine/materials/pbrUtils.js";
|
|
37
|
+
class ae {
|
|
38
|
+
constructor(e, t, s, r, a, i, o, n, c, l, p, h) {
|
|
39
|
+
this.lodResources = e, this.lodRenderer = t, this.stageResources = s, this.originalMaterialParameters = r, this.resourceSize = a, this.isEsriSymbolResource = i, this.isWosr = o, this.resourceBoundingBox = n, this.symbolSize = c, this.extentPadding = l, this.physicalBasedRenderingEnabled = p, this.pivotOffset = h;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
class Ut extends Ae {
|
|
43
|
+
getCachedSize() {
|
|
44
|
+
const [e, t, s] = this._resources != null ? this._resources.symbolSize : [1, 1, 1];
|
|
45
|
+
return { width: e, depth: t, height: s };
|
|
46
|
+
}
|
|
47
|
+
constructor(e, t, s, r) {
|
|
48
|
+
super(e, t, s, r), this._resources = null, this._optionalFields = new Array(), this._instanceIndexToGraphicUid = /* @__PURE__ */ new Map(), this._hasLoadedPBRTextures = !1, this._disposeResourceHandles = new Array(), this.skipHighSymbolLodsChanged = !1, this.ensureDrapedStatus(!1), this._hasLoadedPBRTextures = s.physicalBasedRenderingEnabled;
|
|
49
|
+
}
|
|
50
|
+
async doLoad(e) {
|
|
51
|
+
if (!this._drivenProperties.size && Ge(this.symbolLayer))
|
|
52
|
+
throw new Error();
|
|
53
|
+
if (this._isPrimitive) {
|
|
54
|
+
const t = this.symbolLayer.resource, s = t && Me(t.primitive) ? t.primitive : Ce;
|
|
55
|
+
this._resources = await this._createResourcesForPrimitive(s, e);
|
|
56
|
+
} else {
|
|
57
|
+
const t = await We(this.symbol.styleOrigin), s = (t == null ? void 0 : t.href) ?? this.symbolLayer.resource.href;
|
|
58
|
+
this._resources = await this._createResourcesForUrl(s, e);
|
|
59
|
+
}
|
|
60
|
+
this.layerOpacityChanged(), this.slicePlaneEnabledChanged(), this.physicalBasedRenderingChanged(), this.complexity = this.computeComplexity();
|
|
61
|
+
}
|
|
62
|
+
get extentPadding() {
|
|
63
|
+
return this._resources != null ? this._resources.extentPadding : 0;
|
|
64
|
+
}
|
|
65
|
+
get _isPrimitive() {
|
|
66
|
+
var e;
|
|
67
|
+
return !((e = this.symbolLayer.resource) != null && e.href);
|
|
68
|
+
}
|
|
69
|
+
get lodRenderer() {
|
|
70
|
+
var e;
|
|
71
|
+
return (e = this._resources) == null ? void 0 : e.lodRenderer;
|
|
72
|
+
}
|
|
73
|
+
get materials() {
|
|
74
|
+
var e;
|
|
75
|
+
return ((e = this._resources) == null ? void 0 : e.stageResources.materials) ?? [];
|
|
76
|
+
}
|
|
77
|
+
_setMaterialTransparencyParameters(e, t = ((r) => (r = ((s) => (s = this.symbolLayer) == null ? void 0 : s.material)()) == null ? void 0 : r.color)()) {
|
|
78
|
+
const a = this._getCombinedOpacity(t), i = a < 1 || this.needsDrivenTransparentPass;
|
|
79
|
+
return e.transparent = i, e.opacity = a, e.cullFace = i ? B.None : B.Back, e;
|
|
80
|
+
}
|
|
81
|
+
async _createResourcesForPrimitive(e, t) {
|
|
82
|
+
const s = this.symbolLayer, r = Le(Ee(e)), a = b(T(r)), i = b(V(a, s)), o = q(i), n = !1, c = !1, l = { usePBR: this._context.physicalBasedRenderingEnabled, isSchematic: !0, mrrFactors: [...Qe], ambient: E, diffuse: E, hasSlicePlane: this._context.slicePlaneEnabled, hasSliceHighlight: !1, castShadows: this.symbolLayer.castShadows, offsetTransparentBackfaces: !this.symbolLayer.isPrimitive }, p = !!l.usePBR;
|
|
83
|
+
this._setMaterialTransparencyParameters(l);
|
|
84
|
+
const h = this.symbol;
|
|
85
|
+
if (h.type === "point-3d" && h.verticalOffset) {
|
|
86
|
+
const { screenLength: y, minWorldLength: g, maxWorldLength: x } = h.verticalOffset;
|
|
87
|
+
l.verticalOffset = { screenLength: k(y), minWorldLength: g || 0, maxWorldLength: x ?? 1 / 0 }, l.castShadows = !1;
|
|
88
|
+
}
|
|
89
|
+
if (this._context.screenSizePerspectiveEnabled && (l.screenSizePerspective = this._context.sharedResources.screenSizePerspectiveSettings), this._drivenProperties.color)
|
|
90
|
+
l.externalColor = S;
|
|
91
|
+
else {
|
|
92
|
+
const y = s.material != null ? s.material.color : null, g = y != null ? F.toUnitRGBA(y) : S;
|
|
93
|
+
l.externalColor = g;
|
|
94
|
+
}
|
|
95
|
+
this._fastUpdates = ee(this._context.renderer, this._fastVisualVariableConvertOptions(r, i, a, null)), l.isInstanced = !0, this._fastUpdates ? (Object.assign(l, this._fastUpdates.materialParameters), this._optionalFields.push(P.FEATUREATTRIBUTE)) : this._hasPerInstanceColor() && (l.hasInstancedColor = !0, this._optionalFields.push(P.COLOR)), W("enable-feature:objectAndLayerId-rendering") && this._optionalFields.push(P.OBJECTANDLAYERIDCOLOR);
|
|
96
|
+
const m = new Je(l), d = He(e, m);
|
|
97
|
+
if (!d)
|
|
98
|
+
throw new Error(`Unknown object symbol primitive: ${e}`);
|
|
99
|
+
const _ = I(d).map((y) => ({ opacity: 1, transparent: y.parameters.transparent })), f = await this._createStageResources(d, p, t), v = await this._createLodRenderer(d, t);
|
|
100
|
+
return new ae(d, v, f, _, a, n, c, r, i, o, p, null);
|
|
101
|
+
}
|
|
102
|
+
async _createResourcesForUrl(e, t) {
|
|
103
|
+
var H, $;
|
|
104
|
+
const s = { materialParameters: { isInstanced: !0, hasSlicePlane: this._context.slicePlaneEnabled, castShadows: this.symbolLayer.castShadows }, streamDataRequester: this._context.streamDataRequester, cache: this._context.sharedResources.objectResourceCache };
|
|
105
|
+
this._fastUpdates = ee(this._context.renderer, this._fastVisualVariableConvertOptions(null, null, null, null)), this._fastUpdates ? (Object.assign(s.materialParameters, this._fastUpdates.materialParameters), this._optionalFields.push(P.FEATUREATTRIBUTE)) : this._hasPerInstanceColor() && (s.materialParameters.hasInstancedColor = !0, this._optionalFields.push(P.COLOR)), W("enable-feature:objectAndLayerId-rendering") && this._optionalFields.push(P.OBJECTANDLAYERIDCOLOR);
|
|
106
|
+
const r = this.symbol;
|
|
107
|
+
if (r.type === "point-3d" && r.verticalOffset) {
|
|
108
|
+
const { screenLength: u, minWorldLength: C, maxWorldLength: L } = r.verticalOffset;
|
|
109
|
+
s.materialParameters.verticalOffset = { screenLength: k(u), minWorldLength: C || 0, maxWorldLength: L ?? 1 / 0 }, s.materialParameters.castShadows = !1;
|
|
110
|
+
}
|
|
111
|
+
const a = this._context.physicalBasedRenderingEnabled;
|
|
112
|
+
s.signal = t, s.usePBR = a, s.skipHighLods = this._context.skipHighSymbolLods;
|
|
113
|
+
const i = await je(e, s), o = i.isEsriSymbolResource, n = i.isWosr, c = Ve(i.lods), l = this._context, p = this.symbolLayer.material, h = this._getExternalColorParameters(p), m = ($ = (H = this.symbolLayer) == null ? void 0 : H.material) == null ? void 0 : $.color, d = this._getCombinedOpacity(m, { hasIntrinsicColor: !0 }), _ = this.needsDrivenTransparentPass, f = I(c), v = I(c).map((u) => ({ opacity: u.parameters.opacity || 1, transparent: u.parameters.transparent }));
|
|
114
|
+
f.forEach((u) => {
|
|
115
|
+
const C = u.parameters;
|
|
116
|
+
u.setParameters(h);
|
|
117
|
+
const L = C.opacity * d, me = L < 1 || _ || C.transparent;
|
|
118
|
+
u.setParameters({ opacity: L, transparent: me }), l.screenSizePerspectiveEnabled && u.setParameters({ screenSizePerspective: l.sharedResources.screenSizePerspectiveSettings });
|
|
119
|
+
});
|
|
120
|
+
const y = i.referenceBoundingBox, g = b(T(y)), x = b(c.levels[0].pivotOffset), G = b(V(g, this.symbolLayer)), ce = q(G), M = this._fastUpdates;
|
|
121
|
+
te(M, this._context.renderer, this._fastVisualVariableConvertOptions(y, G, g, x)) && f.forEach((u) => u.setParameters(M.materialParameters));
|
|
122
|
+
const he = await this._createStageResources(c, a, t), de = await this._createLodRenderer(c, t);
|
|
123
|
+
return new ae(c, de, he, v, g, o, n, y, G, ce, a, x);
|
|
124
|
+
}
|
|
125
|
+
_addDisposeResource(e) {
|
|
126
|
+
this._disposeResourceHandles.push(e);
|
|
127
|
+
}
|
|
128
|
+
async _createStageResources(e, t, s) {
|
|
129
|
+
const r = this._context.stage, a = I(e);
|
|
130
|
+
t !== this._context.physicalBasedRenderingEnabled && this.physicalBasedRenderingChanged(), r.addMany(a), this._addDisposeResource(() => r.removeMany(a));
|
|
131
|
+
const i = se(e);
|
|
132
|
+
r.addMany(i), this._addDisposeResource(() => {
|
|
133
|
+
i.forEach((n) => n.unload()), r.removeMany(i);
|
|
134
|
+
}), await Promise.all(i.map((n) => this._context.stage.schedule(() => n.load(r.renderView.renderingContext), s))), pe(s);
|
|
135
|
+
const o = re(e);
|
|
136
|
+
return r.addMany(o), this._addDisposeResource(() => r.removeMany(o)), { materials: a, textures: i, geometries: o };
|
|
137
|
+
}
|
|
138
|
+
async _createLodRenderer(e, t) {
|
|
139
|
+
const s = this._context.stage, r = { layerUid: this._context.layer.uid, graphicUid: (n) => this._instanceIndexToGraphicUid.get(n), notifyGraphicGeometryChanged: (n) => this._context.notifyGraphicGeometryChanged(this._instanceIndexToGraphicUid.get(n)), notifyGraphicVisibilityChanged: (n) => this._context.notifyGraphicVisibilityChanged(this._instanceIndexToGraphicUid.get(n)) }, a = this._fastUpdates, i = a ? { applyTransform: (n, c, l) => {
|
|
140
|
+
n.getFeatureAttribute(c, U), ge(l, qe(a.materialParameters, U, l));
|
|
141
|
+
}, scaleFactor: (n, c, l) => {
|
|
142
|
+
c.getFeatureAttribute(l, U), Ne(n, a.materialParameters, U);
|
|
143
|
+
} } : null, o = new Ye({ symbol: e, optionalFields: this._optionalFields, metadata: r, shaderTransformation: i }, this._context.scheduler);
|
|
144
|
+
return o.slicePlaneEnabled = this._context.slicePlaneEnabled, this._addDisposeResource(() => {
|
|
145
|
+
s.removeRenderPlugin(o), o.destroy();
|
|
146
|
+
}), await s.addRenderPlugin(o, t), o;
|
|
147
|
+
}
|
|
148
|
+
_getExternalColorParameters(e) {
|
|
149
|
+
const t = {};
|
|
150
|
+
return this._drivenProperties.color ? t.externalColor = S : (e == null ? void 0 : e.color) != null ? t.externalColor = F.toUnitRGBA(e.color) : (t.externalColor = S, t.colorMixMode = "ignore"), t;
|
|
151
|
+
}
|
|
152
|
+
destroy() {
|
|
153
|
+
super.destroy(), this._cleanupResources();
|
|
154
|
+
}
|
|
155
|
+
_cleanupResources() {
|
|
156
|
+
this._disposeResourceHandles.forEach((e) => e()), this._disposeResourceHandles.length = 0, this._resources = null;
|
|
157
|
+
}
|
|
158
|
+
createGraphics3DGraphic(e) {
|
|
159
|
+
const t = e.graphic;
|
|
160
|
+
if (!this._validateGeometry(t.geometry))
|
|
161
|
+
return null;
|
|
162
|
+
const s = K(t.geometry);
|
|
163
|
+
if (s == null)
|
|
164
|
+
return this.logger.warn(`unsupported geometry type for icon symbol: ${t.geometry.type}`), null;
|
|
165
|
+
const r = this.setGraphicElevationContext(t), a = e.renderingInfo;
|
|
166
|
+
return this._createAs3DShape(t, s, a, r, t.uid, e.layer.uid);
|
|
167
|
+
}
|
|
168
|
+
notifyDestroyGraphicLayer(e) {
|
|
169
|
+
this._instanceIndexToGraphicUid.delete(e.instanceIndex);
|
|
170
|
+
}
|
|
171
|
+
graphicLayerToGraphicId() {
|
|
172
|
+
return 0;
|
|
173
|
+
}
|
|
174
|
+
layerOpacityChanged() {
|
|
175
|
+
var a, i;
|
|
176
|
+
if (this._resources == null)
|
|
177
|
+
return;
|
|
178
|
+
const e = this._drivenProperties.opacity, t = !this._isPrimitive, s = this._resources.stageResources.materials, r = this._resources.originalMaterialParameters;
|
|
179
|
+
for (let o = 0; o < s.length; o++) {
|
|
180
|
+
const n = s[o], c = (i = (a = this.symbolLayer) == null ? void 0 : a.material) == null ? void 0 : i.color, l = r[o], p = this._getCombinedOpacity(c, { hasIntrinsicColor: t }) * l.opacity, h = p < 1 || e || l.transparent;
|
|
181
|
+
n.setParameters({ opacity: p, transparent: h }), this._isPrimitive && n.setParameters({ cullFace: h ? B.None : B.Back });
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
layerElevationInfoChanged(e, t) {
|
|
185
|
+
return this.updateGraphics3DGraphicElevationInfo(e, t, Q);
|
|
186
|
+
}
|
|
187
|
+
slicePlaneEnabledChanged() {
|
|
188
|
+
if (this._resources == null)
|
|
189
|
+
return !0;
|
|
190
|
+
this._resources.lodRenderer.slicePlaneEnabled = this._context.slicePlaneEnabled;
|
|
191
|
+
for (const e of this._resources.stageResources.materials)
|
|
192
|
+
e.setParameters({ hasSlicePlane: this._context.slicePlaneEnabled });
|
|
193
|
+
return !0;
|
|
194
|
+
}
|
|
195
|
+
physicalBasedRenderingChanged() {
|
|
196
|
+
if (this._resources == null)
|
|
197
|
+
return !0;
|
|
198
|
+
const { stageResources: e, isWosr: t } = this._resources;
|
|
199
|
+
for (const s of e.materials)
|
|
200
|
+
this._isPrimitive ? s.setParameters({ usePBR: this._context.physicalBasedRenderingEnabled, isSchematic: !0 }) : t || s.setParameters({ usePBR: this._context.physicalBasedRenderingEnabled, isSchematic: !1 });
|
|
201
|
+
return this._hasLoadedPBRTextures !== !1 || this._context.physicalBasedRenderingEnabled !== !0 || (this._hasLoadedPBRTextures = !0, !1);
|
|
202
|
+
}
|
|
203
|
+
applyRendererDiff(e, t) {
|
|
204
|
+
if (this._resources == null)
|
|
205
|
+
return w.RecreateSymbol;
|
|
206
|
+
const { stageResources: { materials: s }, lodRenderer: r, resourceBoundingBox: a, symbolSize: i, resourceSize: o, pivotOffset: n } = this._resources;
|
|
207
|
+
for (const c in e.diff) {
|
|
208
|
+
if (c !== "visualVariables")
|
|
209
|
+
return w.RecreateSymbol;
|
|
210
|
+
if (!te(this._fastUpdates, t, this._fastVisualVariableConvertOptions(a, i, o, n)))
|
|
211
|
+
return w.RecreateSymbol;
|
|
212
|
+
for (const l of s)
|
|
213
|
+
l.setParameters(this._fastUpdates.materialParameters);
|
|
214
|
+
r.notifyShaderTransformationChanged();
|
|
215
|
+
}
|
|
216
|
+
return w.FastUpdate;
|
|
217
|
+
}
|
|
218
|
+
computeComplexity() {
|
|
219
|
+
if (this._resources == null)
|
|
220
|
+
return super.computeComplexity();
|
|
221
|
+
const e = this._resources.lodResources, t = Te(e.levels), s = (o) => Array.from(o.attributes.values()).reduce((n, c) => n + ue(c.data, c.indices), 0), r = re(e).reduce((o, n) => o + s(n), 0), a = se(e).reduce((o, n) => o + n.memoryEstimate, 0) + r, i = { ...Oe(this.symbol, this.symbolLayer), resourceBytes: a };
|
|
222
|
+
return new $e({ verticesPerFeature: t, memory: i });
|
|
223
|
+
}
|
|
224
|
+
_hasLodRenderer() {
|
|
225
|
+
return this._resources != null;
|
|
226
|
+
}
|
|
227
|
+
_createAs3DShape(e, t, s, r, a, i) {
|
|
228
|
+
if (!this._hasLodRenderer() || this._resources == null)
|
|
229
|
+
return null;
|
|
230
|
+
const o = this.getFastUpdateAttrValues(e), n = this._context.clippingExtent;
|
|
231
|
+
if (xe(t, R, this._context.elevationProvider.spatialReference), n != null && !Se(n, R))
|
|
232
|
+
return null;
|
|
233
|
+
const c = this._requiresTerrainElevation(r), l = this._computeGlobalTransform(t, r, j, A), p = this._computeLocalTransform(this._resources, this.symbolLayer, s, ie), h = this._resources.lodRenderer.instanceData, m = h.addInstance();
|
|
234
|
+
this._instanceIndexToGraphicUid.set(m, a), h.setLocalTransform(m, p, !1), h.setGlobalTransform(m, l), o && h.setFeatureAttribute(m, o), this._fastUpdates == null && this._hasPerInstanceColor() && h.setColor(m, Fe(s.color, s.opacity, 255)), this._context.stage.renderView.objectAndLayerIdRenderHelper != null && h.setObjectAndLayerIdColor(m, this._context.stage.renderView.objectAndLayerIdRenderHelper.getObjectAndLayerIdColor({ graphicUid: a, layerUid: i }));
|
|
235
|
+
const d = new Ue(this, m, we, r);
|
|
236
|
+
return c && (d.alignedSampledElevation = A.sampledElevation), d.needsElevationUpdates = Q(r.mode), X(d, t, this._context.elevationProvider), d;
|
|
237
|
+
}
|
|
238
|
+
_computeGlobalTransform(e, t, s, r) {
|
|
239
|
+
return Be(e, this._context.elevationProvider, t, this._context.renderCoordsHelper, r), R[0] = e.x, R[1] = e.y, R[2] = r.z, ve(e.spatialReference, R, s, this._context.renderCoordsHelper.spatialReference), s;
|
|
240
|
+
}
|
|
241
|
+
_computeLocalTransform(e, t, s, r) {
|
|
242
|
+
return ye(r), this._applyObjectRotation(s, !1, r), this._applyObjectRotation(t, !0, r), this._applyObjectScale(e, s, r), this._applyAnchor(e, t, r), r;
|
|
243
|
+
}
|
|
244
|
+
_applyObjectScale(e, t, s) {
|
|
245
|
+
var i;
|
|
246
|
+
if ((i = this._fastUpdates) != null && i.requiresShaderTransformation)
|
|
247
|
+
return;
|
|
248
|
+
const r = this._drivenProperties.size && t.size ? t.size : e.symbolSize, a = Z(r, e.symbolSize, e.resourceSize, this._context.renderCoordsHelper.unitInMeters);
|
|
249
|
+
a[0] === 1 && a[1] === 1 && a[2] === 1 || fe(s, s, a);
|
|
250
|
+
}
|
|
251
|
+
prepareSymbolLayerPatch(e) {
|
|
252
|
+
if (e.diff.type !== "partial")
|
|
253
|
+
return;
|
|
254
|
+
const t = e.diff.diff;
|
|
255
|
+
this._preparePatchTransform(e, t), this._preparePatchColor(e, t);
|
|
256
|
+
}
|
|
257
|
+
updateGeometry(e, t) {
|
|
258
|
+
if (this._resources == null)
|
|
259
|
+
return !0;
|
|
260
|
+
const s = t && K(t);
|
|
261
|
+
if (s == null)
|
|
262
|
+
return !1;
|
|
263
|
+
const r = this.getGeometryElevationMode(t);
|
|
264
|
+
return e.elevationContext.mode === r && (this._computeGlobalTransform(s, e.elevationContext, j, A), this._requiresTerrainElevation(e.elevationContext) && (e.alignedSampledElevation = A.sampledElevation), this._resources.lodRenderer.instanceData.setGlobalTransform(e.instanceIndex, j, !0), X(e, s, this._context.elevationProvider), !0);
|
|
265
|
+
}
|
|
266
|
+
_preparePatchTransform(e, t) {
|
|
267
|
+
if (!(t.heading || t.tilt || t.roll || t.width || t.height || t.depth || t.anchor || t.anchorPosition) || this._resources == null)
|
|
268
|
+
return;
|
|
269
|
+
const s = (d, _, f) => (d != null && d.type === "complete" ? d.newValue : _) ?? f, r = s(t.heading, this.symbolLayer.heading, 0), a = s(t.tilt, this.symbolLayer.tilt, 0), i = s(t.roll, this.symbolLayer.roll, 0), o = s(t.width, this.symbolLayer.width, void 0), n = s(t.height, this.symbolLayer.height, void 0), c = s(t.depth, this.symbolLayer.depth, void 0), l = s(t.anchor, this.symbolLayer.anchor, void 0), p = s(t.anchorPosition, this.symbolLayer.anchorPosition, void 0);
|
|
270
|
+
delete t.heading, delete t.tilt, delete t.roll, delete t.width, delete t.height, delete t.depth, delete t.anchor, delete t.anchorPosition;
|
|
271
|
+
const h = { heading: r, tilt: a, roll: i, anchor: l, anchorPosition: p }, m = this._resources;
|
|
272
|
+
this.loadStatus === ze.LOADED && e.symbolLayerStatePatches.push(() => {
|
|
273
|
+
m.symbolSize = b(V(m.resourceSize, { width: o, height: n, depth: c, isPrimitive: this.symbolLayer.isPrimitive }));
|
|
274
|
+
}), e.graphics3DGraphicPatches.push((d, _) => {
|
|
275
|
+
const f = this._computeLocalTransform(m, h, _, ie), v = d.instanceIndex;
|
|
276
|
+
m.lodRenderer.instanceData.setLocalTransform(v, f, !0);
|
|
277
|
+
});
|
|
278
|
+
}
|
|
279
|
+
_preparePatchColor(e, t) {
|
|
280
|
+
if (!t.material || t.material.type !== "partial")
|
|
281
|
+
return;
|
|
282
|
+
const s = t.material.diff;
|
|
283
|
+
if (!s.color || s.color.type !== "complete" || s.color.newValue == null || s.color.oldValue == null)
|
|
284
|
+
return;
|
|
285
|
+
const r = s.color.newValue, a = r != null ? F.toUnitRGBA(r) : S;
|
|
286
|
+
delete s.color;
|
|
287
|
+
const i = this._resources;
|
|
288
|
+
i != null && e.graphics3DGraphicPatches.push((o) => {
|
|
289
|
+
let n;
|
|
290
|
+
this._hasPerInstanceColor() ? (i.lodRenderer.instanceData.setColor(o.instanceIndex, a), n = this._setMaterialTransparencyParameters({}, r)) : n = this._setMaterialTransparencyParameters({ externalColor: a }, r);
|
|
291
|
+
for (const c of i.stageResources.materials)
|
|
292
|
+
c.setParameters(n);
|
|
293
|
+
});
|
|
294
|
+
}
|
|
295
|
+
_requiresTerrainElevation(e) {
|
|
296
|
+
return e.mode !== "absolute-height";
|
|
297
|
+
}
|
|
298
|
+
_applyObjectRotation(e, t, s) {
|
|
299
|
+
var r;
|
|
300
|
+
if (!((r = this._fastUpdates) != null && r.requiresShaderTransformation) || !t)
|
|
301
|
+
return De(e.heading, e.tilt, e.roll, s);
|
|
302
|
+
}
|
|
303
|
+
_computeAnchor(e, t, s) {
|
|
304
|
+
const r = ne();
|
|
305
|
+
switch (s.anchor) {
|
|
306
|
+
case "center":
|
|
307
|
+
N(r, O(e)), D(r, r);
|
|
308
|
+
break;
|
|
309
|
+
case "top": {
|
|
310
|
+
const a = O(e);
|
|
311
|
+
Y(r, -a[0], -a[1], -e[5]);
|
|
312
|
+
break;
|
|
313
|
+
}
|
|
314
|
+
case "bottom": {
|
|
315
|
+
const a = O(e);
|
|
316
|
+
Y(r, -a[0], -a[1], -e[2]);
|
|
317
|
+
break;
|
|
318
|
+
}
|
|
319
|
+
case "relative": {
|
|
320
|
+
const a = O(e), i = T(e), o = s.anchorPosition, n = o ? J(o.x, o.y, o.z) : z;
|
|
321
|
+
be(r, i, n), Pe(r, r, a), D(r, r);
|
|
322
|
+
break;
|
|
323
|
+
}
|
|
324
|
+
default:
|
|
325
|
+
t != null ? D(r, t) : N(r, z);
|
|
326
|
+
}
|
|
327
|
+
return r;
|
|
328
|
+
}
|
|
329
|
+
_applyAnchor(e, t, s) {
|
|
330
|
+
var a;
|
|
331
|
+
if ((a = this._fastUpdates) != null && a.requiresShaderTransformation)
|
|
332
|
+
return;
|
|
333
|
+
const r = this._computeAnchor(e.resourceBoundingBox, e.pivotOffset, t);
|
|
334
|
+
r && _e(s, s, r);
|
|
335
|
+
}
|
|
336
|
+
_hasPerInstanceColor() {
|
|
337
|
+
return this._drivenProperties.color || this._drivenProperties.opacity;
|
|
338
|
+
}
|
|
339
|
+
_fastVisualVariableConvertOptions(e, t, s, r) {
|
|
340
|
+
const a = e != null ? b(T(e)) : E, i = e != null ? this._computeAnchor(e, r, this.symbolLayer) : z, o = this._context.renderCoordsHelper.unitInMeters, n = Z(t ?? void 0, t, s, o), c = J(this.symbolLayer.tilt || 0, this.symbolLayer.roll || 0, this.symbolLayer.heading || 0);
|
|
341
|
+
return new ke({ size: !0, color: !0, rotation: !0, opacity: !1 }, a, t ?? E, o, i, n, c);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
const R = ne(), ie = oe(), j = oe(), U = Re(), A = new Ie();
|
|
345
|
+
export {
|
|
346
|
+
Ut as Graphics3DObjectSymbolLayer
|
|
347
|
+
};
|