@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,25 @@
|
|
|
1
|
+
import { dragGraphic as o, resetGraphic as p } from "../../../../interactive/dragEventPipeline.js";
|
|
2
|
+
function l(e, s, c) {
|
|
3
|
+
const n = (r, t) => s({ action: r, graphic: e, dxScreen: t.screenDeltaX, dyScreen: t.screenDeltaY });
|
|
4
|
+
return c((r, t, i) => (t.next((a) => (a.action === "start" && n("start", a), a)).next(o(e)).next((a) => {
|
|
5
|
+
switch (a.action) {
|
|
6
|
+
case "start":
|
|
7
|
+
case "update":
|
|
8
|
+
(a.translationX || a.translationY || a.translationZ) && n("update", a);
|
|
9
|
+
break;
|
|
10
|
+
case "end":
|
|
11
|
+
n("end", a);
|
|
12
|
+
}
|
|
13
|
+
return a;
|
|
14
|
+
}), { steps: t, cancel: i = i.next(p(e)).next((a) => (n("end", { screenDeltaX: 0, screenDeltaY: 0 }), a)) }));
|
|
15
|
+
}
|
|
16
|
+
function d(e) {
|
|
17
|
+
if ((e == null ? void 0 : e.axis) == null)
|
|
18
|
+
return 1;
|
|
19
|
+
const { mapStart: s, mapEnd: c, axis: n } = e, r = [c.x - s.x, c.y - s.y];
|
|
20
|
+
return r[0] * n[0] + r[1] * n[1] > 0 ? 1 : -1;
|
|
21
|
+
}
|
|
22
|
+
export {
|
|
23
|
+
d as axisConstrainedDragSign,
|
|
24
|
+
l as createGraphicMoveDragPipeline
|
|
25
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { makeHandle as m } from "../../../../core/handleUtils.js";
|
|
2
|
+
import { watch as p, syncAndInitial as l } from "../../../../core/reactiveUtils.js";
|
|
3
|
+
import { isRelativeVertexSpace as d } from "../../../../geometry/support/meshVertexSpaceUtils.js";
|
|
4
|
+
import { equals as h } from "../../../../geometry/support/spatialReferenceUtils.js";
|
|
5
|
+
import { MeshTransformUpdateAction as c } from "../../../../layers/graphics/sources/interfaces.js";
|
|
6
|
+
import { ViewingMode as o } from "../../../ViewingMode.js";
|
|
7
|
+
function F(a, e) {
|
|
8
|
+
const { graphic: t } = a;
|
|
9
|
+
return [p(() => a.displaying, (r) => {
|
|
10
|
+
r ? g(t, e) : i(t, e);
|
|
11
|
+
}, { ...l }), m(() => i(t, e))];
|
|
12
|
+
}
|
|
13
|
+
function g(a, e) {
|
|
14
|
+
const { geometry: t } = a;
|
|
15
|
+
f(t, e) && a.notifyMeshTransformChanged({ action: c.EnableFastUpdates });
|
|
16
|
+
}
|
|
17
|
+
function i(a, e) {
|
|
18
|
+
const { geometry: t } = a;
|
|
19
|
+
f(t, e) && a.notifyMeshTransformChanged({ action: c.DisableFastUpdates });
|
|
20
|
+
}
|
|
21
|
+
function f(a, { state: { viewingMode: e }, spatialReference: t }) {
|
|
22
|
+
if ((a == null ? void 0 : a.type) !== "mesh")
|
|
23
|
+
return !1;
|
|
24
|
+
const { vertexSpace: r, spatialReference: s } = a;
|
|
25
|
+
if (!d(r))
|
|
26
|
+
return !1;
|
|
27
|
+
const { type: n } = r;
|
|
28
|
+
return e === o.Global && n === "local" || e === o.Local && h(t, s) && n === "georeferenced" && !s.isGeographic;
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
F as meshTransformFastUpdateHandles,
|
|
32
|
+
i as tryDisableMeshTransformFastUpdates,
|
|
33
|
+
g as tryEnableMeshTransformFastUpdates
|
|
34
|
+
};
|
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
import { _ as d } from "../../../../../chunks/tslib.es6.js";
|
|
2
|
+
import H from "../../../../../core/Collection.js";
|
|
3
|
+
import D from "../../../../../core/Evented.js";
|
|
4
|
+
import { makeHandle as O } from "../../../../../core/handleUtils.js";
|
|
5
|
+
import { destroyMaybe as y } from "../../../../../core/maybe.js";
|
|
6
|
+
import { zeroMeters as T, scale as X } from "../../../../../core/quantityUtils.js";
|
|
7
|
+
import { watch as w, syncAndInitial as Y } from "../../../../../core/reactiveUtils.js";
|
|
8
|
+
import { property as g } from "../../../../../core/accessorSupport/decorators/property.js";
|
|
9
|
+
import "../../../../../core/has.js";
|
|
10
|
+
import "../../../../../core/Logger.js";
|
|
11
|
+
import "../../../../../core/RandomLCG.js";
|
|
12
|
+
import { subclass as k } from "../../../../../core/accessorSupport/decorators/subclass.js";
|
|
13
|
+
import { UpdatingHandles as A } from "../../../../../core/support/UpdatingHandles.js";
|
|
14
|
+
import { makeDehydratedPoint as P } from "../../../../../layers/graphics/dehydratedPoint.js";
|
|
15
|
+
import { getGraphicEffectiveElevationInfo as I, getConvertedElevation as z } from "../../../../../support/elevationInfoUtils.js";
|
|
16
|
+
import { getGraphicAttachmentOrigin as R } from "../../manipulatorUtils.js";
|
|
17
|
+
import { SnappingVisualizer3D as Z } from "../../SnappingVisualizer3D.js";
|
|
18
|
+
import { orientation as V } from "../geometryUtils.js";
|
|
19
|
+
import { SupportedGraphicResult as F } from "../isSupportedGraphicUtils.js";
|
|
20
|
+
import { canMoveZ as C } from "../manipulatorUtils.js";
|
|
21
|
+
import { meshTransformFastUpdateHandles as U } from "../meshFastUpdateUtils.js";
|
|
22
|
+
import { createVisualElements as B } from "../visualElementUtils.js";
|
|
23
|
+
import { discRadius as N } from "../manipulations/config.js";
|
|
24
|
+
import { ManipulationType as m, MoveManipulation as G } from "../manipulations/MoveManipulation.js";
|
|
25
|
+
import { axisConstrainedDragSign as q } from "../manipulations/moveUtils.js";
|
|
26
|
+
import { MoveXYGraphicManipulation as L } from "../manipulations/MoveXYGraphicManipulation.js";
|
|
27
|
+
import { isSupportedGraphic as j } from "./isSupportedGraphic.js";
|
|
28
|
+
import { OutlineVisualElement as b } from "../../visualElements/OutlineVisualElement.js";
|
|
29
|
+
import { GraphicState as J } from "../../../layers/graphics/GraphicState.js";
|
|
30
|
+
import { dragGraphicMany as K, resetGraphicMany as Q } from "../../../../interactive/dragEventPipeline.js";
|
|
31
|
+
import { InteractiveToolBase as W } from "../../../../interactive/InteractiveToolBase.js";
|
|
32
|
+
import { EditGeometryOperations as tt } from "../../../../interactive/editGeometry/EditGeometryOperations.js";
|
|
33
|
+
import $ from "../../../../interactive/sketch/SketchOptions.js";
|
|
34
|
+
import { SnappingContext as it } from "../../../../interactive/snapping/SnappingContext.js";
|
|
35
|
+
import { createSnapDragEventPipelineStep as et } from "../../../../interactive/snapping/SnappingDragPipelineStep.js";
|
|
36
|
+
import { Tooltip as at } from "../../../../interactive/tooltip/Tooltip.js";
|
|
37
|
+
import { TranslateGraphicZTooltipInfo as ot, TranslateGraphicXYTooltipInfo as nt, TranslateGraphicTooltipInfo as st } from "../../../../interactive/tooltip/TranslateTooltipInfos.js";
|
|
38
|
+
import { autoDistanceBetweenPoints2D as x } from "../../../../support/automaticLengthMeasurementUtils.js";
|
|
39
|
+
import { verticalSignedDistanceBetweenPoints as rt } from "../../../../support/euclideanLengthMeasurementUtils.js";
|
|
40
|
+
class pt {
|
|
41
|
+
constructor(t) {
|
|
42
|
+
this.allGraphics = t, this.type = "graphic-move-start";
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
class lt {
|
|
46
|
+
constructor(t, e, a) {
|
|
47
|
+
this.dx = t, this.dy = e, this.allGraphics = a, this.type = "graphic-move";
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
class E {
|
|
51
|
+
constructor(t) {
|
|
52
|
+
this.allGraphics = t, this.type = "graphic-move-stop";
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
const c = "manipulators";
|
|
56
|
+
let u = class extends D.EventedMixin(W) {
|
|
57
|
+
constructor(i) {
|
|
58
|
+
super(i), this._infos = /* @__PURE__ */ new Map(), this.graphics = new H(), this.enableZ = !0, this.sketchOptions = new $(), this.type = "move-3d", this.tooltip = null, this._updatingHandles = new A(), this._moveManipulation = null, this._latestTooltipInfo = null, this._translateGraphicTooltipInfo = null, this._translateGraphicXYTooltipInfo = null, this._translateGraphicZTooltipInfo = null;
|
|
59
|
+
}
|
|
60
|
+
initialize() {
|
|
61
|
+
const { view: i } = this;
|
|
62
|
+
this.addHandles([this.graphics.on("change", (e) => {
|
|
63
|
+
e.removed.forEach((a) => this.removeHandles(a)), this._updateGraphicInfos(e), this._setupFastTransformUpdates(e.added), this._refreshManipulators();
|
|
64
|
+
}), w(() => this.sketchOptions.tooltips.effectiveEnabled, (e) => {
|
|
65
|
+
this.tooltip = e ? new at({ info: this._latestTooltipInfo, view: i }) : y(this.tooltip);
|
|
66
|
+
}, Y)]);
|
|
67
|
+
const t = this.graphics.toArray();
|
|
68
|
+
this._updateGraphicInfos({ added: t, removed: [] }), this._setupFastTransformUpdates(t), this._refreshManipulators(), this.finishToolCreation();
|
|
69
|
+
}
|
|
70
|
+
destroy() {
|
|
71
|
+
this.tooltip = y(this.tooltip), this._moveManipulation = y(this._moveManipulation), this._set("view", null), this._updatingHandles.destroy();
|
|
72
|
+
}
|
|
73
|
+
get updating() {
|
|
74
|
+
return this._updatingHandles.updating;
|
|
75
|
+
}
|
|
76
|
+
reset() {
|
|
77
|
+
}
|
|
78
|
+
_updateGraphicInfos({ added: i, removed: t }) {
|
|
79
|
+
var e;
|
|
80
|
+
for (const a of i) {
|
|
81
|
+
if (j(a) !== F.SUPPORTED)
|
|
82
|
+
continue;
|
|
83
|
+
const o = new ht(a), n = this.view.trackGraphicState(o.state);
|
|
84
|
+
this._infos.set(o.graphic, { info: o, handle: n });
|
|
85
|
+
}
|
|
86
|
+
for (const a of t)
|
|
87
|
+
(e = this._infos.get(a)) == null || e.handle.remove(), this._infos.delete(a);
|
|
88
|
+
}
|
|
89
|
+
_setupFastTransformUpdates(i) {
|
|
90
|
+
const { view: t } = this;
|
|
91
|
+
for (const e of i) {
|
|
92
|
+
const { info: a } = this._infos.get(e);
|
|
93
|
+
this.addHandles(U(a.state, t), e);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
_refreshManipulators() {
|
|
97
|
+
if (this.removeHandles(c), this._moveManipulation = y(this._moveManipulation), this.manipulators.removeAll(), this._infos.size === 0)
|
|
98
|
+
return;
|
|
99
|
+
const i = Array.from(this._infos.values(), ({ info: t }) => t);
|
|
100
|
+
this._createManipulators(i), this._createVisualElements(i), this._updateMoveManipulation(i);
|
|
101
|
+
}
|
|
102
|
+
_createManipulators(i) {
|
|
103
|
+
for (const t of i) {
|
|
104
|
+
const e = t.state;
|
|
105
|
+
t.manipulationXY = new L({ tool: this, view: this.view, graphicState: e }), t.manipulationXY.forEachManipulator((a) => this.addHandles([a.events.on("immediate-click", (o) => {
|
|
106
|
+
this.emit("immediate-click", { ...o, graphic: e.graphic }), o.stopPropagation();
|
|
107
|
+
}), a.events.on("grab-changed", ({ action: o }) => {
|
|
108
|
+
o === "start" ? this._showTooltip(m.XY) : this._hideTooltip();
|
|
109
|
+
})], c)), this.addHandles(t.manipulationXY.createDragPipeline((a, o, n, s) => this._buildDragEventPipeline(i, m.XY, a, o, n, s)), c);
|
|
110
|
+
}
|
|
111
|
+
this._createMoveManipulation(i);
|
|
112
|
+
}
|
|
113
|
+
_createMoveManipulation(i) {
|
|
114
|
+
const t = new G({ tool: this, view: this.view, snapToScene: !1, xyAvailable: !0, xyAxisAvailable: !0, zAvailable: !0, radius: i.length === 1 ? G.radiusForSymbol(i[0].graphic.symbol) : N });
|
|
115
|
+
this._moveManipulation = t, t.elevationInfo = { mode: "absolute-height", offset: 0 }, t.forEachManipulator((n) => {
|
|
116
|
+
this.addHandles(n.events.on("immediate-click", (s) => {
|
|
117
|
+
t.zManipulation.hasManipulator(n) || this.graphics.length !== 1 || this.emit("immediate-click", { ...s, graphic: this.graphics.at(0) }), s.stopPropagation();
|
|
118
|
+
}), c);
|
|
119
|
+
});
|
|
120
|
+
const e = (n) => (s) => {
|
|
121
|
+
this.addHandles([s.events.on("focus-changed", ({ action: p }) => {
|
|
122
|
+
p === "focus" ? this._showTooltip(n) : this._hideTooltip();
|
|
123
|
+
}), s.events.on("grab-changed", () => {
|
|
124
|
+
this._latestTooltipInfo && (this._latestTooltipInfo.distance = T);
|
|
125
|
+
})], c);
|
|
126
|
+
};
|
|
127
|
+
this._moveManipulation.xyManipulation.forEachManipulator(e(m.XY)), this._moveManipulation.xyAxisManipulation.forEachManipulator(e(m.XY_AXIS)), this._moveManipulation.zManipulation.forEachManipulator(e(m.Z));
|
|
128
|
+
const a = () => this._updateMoveManipulation(i);
|
|
129
|
+
for (const n of i)
|
|
130
|
+
this.addHandles([n.state.on("changed", a), w(() => n.state.displaying, a)], c);
|
|
131
|
+
const o = i[i.length - 1];
|
|
132
|
+
this.addHandles(o.state.on("changed", () => this._updateMoveManipulationAngle(o)), c), this.addHandles(t.createDragPipeline((n, s, p, l, h) => this._buildDragEventPipeline(i, n, s, p, l, h), I(o.graphic), o.graphic.geometry.spatialReference, o.graphic), c), this._updateMoveManipulationAngle(o);
|
|
133
|
+
}
|
|
134
|
+
_createVisualElements(i) {
|
|
135
|
+
for (const t of i) {
|
|
136
|
+
const e = t.graphic, a = B({ view: this.view, graphic: e, forEachManipulator: (o) => {
|
|
137
|
+
var n, s;
|
|
138
|
+
(n = t.manipulationXY) == null || n.forEachManipulator(o), (s = this._moveManipulation) == null || s.forEachManipulator(o);
|
|
139
|
+
}, onManipulatorsChanged: () => O() });
|
|
140
|
+
a != null && (t.geometryRepresentation = a.visualElement, t.geometryRepresentation instanceof b && this.addHandles([t.geometryRepresentation.events.on("attachment-origin-changed", () => {
|
|
141
|
+
t.state.isDraped || this._updateMoveManipulation(i);
|
|
142
|
+
}), w(() => t.state.isDraped, () => this._updateMoveManipulation(i))], c), this.addHandles(a, c));
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
_updateMoveManipulationAngle(i) {
|
|
146
|
+
this._moveManipulation && (this._moveManipulation.angle = V(i.graphic.geometry));
|
|
147
|
+
}
|
|
148
|
+
_updateMoveManipulation(i) {
|
|
149
|
+
const t = P(0, 0, 0, this.view.spatialReference);
|
|
150
|
+
let e = 0, a = !1;
|
|
151
|
+
const o = this._moveManipulation;
|
|
152
|
+
if (o) {
|
|
153
|
+
for (const n of i) {
|
|
154
|
+
if (!n.state.displaying)
|
|
155
|
+
continue;
|
|
156
|
+
const s = n.state.graphic;
|
|
157
|
+
this.enableZ && C(s) && (a = !0);
|
|
158
|
+
const p = n.geometryRepresentation instanceof b && !n.state.isDraped ? n.geometryRepresentation.attachmentOrigin : R(this.view, s);
|
|
159
|
+
if (p != null) {
|
|
160
|
+
const { x: l, y: h, z: v } = p;
|
|
161
|
+
t.x += l, t.y += h, v && (t.z ?? (t.z = 0), t.z += v), e++;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
e > 0 ? (t.x /= e, t.y /= e, t.z ?? (t.z = 0), t.z /= e, o.location = t, o.xyManipulation.available = !0, o.xyAxisManipulation.available = !0, o.zManipulation.available = a) : o.available = !1;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
_buildDragEventPipeline(i, t, e, a, o, n) {
|
|
168
|
+
const s = [], p = [];
|
|
169
|
+
let l = null, h = null;
|
|
170
|
+
const v = () => {
|
|
171
|
+
for (const r of s)
|
|
172
|
+
r.dragging = !1;
|
|
173
|
+
s.length = 0, p.length = 0, l = null, h = null, this._moveManipulation && (this._moveManipulation.interactive = !0);
|
|
174
|
+
};
|
|
175
|
+
if (i.length === 1 && t === m.XY) {
|
|
176
|
+
const r = i[0].graphic;
|
|
177
|
+
({ steps: a, cancel: o } = this._buildSnappingPipelineSteps(r, I(r), a, o, n));
|
|
178
|
+
}
|
|
179
|
+
return o = o.next((r) => h == null ? void 0 : h(r)).next(() => (this.emit("graphic-move-stop", new E(p)), this.destroyed || v(), null)), { steps: a = a.next((r) => {
|
|
180
|
+
var _, M;
|
|
181
|
+
if (r.action === "start") {
|
|
182
|
+
s.length = 0, p.length = 0;
|
|
183
|
+
for (const f of i)
|
|
184
|
+
f.dragging || !((_ = f.manipulationXY) != null && _.hasManipulator(e)) && ((M = f.manipulationXY) != null && M.grabbing) || (s.push(f), p.push(f.graphic), f.dragging = !0);
|
|
185
|
+
if (p.length !== 0 && (this._moveManipulation && (this._moveManipulation.interactive = !1), l = K(p), h = Q(p), this.emit("graphic-move-start", new pt(p)), this.destroyed))
|
|
186
|
+
return null;
|
|
187
|
+
}
|
|
188
|
+
return p.length !== 0 ? r : null;
|
|
189
|
+
}).next((r) => l == null ? void 0 : l(r)).next((r) => (this._updateMoveTooltip(t, r), r)).next((r) => {
|
|
190
|
+
switch (r.action) {
|
|
191
|
+
case "start":
|
|
192
|
+
case "update":
|
|
193
|
+
if (r.translationX || r.translationY || r.translationZ) {
|
|
194
|
+
const _ = this.view.toScreen(r.mapStart), M = this.view.toScreen(r.mapEnd), f = M.x - _.x, S = M.y - _.y;
|
|
195
|
+
if (this.emit("graphic-move", new lt(f, S, p)), this.destroyed)
|
|
196
|
+
return null;
|
|
197
|
+
}
|
|
198
|
+
break;
|
|
199
|
+
case "end":
|
|
200
|
+
if (this.emit("graphic-move-stop", new E(p)), this.destroyed)
|
|
201
|
+
return null;
|
|
202
|
+
v();
|
|
203
|
+
}
|
|
204
|
+
return null;
|
|
205
|
+
}), cancel: o };
|
|
206
|
+
}
|
|
207
|
+
_showTooltip(i) {
|
|
208
|
+
this._updateMoveTooltip(i), this._latestTooltipInfo && (this._latestTooltipInfo.distance = T);
|
|
209
|
+
}
|
|
210
|
+
_hideTooltip() {
|
|
211
|
+
var i;
|
|
212
|
+
(i = this.tooltip) == null || i.clear(), this._latestTooltipInfo = null;
|
|
213
|
+
}
|
|
214
|
+
_updateMoveTooltip(i, t) {
|
|
215
|
+
const { sketchOptions: e, tooltip: a } = this;
|
|
216
|
+
switch (i) {
|
|
217
|
+
case m.XY:
|
|
218
|
+
this._latestTooltipInfo = this._translateGraphicTooltipInfo ?? (this._translateGraphicTooltipInfo = new st({ sketchOptions: e })), this._updateMoveTooltipDistance(this._latestTooltipInfo, t, (o, n) => x(o, n));
|
|
219
|
+
break;
|
|
220
|
+
case m.XY_AXIS:
|
|
221
|
+
this._latestTooltipInfo = this._translateGraphicXYTooltipInfo ?? (this._translateGraphicXYTooltipInfo = new nt({ sketchOptions: e })), this._updateMoveTooltipDistance(this._latestTooltipInfo, t, (o, n) => X(x(o, n), q(t)));
|
|
222
|
+
break;
|
|
223
|
+
case m.Z:
|
|
224
|
+
this._latestTooltipInfo = this._translateGraphicZTooltipInfo ?? (this._translateGraphicZTooltipInfo = new ot({ sketchOptions: e })), this._updateMoveTooltipDistance(this._latestTooltipInfo, t, rt);
|
|
225
|
+
}
|
|
226
|
+
this._latestTooltipInfo.sketchOptions = e, a && (a.info = this._latestTooltipInfo);
|
|
227
|
+
}
|
|
228
|
+
_updateMoveTooltipDistance(i, t, e) {
|
|
229
|
+
if (t == null || t.action === "end")
|
|
230
|
+
return;
|
|
231
|
+
const { mapStart: a, mapEnd: o } = t, n = e(a, o);
|
|
232
|
+
i.distance = n ?? T;
|
|
233
|
+
}
|
|
234
|
+
_buildSnappingPipelineSteps(i, t, e, a, o) {
|
|
235
|
+
const n = i.geometry;
|
|
236
|
+
if (n == null || n.type !== "point" && n.type !== "mesh")
|
|
237
|
+
return { steps: e, cancel: a };
|
|
238
|
+
const s = (n.type === "point" ? n : n.anchor).clone(), p = new it({ elevationInfo: t, pointer: o, editGeometryOperations: tt.fromGeometry(s, this.view.state.viewingMode), visualizer: new Z(), excludeFeature: i }), l = this.snappingManager, { snappingStep: h, cancelSnapping: v } = et({ snappingContext: p, snappingManager: l, updatingHandles: this._updatingHandles });
|
|
239
|
+
return a = a.next(v), { steps: e = e.next((r) => (s.z = z(this.view, s, I(i), { mode: "absolute-height", offset: 0 }), { ...r, snapOrigin: p.coordinateHelper.pointToVector(s) })).next(...h), cancel: a };
|
|
240
|
+
}
|
|
241
|
+
};
|
|
242
|
+
d([g({ constructOnly: !0, nonNullable: !0 })], u.prototype, "view", void 0), d([g()], u.prototype, "graphics", void 0), d([g({ constructOnly: !0, nonNullable: !0 })], u.prototype, "enableZ", void 0), d([g({ constructOnly: !0, type: $ })], u.prototype, "sketchOptions", void 0), d([g({ constructOnly: !0 })], u.prototype, "snappingManager", void 0), d([g()], u.prototype, "type", void 0), d([g()], u.prototype, "updating", null), d([g()], u.prototype, "tooltip", void 0), u = d([k("esri.views.3d.interactive.editingTools.graphicMove3D.GraphicMoveTool")], u);
|
|
243
|
+
class ht {
|
|
244
|
+
constructor(t) {
|
|
245
|
+
this.geometryRepresentation = null, this.manipulationXY = null, this.dragging = !1, this.state = new J({ graphic: t });
|
|
246
|
+
}
|
|
247
|
+
get graphic() {
|
|
248
|
+
return this.state.graphic;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
export {
|
|
252
|
+
lt as GraphicMoveEvent,
|
|
253
|
+
pt as GraphicMoveStartEvent,
|
|
254
|
+
E as GraphicMoveStopEvent,
|
|
255
|
+
u as GraphicMoveTool
|
|
256
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import "../../../../../core/has.js";
|
|
2
|
+
import { getGraphicEffectiveElevationMode as a, hasGraphicFeatureExpressionInfo as p } from "../../../../../support/elevationInfoUtils.js";
|
|
3
|
+
import { SupportedGraphicResult as r } from "../isSupportedGraphicUtils.js";
|
|
4
|
+
function n(e) {
|
|
5
|
+
var t;
|
|
6
|
+
if (((t = e.layer) == null ? void 0 : t.type) !== "graphics")
|
|
7
|
+
return r.GRAPHICS_LAYER_MISSING;
|
|
8
|
+
if (e.geometry == null)
|
|
9
|
+
return r.GEOMETRY_MISSING;
|
|
10
|
+
switch (e.geometry.type) {
|
|
11
|
+
case "polygon":
|
|
12
|
+
case "point":
|
|
13
|
+
case "polyline":
|
|
14
|
+
case "mesh":
|
|
15
|
+
break;
|
|
16
|
+
default:
|
|
17
|
+
return r.GEOMETRY_TYPE_UNSUPPORTED;
|
|
18
|
+
}
|
|
19
|
+
return a(e) !== "on-the-ground" && p(e) ? r.ELEVATION_MODE_UNSUPPORTED : r.SUPPORTED;
|
|
20
|
+
}
|
|
21
|
+
export {
|
|
22
|
+
n as isSupportedGraphic
|
|
23
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { removeHandles as z, destroyHandle as v, refHandle as O } from "../../../../core/handleUtils.js";
|
|
2
|
+
import { deg2rad as W } from "../../../../core/mathUtils.js";
|
|
3
|
+
import { watch as d, initial as w } from "../../../../core/reactiveUtils.js";
|
|
4
|
+
import { signal as V } from "../../../../core/signal.js";
|
|
5
|
+
import { s as j } from "../../../../chunks/vec32.js";
|
|
6
|
+
import { create as B } from "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
7
|
+
import { projectPointToVector as F } from "../../../../geometry/projection/projectPointToVector.js";
|
|
8
|
+
import { projectVectorToVector as b } from "../../../../geometry/projection/projectVectorToVector.js";
|
|
9
|
+
import { create as U, empty as X, getMin as Y } from "../../../../geometry/support/aaBoundingBox.js";
|
|
10
|
+
import { containsXY as Z } from "../../../../geometry/support/aaBoundingRect.js";
|
|
11
|
+
import { getGraphicEffectiveElevationInfo as L } from "../../../../support/elevationInfoUtils.js";
|
|
12
|
+
import { GrabbingState as A } from "./GrabbingState.js";
|
|
13
|
+
import { ManipulatorState as k } from "./ManipulatorState.js";
|
|
14
|
+
import { Settings as M } from "./settings.js";
|
|
15
|
+
import { ExtendedLineVisualElement as N } from "../visualElements/ExtendedLineVisualElement.js";
|
|
16
|
+
import { LaserlineVisualElement as C } from "../visualElements/LaserlineVisualElement.js";
|
|
17
|
+
import { PointVisualElement as q } from "../visualElements/PointVisualElement.js";
|
|
18
|
+
import { evaluateElevationAlignmentAtPoint as J } from "../../layers/graphics/elevationAlignmentUtils.js";
|
|
19
|
+
import { ElevationContext as K } from "../../layers/graphics/ElevationContext.js";
|
|
20
|
+
import { GraphicState as Q } from "../../layers/graphics/GraphicState.js";
|
|
21
|
+
import { RenderOccludedFlag as _ } from "../../webgl-engine/lib/Material.js";
|
|
22
|
+
function be(n) {
|
|
23
|
+
const { view: e, graphic: a } = n, r = new Q({ graphic: a }), t = [], s = te(n, r, t);
|
|
24
|
+
return ee(n, r, t, s), t.push(e.trackGraphicState(r)), { visualElement: s, remove: () => z(t) };
|
|
25
|
+
}
|
|
26
|
+
function ee(n, e, a, r) {
|
|
27
|
+
const { view: t, graphic: s } = n, i = new M({ getTheme: () => t.effectiveTheme }), h = new N({ view: t, extensionType: i.visualElements.zVerticalLine.extensionType, innerWidth: 1, attached: !1, writeDepthEnabled: !1, renderOccluded: _.OccludeAndTransparent, isDecoration: !0 });
|
|
28
|
+
a.push(d(() => i.visualElements.zVerticalLine, (o) => o.apply(h), w));
|
|
29
|
+
const c = new C({ view: t, intersectsLineInfinite: !0, attached: !1, isDecoration: !0 }), p = W(i.visualElements.heightPlaneAngleCutoff), u = new C({ view: t, attached: !1, angleCutoff: p, isDecoration: !0 }), f = L(n.graphic), x = K.fromElevationInfo(f), R = f.mode === "on-the-ground" || !f.offset && f.mode !== "absolute-height", y = new k(), P = V(1);
|
|
30
|
+
a.push(d(() => ({ heightPlane: i.visualElements.heightPlane, alpha: P.value }), ({ heightPlane: o, alpha: m }) => o.apply(u, m), w));
|
|
31
|
+
const $ = V(1);
|
|
32
|
+
a.push(d(() => ({ shadowStyle: i.visualElements.pointGraphics.shadowStyle, alpha: $.value }), ({ shadowStyle: o, alpha: m }) => o.apply(c, m), w));
|
|
33
|
+
const g = () => {
|
|
34
|
+
y.update(n);
|
|
35
|
+
const o = E(s), m = R && (e.isDraped || o == null || !o.hasZ);
|
|
36
|
+
let D = !0;
|
|
37
|
+
if (m || o == null)
|
|
38
|
+
D = !1;
|
|
39
|
+
else {
|
|
40
|
+
const I = J(o, t.elevationProvider, x, t.renderCoordsHelper);
|
|
41
|
+
j(l, o.x, o.y, I), b(l, o.spatialReference, l, t.renderCoordsHelper.spatialReference), h.setStartEndFromWorldDownAtLocation(l), c.intersectsWorldUpAtLocation = l;
|
|
42
|
+
}
|
|
43
|
+
const G = y.grabbingState & A.Z ? i.visualElements.laserlineAlphaMultiplier : 1;
|
|
44
|
+
P.value = G;
|
|
45
|
+
const S = X(oe);
|
|
46
|
+
!m && e.displaying && r.calculateMapBounds(S) && b(Y(S, l), t.spatialReference, l, t.renderCoordsHelper.spatialReference) ? (u.heightManifoldTarget = l, u.attached = !0) : u.attached = !1;
|
|
47
|
+
const H = y.grabbingState & A.XY ? i.visualElements.laserlineAlphaMultiplier : 1;
|
|
48
|
+
$.value = H;
|
|
49
|
+
const T = D && e.displaying && !m;
|
|
50
|
+
c.attached = T, h.attached = T;
|
|
51
|
+
};
|
|
52
|
+
a.push(d(() => [e.displaying, e.isDraped], g), e.on("changed", g)), n.forEachManipulator((o) => {
|
|
53
|
+
a.push(o.events.on("grab-changed", g));
|
|
54
|
+
}), a.push(v(c)), a.push(v(h)), a.push(v(u)), g();
|
|
55
|
+
}
|
|
56
|
+
function te(n, e, a) {
|
|
57
|
+
const { view: r, graphic: t } = n, s = new q({ view: r, geometry: E(t), elevationInfo: L(t), isDecoration: !0 });
|
|
58
|
+
return ae(n, s, e, a), a.push(v(s)), s;
|
|
59
|
+
}
|
|
60
|
+
function E(n) {
|
|
61
|
+
const e = n.geometry;
|
|
62
|
+
return e == null ? null : e.type === "point" ? e : e.type === "mesh" ? e.anchor.clone() : null;
|
|
63
|
+
}
|
|
64
|
+
function ae(n, e, a, r) {
|
|
65
|
+
const t = () => {
|
|
66
|
+
e.attached = a.displaying;
|
|
67
|
+
}, s = new M({ getTheme: () => n.view.effectiveTheme });
|
|
68
|
+
ne(n, e, a, r), s.visualElements.pointGraphics.outline.apply(e), r.push(d(() => a.displaying, t, w));
|
|
69
|
+
}
|
|
70
|
+
function ne(n, e, a, r) {
|
|
71
|
+
const { view: t, graphic: s } = n;
|
|
72
|
+
let i = null;
|
|
73
|
+
const h = (p) => {
|
|
74
|
+
i != null && (i.remove(), i = null), a.isDraped && p != null && (i = ie(t, p, () => {
|
|
75
|
+
e.geometry = p;
|
|
76
|
+
}));
|
|
77
|
+
}, c = () => {
|
|
78
|
+
const p = E(s);
|
|
79
|
+
h(p), e.geometry = p;
|
|
80
|
+
};
|
|
81
|
+
r.push(a.on("changed", c), O(() => i)), c();
|
|
82
|
+
}
|
|
83
|
+
function ie(n, e, a) {
|
|
84
|
+
const r = n.elevationProvider.spatialReference;
|
|
85
|
+
F(e, l, r);
|
|
86
|
+
const t = l[0], s = l[1];
|
|
87
|
+
return n.elevationProvider.on("elevation-change", (i) => {
|
|
88
|
+
Z(i.extent, t, s) && a();
|
|
89
|
+
});
|
|
90
|
+
}
|
|
91
|
+
const l = B(), oe = U();
|
|
92
|
+
export {
|
|
93
|
+
be as createVisualElements
|
|
94
|
+
};
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { _ as n } from "../../../../../chunks/tslib.es6.js";
|
|
2
|
+
import s from "../../../../../core/Evented.js";
|
|
3
|
+
import { destroyMaybe as h } from "../../../../../core/maybe.js";
|
|
4
|
+
import { watch as r, syncAndInitial as l, sync as c } from "../../../../../core/reactiveUtils.js";
|
|
5
|
+
import { property as a } from "../../../../../core/accessorSupport/decorators/property.js";
|
|
6
|
+
import "../../../../../core/has.js";
|
|
7
|
+
import "../../../../../core/Logger.js";
|
|
8
|
+
import "../../../../../core/RandomLCG.js";
|
|
9
|
+
import { subclass as d } from "../../../../../core/accessorSupport/decorators/subclass.js";
|
|
10
|
+
import { SupportedGraphicResult as y } from "../isSupportedGraphicUtils.js";
|
|
11
|
+
import { geometryOfSupportedGraphic as m, isSupportedGraphic as u } from "./isSupportedGraphic.js";
|
|
12
|
+
import { ReshapeOperation as g } from "./ReshapeOperation.js";
|
|
13
|
+
import { InteractiveToolBase as _ } from "../../../../interactive/InteractiveToolBase.js";
|
|
14
|
+
import p from "../../../../interactive/sketch/SketchOptions.js";
|
|
15
|
+
let o = class extends s.EventedMixin(_) {
|
|
16
|
+
constructor(e) {
|
|
17
|
+
super(e), this._internalGeometryUpdate = !1, this.enableZShape = !0, this.enableZVertex = !0, this.enableMoveGraphic = !0, this.enableMidpoints = !0, this.enableEdgeOffset = !1, this.type = "reshape-3d", this.sketchOptions = new p(), this.snappingManager = null, this.automaticManipulatorSelection = !1;
|
|
18
|
+
}
|
|
19
|
+
initialize() {
|
|
20
|
+
const e = this._reshapeOperation = new g({ tool: this });
|
|
21
|
+
this.addHandles([e.on("reshape", (t) => {
|
|
22
|
+
t.type === "reshape" && this._onReshapeGeometryChanged(), this.emit("reshape", t);
|
|
23
|
+
}), e.on("move", (t) => {
|
|
24
|
+
t.type === "move" && this._onReshapeGeometryChanged(), this.emit("move", t);
|
|
25
|
+
}), e.on("vertex-add", (t) => {
|
|
26
|
+
this._onReshapeGeometryChanged(), this.emit("vertex-add", t);
|
|
27
|
+
}), e.on("vertex-remove", (t) => {
|
|
28
|
+
this._onReshapeGeometryChanged(), this.emit("vertex-remove", t);
|
|
29
|
+
}), e.on("immediate-click", (t) => this.emit("immediate-click", t)), this.view.on("pointer-down", ["Shift"], (t) => t.stopPropagation()), r(() => this.graphic, () => this._updateGraphic(), l)]), this.finishToolCreation();
|
|
30
|
+
}
|
|
31
|
+
destroy() {
|
|
32
|
+
this._reshapeOperation = h(this._reshapeOperation);
|
|
33
|
+
}
|
|
34
|
+
get updating() {
|
|
35
|
+
var e;
|
|
36
|
+
return ((e = this._reshapeOperation) == null ? void 0 : e.updating) ?? !1;
|
|
37
|
+
}
|
|
38
|
+
_updateGeometry() {
|
|
39
|
+
const e = m(this.graphic);
|
|
40
|
+
this._reshapeOperation.inputGeometry = e != null ? e.clone() : null;
|
|
41
|
+
}
|
|
42
|
+
_updateGraphic() {
|
|
43
|
+
if (this.removeHandles("onGraphicGeometryChange"), this._updateGeometry(), u(this.graphic) !== y.SUPPORTED)
|
|
44
|
+
return;
|
|
45
|
+
const e = r(() => {
|
|
46
|
+
var t;
|
|
47
|
+
return (t = this.graphic) == null ? void 0 : t.geometry;
|
|
48
|
+
}, () => {
|
|
49
|
+
this._internalGeometryUpdate === !1 && this._updateGeometry();
|
|
50
|
+
}, c);
|
|
51
|
+
this.addHandles(e, "onGraphicGeometryChange");
|
|
52
|
+
}
|
|
53
|
+
onManipulatorSelectionChanged() {
|
|
54
|
+
this._reshapeOperation && this._reshapeOperation.onManipulatorSelectionChanged();
|
|
55
|
+
}
|
|
56
|
+
_updateGeometryInternally(e) {
|
|
57
|
+
this._internalGeometryUpdate = !0;
|
|
58
|
+
const { graphic: t } = this, { geometry: i } = t;
|
|
59
|
+
(i == null ? void 0 : i.type) === "mesh" && e.type === "point" ? (t.geometry = i.centerAt(e), t.notifyGeometryChanged()) : t.geometry = e, this._internalGeometryUpdate = !1;
|
|
60
|
+
}
|
|
61
|
+
_onReshapeGeometryChanged() {
|
|
62
|
+
const { outputGeometry: e } = this._reshapeOperation;
|
|
63
|
+
this.graphic != null && e && this._updateGeometryInternally(e.clone());
|
|
64
|
+
}
|
|
65
|
+
get canUndo() {
|
|
66
|
+
return this._reshapeOperation.canUndo ?? !1;
|
|
67
|
+
}
|
|
68
|
+
undo() {
|
|
69
|
+
this.snappingManager != null && this.snappingManager.doneSnapping();
|
|
70
|
+
const e = this._reshapeOperation.undo(), { outputGeometry: t } = this._reshapeOperation;
|
|
71
|
+
e && t && this._updateGeometryInternally(t.clone());
|
|
72
|
+
}
|
|
73
|
+
get canRedo() {
|
|
74
|
+
return this._reshapeOperation.canRedo ?? !1;
|
|
75
|
+
}
|
|
76
|
+
redo() {
|
|
77
|
+
this.snappingManager != null && this.snappingManager.doneSnapping();
|
|
78
|
+
const e = this._reshapeOperation.redo(), { outputGeometry: t } = this._reshapeOperation;
|
|
79
|
+
e && t && this._updateGeometryInternally(t.clone());
|
|
80
|
+
}
|
|
81
|
+
onInputEvent(e) {
|
|
82
|
+
e.type !== "key-down" || e.key !== "Delete" && e.key !== "Backspace" || this._reshapeOperation.removeSelectedVertices();
|
|
83
|
+
}
|
|
84
|
+
reset() {
|
|
85
|
+
}
|
|
86
|
+
get test() {
|
|
87
|
+
return { snappingManager: this.snappingManager, reshapeOperation: this._reshapeOperation };
|
|
88
|
+
}
|
|
89
|
+
};
|
|
90
|
+
n([a()], o.prototype, "_reshapeOperation", void 0), n([a({ constructOnly: !0, nonNullable: !0 })], o.prototype, "view", void 0), n([a({ constructOnly: !0 })], o.prototype, "graphic", void 0), n([a({ constructOnly: !0, nonNullable: !0 })], o.prototype, "enableZShape", void 0), n([a({ constructOnly: !0, nonNullable: !0 })], o.prototype, "enableZVertex", void 0), n([a({ constructOnly: !0, nonNullable: !0 })], o.prototype, "enableMoveGraphic", void 0), n([a({ constructOnly: !0, nonNullable: !0 })], o.prototype, "enableMidpoints", void 0), n([a({ constructOnly: !0, nonNullable: !0 })], o.prototype, "enableEdgeOffset", void 0), n([a()], o.prototype, "type", void 0), n([a({ constructOnly: !0, type: p })], o.prototype, "sketchOptions", void 0), n([a({ constructOnly: !0 })], o.prototype, "snappingManager", void 0), n([a()], o.prototype, "updating", null), n([a()], o.prototype, "automaticManipulatorSelection", void 0), o = n([d("esri.views.3d.interactive.editingTools.graphicReshape3D.GraphicReshapeTool")], o);
|
|
91
|
+
export {
|
|
92
|
+
o as GraphicReshapeTool
|
|
93
|
+
};
|