@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,39 @@
|
|
|
1
|
+
import { createRenderScreenPointArray3 as c } from "../../../../../core/screenUtils.js";
|
|
2
|
+
import { fromValues as p } from "../../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
3
|
+
import { b as f, E as u, p as g, f as R } from "../../../../../chunks/vec32.js";
|
|
4
|
+
import { create as a } from "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
5
|
+
import { getNormal as m, fromPositionAndNormal as C, create as E } from "../../../../../geometry/support/plane.js";
|
|
6
|
+
import { makeDehydratedPoint as x } from "../../../../../layers/graphics/dehydratedPoint.js";
|
|
7
|
+
import { PlaneType as i, OffsetEdgeVertex as O } from "../../../../interactive/editGeometry/operations/OffsetEdgeVertex.js";
|
|
8
|
+
function Y(o, e, n) {
|
|
9
|
+
const t = n.mode === "on-the-ground" ? i.XY : i.XYZ;
|
|
10
|
+
return new O(o, t, e, 0);
|
|
11
|
+
}
|
|
12
|
+
function A(o, e, n) {
|
|
13
|
+
const t = a();
|
|
14
|
+
if (!o.renderCoordsHelper.toRenderCoords(e, t))
|
|
15
|
+
return null;
|
|
16
|
+
const r = l(o, e, m(n.plane)), s = l(o, e, n.edgeDirection);
|
|
17
|
+
if (r == null || s == null)
|
|
18
|
+
return null;
|
|
19
|
+
const d = f(a(), r, s);
|
|
20
|
+
return C(t, d, E());
|
|
21
|
+
}
|
|
22
|
+
function l(o, e, n) {
|
|
23
|
+
const t = x(e.x + n[0], e.y + n[1], e.z + n[2], e.spatialReference), r = a(), s = a();
|
|
24
|
+
return o.renderCoordsHelper.toRenderCoords(e, r) && o.renderCoordsHelper.toRenderCoords(t, s) ? u(s, r, s) : null;
|
|
25
|
+
}
|
|
26
|
+
function D(o, e, n) {
|
|
27
|
+
const t = m(o), r = u(a(), e, n), s = f(a(), r, t), d = f(a(), r, s);
|
|
28
|
+
return p(r[0], r[1], r[2], 0, s[0], s[1], s[2], 0, d[0], d[1], d[2], 0, 0, 0, 0, 1);
|
|
29
|
+
}
|
|
30
|
+
function N(o, e, n) {
|
|
31
|
+
const t = n.projectToRenderScreen(o, c()), r = n.projectToRenderScreen(e, c());
|
|
32
|
+
return t != null && r != null ? g(R(t, t, r)) : 0;
|
|
33
|
+
}
|
|
34
|
+
export {
|
|
35
|
+
A as createEdgeOffsetIntersectionPlane,
|
|
36
|
+
Y as createEdgeOffsetOperation,
|
|
37
|
+
D as edgeOffsetRotationMatrix,
|
|
38
|
+
N as screenEdgeLengthSquared
|
|
39
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import l from "../../../../../geometry/Circle.js";
|
|
2
|
+
import { getGraphicEffectiveElevationMode as i, hasGraphicFeatureExpressionInfo as p } from "../../../../../support/elevationInfoUtils.js";
|
|
3
|
+
import { SupportedGraphicResult as r } from "../isSupportedGraphicUtils.js";
|
|
4
|
+
function E(e) {
|
|
5
|
+
return n(e).result;
|
|
6
|
+
}
|
|
7
|
+
function c(e) {
|
|
8
|
+
return n(e).geometry;
|
|
9
|
+
}
|
|
10
|
+
function n(e) {
|
|
11
|
+
var u;
|
|
12
|
+
if (((u = e.layer) == null ? void 0 : u.type) !== "graphics")
|
|
13
|
+
return { result: r.GRAPHICS_LAYER_MISSING, geometry: null };
|
|
14
|
+
const { geometry: o } = e;
|
|
15
|
+
if (o == null)
|
|
16
|
+
return { result: r.GEOMETRY_MISSING, geometry: null };
|
|
17
|
+
if (i(e) !== "on-the-ground" && p(e))
|
|
18
|
+
return { result: r.ELEVATION_MODE_UNSUPPORTED, geometry: null };
|
|
19
|
+
const t = o.type;
|
|
20
|
+
return t !== "point" && t !== "mesh" && t !== "polyline" && (t !== "polygon" || e.geometry instanceof l) ? { result: r.GEOMETRY_TYPE_UNSUPPORTED, geometry: null } : { result: r.SUPPORTED, geometry: o };
|
|
21
|
+
}
|
|
22
|
+
export {
|
|
23
|
+
c as geometryOfSupportedGraphic,
|
|
24
|
+
E as isSupportedGraphic
|
|
25
|
+
};
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { _ as n } from "../../../../chunks/tslib.es6.js";
|
|
2
|
+
import o from "../../../../Color.js";
|
|
3
|
+
import w from "../../../../core/Accessor.js";
|
|
4
|
+
import { getContrast as O, desaturate as m, multiplyOpacity as p, unitRGBAFromColor as s } from "../../../../core/colorUtils.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 y } from "../../../../core/accessorSupport/decorators/subclass.js";
|
|
10
|
+
import { ExtensionType as C } from "../visualElements/ExtendedLineVisualElement.js";
|
|
11
|
+
import { RenderOccludedFlag as r } from "../../webgl-engine/lib/Material.js";
|
|
12
|
+
import { createStipplePatternSimple as A } from "../../webgl-engine/materials/lineStippleUtils.js";
|
|
13
|
+
const c = 0.3;
|
|
14
|
+
function h(l, t) {
|
|
15
|
+
t && Object.assign(l, t);
|
|
16
|
+
}
|
|
17
|
+
class W {
|
|
18
|
+
constructor(t) {
|
|
19
|
+
this.height = 90, this.coneHeight = 40, this.coneWidth = 23, this.width = 3, this.renderOccluded = r.Opaque, this.color = t.accent;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
class u {
|
|
23
|
+
constructor({ colors: t, ...e }) {
|
|
24
|
+
this.size = 11, this.outlineSize = 1, this.collisionPadding = 9, this.color = t.accent, this.outlineColor = t.outline, this.renderOccluded = r.Opaque, this.hoverOutlineColor = t.selectedOutline, h(this, e);
|
|
25
|
+
}
|
|
26
|
+
applyColor(t) {
|
|
27
|
+
this._apply(this.color, t);
|
|
28
|
+
}
|
|
29
|
+
applyOutline(t) {
|
|
30
|
+
this._apply(this.outlineColor, t);
|
|
31
|
+
}
|
|
32
|
+
applyHoverOutline(t) {
|
|
33
|
+
this._apply(this.hoverOutlineColor, t);
|
|
34
|
+
}
|
|
35
|
+
_apply(t, e) {
|
|
36
|
+
e.setParameters({ color: s(t), renderOccluded: this.renderOccluded });
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
class S {
|
|
40
|
+
constructor({ colors: t, ...e }) {
|
|
41
|
+
this.size = 40, this.height = 0.2, this.offset = 0.25, this.collisionPadding = 2, this.renderOccluded = r.Transparent, this.minSquaredEdgeLength = 900, this.color = p(t.accent, 0.5), this.hoverColor = t.accent, h(this, e);
|
|
42
|
+
}
|
|
43
|
+
applyColor(t) {
|
|
44
|
+
this._apply(this.color, t);
|
|
45
|
+
}
|
|
46
|
+
applyHover(t) {
|
|
47
|
+
this._apply(this.hoverColor, t);
|
|
48
|
+
}
|
|
49
|
+
_apply(t, e) {
|
|
50
|
+
e.setParameters({ color: s(t), renderOccluded: this.renderOccluded });
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
class z {
|
|
54
|
+
constructor(t) {
|
|
55
|
+
this.vertex = new u({ colors: t, color: t.accent, outlineColor: t.outline }), this.edge = new u({ colors: t, color: m(p(t.accent, 2 / 3), 0.5), outlineColor: p(t.outline, 0.5), size: 8, collisionPadding: 8 }), this.selected = new u({ colors: t, color: t.selected, outlineColor: t.outline }), this.edgeOffset = new S({ colors: t });
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
class f {
|
|
59
|
+
constructor({ colors: t, ...e }) {
|
|
60
|
+
this.width = 1.5, this.stipplePattern = A(3.3), this.falloff = 0, this.innerWidth = 1.5, this.renderOccluded = r.OccludeAndTransparent, this.color = t.selected, this.stippleOffColor = t.outline, this.innerColor = t.selected, h(this, e);
|
|
61
|
+
}
|
|
62
|
+
apply(t) {
|
|
63
|
+
t.color = s(this.color), t.width = this.width, t.stipplePattern = this.stipplePattern, t.stippleOffColor = s(this.stippleOffColor), t.falloff = this.falloff, t.innerWidth = this.innerWidth, t.innerColor = s(this.innerColor), t.renderOccluded = this.renderOccluded;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
class b {
|
|
67
|
+
constructor({ colors: t, ...e }) {
|
|
68
|
+
this.size = 4, this.outlineSize = 1, this.shape = "square", this.color = t.selected, this.outlineColor = t.outline, h(this, e);
|
|
69
|
+
}
|
|
70
|
+
apply(t) {
|
|
71
|
+
t.color = s(this.color), t.size = this.size, t.outlineSize = this.outlineSize, t.outlineColor = s(this.outlineColor), t.primitive = this.shape;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
class d {
|
|
75
|
+
constructor({ colors: t, ...e }) {
|
|
76
|
+
this.innerWidth = 1, this.glowWidth = 8, this.glowFalloff = 8, this.globalAlpha = c, this.globalAlphaContrastBoost = 1.5, this.radius = 3, this.innerColor = t.selected, this.glowColor = t.accent, this.heightFillColor = t.accent, h(this, e);
|
|
77
|
+
}
|
|
78
|
+
apply(t, e = 1) {
|
|
79
|
+
const g = { glowColor: o.toUnitRGB(this.glowColor), glowFalloff: this.glowFalloff, glowWidth: this.glowWidth, innerColor: o.toUnitRGB(this.innerColor), innerWidth: this.innerWidth, globalAlpha: this.globalAlpha * e * this.glowColor.a, globalAlphaContrastBoost: this.globalAlphaContrastBoost, intersectsLineRadius: this.radius };
|
|
80
|
+
"style" in t ? t.style = g : t.laserlineStyle = g;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
class v {
|
|
84
|
+
constructor(t) {
|
|
85
|
+
this.outline = new f({ colors: t, color: t.stippleOff, renderOccluded: r.OccludeAndTransparentStencil, stippleOffColor: t.stippleOn, innerWidth: 0 }), this.staged = new f({ colors: t, color: t.stippleOn, renderOccluded: r.OccludeAndTransparentStencil, innerColor: t.stagedSolid, stippleOffColor: t.stippleOff }), this.shadowStyle = new d({ colors: t, globalAlpha: c, glowColor: t.accent, glowFalloff: 8, glowWidth: 8, innerColor: t.selected, innerWidth: 1 });
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
class P {
|
|
89
|
+
constructor(t) {
|
|
90
|
+
this.outline = new b({ colors: t, color: t.selected, outlineColor: t.outline, outlineSize: 1, shape: "circle", size: 4 }), this.shadowStyle = new d({ colors: t, globalAlpha: c, glowColor: t.accent, glowFalloff: 1.5, glowWidth: 6, innerColor: t.selected, innerWidth: 1, radius: 2 });
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
class F extends f {
|
|
94
|
+
constructor({ colors: t, ...e }) {
|
|
95
|
+
super({ colors: t }), this.extensionType = C.GROUND_RAY, h(this, e);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
class T {
|
|
99
|
+
constructor(t) {
|
|
100
|
+
this.laserlineAlphaMultiplier = 1.5, this.heightPlaneAngleCutoff = 20, this.lineGraphics = new v(t), this.pointGraphics = new P(t), this.heightPlane = new d({ colors: t, globalAlpha: c, glowColor: t.accent, glowFalloff: 8, glowWidth: 8, innerColor: t.selected, innerWidth: 1 }), this.heightBox = new d({ colors: t, globalAlpha: c, glowColor: t.accent, glowFalloff: 8, glowWidth: 8, innerColor: t.selected, innerWidth: 0, heightFillColor: t.accent }), this.zVerticalLine = new F({ colors: t, color: p(t.accent, 5 * c / 3), falloff: 2, innerColor: p(t.selected, 0), renderOccluded: r.OccludeAndTransparent, stipplePattern: null, width: 5, extensionType: C.GROUND_RAY });
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
let i = class extends w {
|
|
104
|
+
constructor(t) {
|
|
105
|
+
super(t);
|
|
106
|
+
}
|
|
107
|
+
get colors() {
|
|
108
|
+
const t = this.getTheme().accentColor, e = t.a;
|
|
109
|
+
return { accent: t, contrast: O(t), selected: o.fromArray([255, 255, 255, e]), selectedOutline: o.fromArray([255, 255, 255, e]), staged: o.fromArray([12, 207, 255, e]), stagedSolid: o.fromArray([12, 207, 255, 1]), outline: o.fromArray([0, 0, 0, 0.5 * e]), stippleOn: o.fromArray([255, 255, 255, 1]), stippleOff: o.fromArray([0, 0, 0, 0.5]) };
|
|
110
|
+
}
|
|
111
|
+
get visualElements() {
|
|
112
|
+
return new T(this.colors);
|
|
113
|
+
}
|
|
114
|
+
get manipulators() {
|
|
115
|
+
return new z(this.colors);
|
|
116
|
+
}
|
|
117
|
+
get zManipulator() {
|
|
118
|
+
return new W(this.colors);
|
|
119
|
+
}
|
|
120
|
+
};
|
|
121
|
+
n([a()], i.prototype, "colors", null), n([a()], i.prototype, "visualElements", null), n([a()], i.prototype, "manipulators", null), n([a()], i.prototype, "zManipulator", null), n([a()], i.prototype, "getTheme", void 0), i = n([y("esri.views.3d.interactive.editingTools.settings.Settings")], i);
|
|
122
|
+
export {
|
|
123
|
+
i as Settings
|
|
124
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { getZForElevationMode as i } from "../../../../../support/elevationInfoUtils.js";
|
|
2
|
+
import { EventPipeline as l } from "../../../../interactive/dragEventPipeline.js";
|
|
3
|
+
class h {
|
|
4
|
+
constructor() {
|
|
5
|
+
this._view = null, this._elevationInfo = null, this._lastDragEvent = null, this._next = null, this._enabled = !1;
|
|
6
|
+
}
|
|
7
|
+
get enabled() {
|
|
8
|
+
return this._enabled;
|
|
9
|
+
}
|
|
10
|
+
set enabled(t) {
|
|
11
|
+
if (this._enabled !== t && this._lastDragEvent != null && this._next != null) {
|
|
12
|
+
const n = this._lastDragEvent.mapEnd, a = this._snap(this._lastDragEvent.screenEnd);
|
|
13
|
+
if (a != null) {
|
|
14
|
+
const e = { action: "update", mapStart: this._lastDragEvent.mapStart, mapEnd: t === !0 ? a : n, screenStart: this._lastDragEvent.screenEnd, screenEnd: this._lastDragEvent.screenEnd };
|
|
15
|
+
this._next.execute(e);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
this._enabled = t;
|
|
19
|
+
}
|
|
20
|
+
_snap(t) {
|
|
21
|
+
const n = this._view != null ? this._view.toMap(t, { exclude: [] }) : null;
|
|
22
|
+
return n != null && this._view != null && (n.z = i(n, this._view, this._elevationInfo)), n;
|
|
23
|
+
}
|
|
24
|
+
createDragEventPipelineStep(t, n) {
|
|
25
|
+
this._view = t, this._elevationInfo = n, this._lastDragEvent = null;
|
|
26
|
+
const a = new l();
|
|
27
|
+
return this._next = a, [(e) => {
|
|
28
|
+
if (this._lastDragEvent = e.action !== "end" ? { ...e } : null, this._enabled) {
|
|
29
|
+
const s = this._snap(e.screenEnd);
|
|
30
|
+
return s != null ? { action: e.action, mapStart: e.mapStart, mapEnd: s, screenStart: e.screenStart, screenEnd: e.screenEnd } : null;
|
|
31
|
+
}
|
|
32
|
+
return { action: e.action, mapStart: e.mapStart, mapEnd: e.mapEnd, screenStart: e.screenStart, screenEnd: e.screenEnd };
|
|
33
|
+
}, a];
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
export {
|
|
37
|
+
h as SnapToScene
|
|
38
|
+
};
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { zeroMeters as s } from "../../../../../core/quantityUtils.js";
|
|
2
|
+
import { rotateZ as l } from "../../../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
3
|
+
import { f as c } from "../../../../../chunks/vec32.js";
|
|
4
|
+
import { clone as m } from "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
5
|
+
import { sm4d as h, sv3d as u } from "../../../../../geometry/support/vectorStacks.js";
|
|
6
|
+
import { ShiftManipulator as d, OffsetMode as v } from "../../../analysis/Slice/ShiftManipulator.js";
|
|
7
|
+
import { IsShiftEdgeOnScreenFlag as f } from "../../../analysis/Slice/sliceToolUtils.js";
|
|
8
|
+
import { screenToZConstrained as g } from "../dragEventPipeline3D.js";
|
|
9
|
+
import { ManipulatorType as _ } from "../ManipulatorType.js";
|
|
10
|
+
import { MoveXYGraphicManipulation as M } from "../manipulations/MoveXYGraphicManipulation.js";
|
|
11
|
+
import { createManipulatorDragEventPipeline as S, addMapDelta as y, addScreenDelta as T } from "../../../../interactive/dragEventPipeline.js";
|
|
12
|
+
import { AccumulationBehavior as p } from "../../../../interactive/editGeometry/interfaces.js";
|
|
13
|
+
import { apply as G } from "../../../../interactive/editGeometry/support/editPlaneUtils.js";
|
|
14
|
+
import { TranslateGraphicTooltipInfo as Z, TranslateGraphicZTooltipInfo as D } from "../../../../interactive/tooltip/TranslateTooltipInfos.js";
|
|
15
|
+
import { autoDistance2D as X } from "../../../../support/automaticLengthMeasurementUtils.js";
|
|
16
|
+
import { verticalSignedDistance as Y } from "../../../../support/euclideanLengthMeasurementUtils.js";
|
|
17
|
+
class $ {
|
|
18
|
+
constructor(a, o, e, i) {
|
|
19
|
+
this._tool = a, this._graphicState = o, this._editGeometryOperations = e, this._bounds = i, this._moveXYTooltipInfo = null, this._moveZTooltipInfo = null;
|
|
20
|
+
const r = this._tool, t = r.view;
|
|
21
|
+
this.moveXYGraphicManipulation = new M({ view: t, tool: r, graphicState: this._graphicState }), r.addHandles(this._createMoveXYGraphicDragPipeline()), this.moveZManipulator = new d(t, v.CENTER_ON_CALLOUT), this.moveZManipulator.state |= f, r.manipulators.add(this.moveZManipulator), r.addHandles([this._createMoveZDragPipeline()]), r.addHandles([r.on("graphic-translate-stop", () => {
|
|
22
|
+
this._moveXYTooltipInfo = null, this._moveZTooltipInfo = null;
|
|
23
|
+
})]);
|
|
24
|
+
}
|
|
25
|
+
destroy() {
|
|
26
|
+
this.moveXYGraphicManipulation.destroy(), this._tool.manipulators.remove(this.moveZManipulator), this.moveZManipulator.destroy();
|
|
27
|
+
}
|
|
28
|
+
forEachManipulator(a) {
|
|
29
|
+
this.moveXYGraphicManipulation.forEachManipulator(a), a(this.moveZManipulator, _.TRANSLATE_Z);
|
|
30
|
+
}
|
|
31
|
+
updateManipulators(a, o) {
|
|
32
|
+
const e = this.moveZManipulator, i = l(h.get(), a, Math.PI);
|
|
33
|
+
i[12] = 0, i[13] = 0, i[14] = 0, e.modelTransform = i, e.renderLocation = c(u.get(), o.origin, o.basis1);
|
|
34
|
+
}
|
|
35
|
+
getUpdatedTooltipInfo() {
|
|
36
|
+
return this.moveXYGraphicManipulation.grabbing || this.moveXYGraphicManipulation.dragging ? this._computeMoveXYTooltipInfo() : this.moveZManipulator.focused ? this._computeMoveZTooltipInfo() : null;
|
|
37
|
+
}
|
|
38
|
+
_computeMoveXYTooltipInfo() {
|
|
39
|
+
const a = this._tool, o = this._moveXYTooltipInfo ?? (this._moveXYTooltipInfo = new Z({ sketchOptions: a.sketchOptions }));
|
|
40
|
+
if (this.moveXYGraphicManipulation.dragging) {
|
|
41
|
+
const e = this._bounds, i = e.mapBoundsStart.origin, r = e.mapBounds.origin, { renderSpatialReference: t } = a.view;
|
|
42
|
+
if (!t)
|
|
43
|
+
return null;
|
|
44
|
+
const n = X(i, r, t);
|
|
45
|
+
if (n == null)
|
|
46
|
+
return null;
|
|
47
|
+
o.distance = n;
|
|
48
|
+
} else
|
|
49
|
+
o.distance = s;
|
|
50
|
+
return o;
|
|
51
|
+
}
|
|
52
|
+
_computeMoveZTooltipInfo() {
|
|
53
|
+
const a = this._tool, o = this._moveZTooltipInfo ?? (this._moveZTooltipInfo = new D({ sketchOptions: a.sketchOptions }));
|
|
54
|
+
if (this.moveZManipulator.dragging) {
|
|
55
|
+
const e = this._bounds, i = e.mapBoundsStart.origin, r = e.mapBounds.origin, { renderSpatialReference: t } = a.view;
|
|
56
|
+
if (!t)
|
|
57
|
+
return null;
|
|
58
|
+
const n = Y(i, r, t);
|
|
59
|
+
if (n == null)
|
|
60
|
+
return null;
|
|
61
|
+
o.distance = n;
|
|
62
|
+
} else
|
|
63
|
+
o.distance = s;
|
|
64
|
+
return o;
|
|
65
|
+
}
|
|
66
|
+
_createMoveXYGraphicDragPipeline() {
|
|
67
|
+
return this.moveXYGraphicManipulation.createDragPipeline((a, o, e) => this._applyGraphicMoveSteps(o, e));
|
|
68
|
+
}
|
|
69
|
+
_createMoveZDragPipeline() {
|
|
70
|
+
const a = this._editGeometryOperations.data.spatialReference;
|
|
71
|
+
return S(this.moveZManipulator, (o, e, i) => {
|
|
72
|
+
const r = m(o.renderLocation), t = e.next(g(this._tool.view, r, a)).next(T());
|
|
73
|
+
this._applyGraphicMoveSteps(t, i);
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
_applyGraphicMoveSteps(a, o) {
|
|
77
|
+
const e = this._tool, i = e.graphic, r = a.next((t) => (t.action === "start" && (e.inputState = { type: "move" }, this._bounds.backupMapBounds(), e.emit("graphic-translate-start", { graphic: i, dxScreen: t.screenDeltaX, dyScreen: t.screenDeltaY })), t)).next(y()).next(this._moveDragUpdateGeometry()).next((t) => {
|
|
78
|
+
const n = { graphic: i, dxScreen: t.screenDeltaX, dyScreen: t.screenDeltaY };
|
|
79
|
+
switch (t.action) {
|
|
80
|
+
case "start":
|
|
81
|
+
case "update":
|
|
82
|
+
(t.mapEnd.x - t.mapStart.x || t.mapEnd.y - t.mapStart.y || (t.mapEnd.z ?? 0) - (t.mapStart.z ?? 0)) && e.emit("graphic-translate", n);
|
|
83
|
+
break;
|
|
84
|
+
case "end":
|
|
85
|
+
e.inputState = null, e.emit("graphic-translate-stop", n);
|
|
86
|
+
}
|
|
87
|
+
return t;
|
|
88
|
+
});
|
|
89
|
+
return o.next(() => {
|
|
90
|
+
e.inputState != null && e.emit("graphic-translate-stop", { graphic: i, dxScreen: 0, dyScreen: 0 }), e.cancel();
|
|
91
|
+
}), r;
|
|
92
|
+
}
|
|
93
|
+
_moveDragUpdateGeometry() {
|
|
94
|
+
const a = this._tool;
|
|
95
|
+
return (o) => {
|
|
96
|
+
if (a.inputState == null || a.inputState.type !== "move")
|
|
97
|
+
return o;
|
|
98
|
+
const e = [];
|
|
99
|
+
for (const t of this._editGeometryOperations.data.components)
|
|
100
|
+
e.push(...t.vertices);
|
|
101
|
+
const i = o.action === "start" ? p.NEW_STEP : p.ACCUMULATE_STEPS, r = this._editGeometryOperations.moveVertices(e, o.mapDeltaX, o.mapDeltaY, o.mapDeltaZ, i);
|
|
102
|
+
return G(r, this._bounds.mapBounds), a.graphic.geometry = this._editGeometryOperations.data.geometry, o;
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
export {
|
|
107
|
+
$ as ExtentMove
|
|
108
|
+
};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { rad2deg as m } from "../../../../../core/mathUtils.js";
|
|
2
|
+
import { rotateX as u } from "../../../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
3
|
+
import { g as d, c as h } from "../../../../../chunks/vec32.js";
|
|
4
|
+
import { create as g } from "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
5
|
+
import { c as _ } from "../../../../../chunks/boundedPlane.js";
|
|
6
|
+
import { create as f, intersectRay as A, getNormal as R } from "../../../../../geometry/support/plane.js";
|
|
7
|
+
import { sm4d as T, sv3d as l } from "../../../../../geometry/support/vectorStacks.js";
|
|
8
|
+
import { getRotateHeadingTexture as M } from "../../../analysis/images/Factory.js";
|
|
9
|
+
import { RotateManipulator as y } from "../../../analysis/Slice/RotateManipulator.js";
|
|
10
|
+
import { createRotatePlane as P, RotationAxis as x } from "../../../analysis/Slice/sliceToolUtils.js";
|
|
11
|
+
import { calculateInputRotationTransform as E } from "../../manipulatorUtils.js";
|
|
12
|
+
import { screenToRenderPlane as b } from "../dragEventPipeline3D.js";
|
|
13
|
+
import { ManipulatorType as v } from "../ManipulatorType.js";
|
|
14
|
+
import { fromScreenNormalized as S } from "../../../support/geometryUtils/ray.js";
|
|
15
|
+
import { createManipulatorDragEventPipeline as B } from "../../../../interactive/dragEventPipeline.js";
|
|
16
|
+
import { AccumulationBehavior as c } from "../../../../interactive/editGeometry/interfaces.js";
|
|
17
|
+
import { AccumulationType as G } from "../../../../interactive/editGeometry/operations/UpdateVertices.js";
|
|
18
|
+
import { apply as I } from "../../../../interactive/editGeometry/support/editPlaneUtils.js";
|
|
19
|
+
import { ExtentRotateTooltipInfo as w } from "../../../../interactive/tooltip/ExtentTooltipInfos.js";
|
|
20
|
+
class Y {
|
|
21
|
+
constructor(o, t, a) {
|
|
22
|
+
var i;
|
|
23
|
+
this._tool = o, this._editGeometryOperations = t, this._bounds = a, this._rotateTooltipInfo = null, this._startAngle = 0, this._endAngle = 0;
|
|
24
|
+
const e = this._tool, n = e.view, s = !((i = n._stage) != null && i.renderView.renderingContext.driverTest.svgPremultipliesAlpha.result);
|
|
25
|
+
this.rotateManipulator = new y(n, (r, p) => M(n.textures, { accentColor: r, contrastColor: p, preMultiplyAlpha: s })), e.addHandles([this.rotateManipulator.events.on("grab-changed", (r) => this._onRotateGrab(r)), this._createRotateDragPipeline(this.rotateManipulator)]), e.manipulators.add(this.rotateManipulator), e.addHandles([e.on("graphic-rotate-start", (r) => {
|
|
26
|
+
this._startAngle = r.angle;
|
|
27
|
+
}), e.on("graphic-rotate", (r) => {
|
|
28
|
+
this._endAngle = r.angle;
|
|
29
|
+
}), e.on("graphic-rotate-stop", () => {
|
|
30
|
+
this._startAngle = 0, this._endAngle = 0;
|
|
31
|
+
})]);
|
|
32
|
+
}
|
|
33
|
+
destroy() {
|
|
34
|
+
this._tool.manipulators.remove(this.rotateManipulator), this.rotateManipulator.destroy();
|
|
35
|
+
}
|
|
36
|
+
forEachManipulator(o) {
|
|
37
|
+
o(this.rotateManipulator, v.ROTATE);
|
|
38
|
+
}
|
|
39
|
+
updateManipulators(o, t) {
|
|
40
|
+
const a = this._bounds.mapBounds.plane[2] < 0 ? Math.PI : 0, e = u(T.get(), o, a);
|
|
41
|
+
e[12] = 0, e[13] = 0, e[14] = 0, this.rotateManipulator.modelTransform = e, this.rotateManipulator.renderLocation = d(l.get(), t.origin, t.basis1);
|
|
42
|
+
}
|
|
43
|
+
getUpdatedTooltipInfo() {
|
|
44
|
+
return this.rotateManipulator.focused ? this._computeRotateTooltipInfo() : null;
|
|
45
|
+
}
|
|
46
|
+
_computeRotateTooltipInfo() {
|
|
47
|
+
const o = this._rotateTooltipInfo ?? (this._rotateTooltipInfo = new w({ sketchOptions: this._tool.sketchOptions }));
|
|
48
|
+
return o.angle = this._startAngle - this._endAngle, o;
|
|
49
|
+
}
|
|
50
|
+
_onRotateGrab({ action: o, screenPoint: t }) {
|
|
51
|
+
const a = this._tool, e = this._bounds;
|
|
52
|
+
if (o !== "start" || !t)
|
|
53
|
+
return;
|
|
54
|
+
const n = P(e.displayBounds, a.view.renderCoordsHelper, x.HEADING, f()), s = S(a.view.state.camera, t);
|
|
55
|
+
A(n, s, l.get()) && (e.backupMapBounds(), a.inputState = { type: "rotate", rotatePlane: n });
|
|
56
|
+
}
|
|
57
|
+
_createRotateDragPipeline(o) {
|
|
58
|
+
const t = this._tool, a = t.graphic;
|
|
59
|
+
return B(o, (e, n, s) => {
|
|
60
|
+
const i = t.inputState;
|
|
61
|
+
i != null && (n.next((r) => (r.action === "start" && t.emit("graphic-rotate-start", { graphic: a, angle: 0 }), r)).next(b(t.view, i.rotatePlane)).next(this._rotateDragRenderPlaneToRotate(i)).next(this._rotateDragUpdateGeometry()).next((r) => {
|
|
62
|
+
const p = { graphic: a, angle: m(r.rotateAngle) };
|
|
63
|
+
switch (r.action) {
|
|
64
|
+
case "start":
|
|
65
|
+
case "update":
|
|
66
|
+
t.emit("graphic-rotate", p);
|
|
67
|
+
break;
|
|
68
|
+
case "end":
|
|
69
|
+
t.inputState = null, t.emit("graphic-rotate-stop", p);
|
|
70
|
+
}
|
|
71
|
+
return r;
|
|
72
|
+
}), s.next(() => {
|
|
73
|
+
t.inputState != null && t.emit("graphic-rotate-stop", { graphic: a, angle: 0 }), t.cancel();
|
|
74
|
+
}));
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
_rotateDragRenderPlaneToRotate(o) {
|
|
78
|
+
return (t) => {
|
|
79
|
+
const a = R(o.rotatePlane), e = E(t.renderStart, t.renderEnd, this._bounds.displayBounds.origin, a);
|
|
80
|
+
return { ...t, rotateAxis: a, rotateAngle: e };
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
_rotateDragUpdateGeometry() {
|
|
84
|
+
const o = this._tool, t = this._bounds;
|
|
85
|
+
return (a) => {
|
|
86
|
+
const e = h(g(), t.mapBoundsStart.origin), n = [];
|
|
87
|
+
for (const r of this._editGeometryOperations.data.components)
|
|
88
|
+
n.push(...r.vertices);
|
|
89
|
+
const s = a.action === "start" ? c.NEW_STEP : c.ACCUMULATE_STEPS, i = this._editGeometryOperations.rotateVertices(n, e, a.rotateAngle, s, G.REPLACE);
|
|
90
|
+
return _(t.mapBoundsStart, t.mapBounds), I(i, t.mapBounds), o.graphic.geometry = this._editGeometryOperations.data.geometry, a;
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
export {
|
|
95
|
+
Y as ExtentRotate
|
|
96
|
+
};
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import { set as p, normalize as A } from "../../../../../core/libs/gl-matrix-2/math/vec2.js";
|
|
2
|
+
import { create as z } from "../../../../../core/libs/gl-matrix-2/factories/vec2f64.js";
|
|
3
|
+
import { c as y, r as u, f as x, l as I, k as M } from "../../../../../chunks/vec32.js";
|
|
4
|
+
import { create as G } from "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
5
|
+
import { a as H, c as B } from "../../../../../chunks/boundedPlane.js";
|
|
6
|
+
import { intersectRay as O } from "../../../../../geometry/support/plane.js";
|
|
7
|
+
import { sv3d as m } from "../../../../../geometry/support/vectorStacks.js";
|
|
8
|
+
import { ResizeManipulator as w } from "../../../analysis/Slice/ResizeManipulator.js";
|
|
9
|
+
import { updateResizeHandle as N, isDiagonalResizeHandle as U, calculateDiagonalResizeHandleScale as E } from "../../../analysis/Slice/sliceToolUtils.js";
|
|
10
|
+
import { screenToRenderPlane as k } from "../dragEventPipeline3D.js";
|
|
11
|
+
import { ManipulatorType as C } from "../ManipulatorType.js";
|
|
12
|
+
import { mapPlaneAutoSize2D as b } from "./extentUtils.js";
|
|
13
|
+
import { fromScreenNormalized as F } from "../../../support/geometryUtils/ray.js";
|
|
14
|
+
import { createManipulatorDragEventPipeline as L } from "../../../../interactive/dragEventPipeline.js";
|
|
15
|
+
import { AccumulationBehavior as v } from "../../../../interactive/editGeometry/interfaces.js";
|
|
16
|
+
import { AccumulationType as Z } from "../../../../interactive/editGeometry/operations/UpdateVertices.js";
|
|
17
|
+
import { apply as $ } from "../../../../interactive/editGeometry/support/editPlaneUtils.js";
|
|
18
|
+
import { ExtentScaleTooltipInfo as V } from "../../../../interactive/tooltip/ExtentTooltipInfos.js";
|
|
19
|
+
class ht {
|
|
20
|
+
get zMax() {
|
|
21
|
+
if (!this._zMaxDirty)
|
|
22
|
+
return this._zMax;
|
|
23
|
+
const i = this._editGeometryOperations.data;
|
|
24
|
+
if (i.geometry.hasZ) {
|
|
25
|
+
const e = i.coordinateHelper;
|
|
26
|
+
this._zMax = Number.NEGATIVE_INFINITY;
|
|
27
|
+
for (const t of i.components)
|
|
28
|
+
for (const a of t.vertices) {
|
|
29
|
+
const o = e.getZ(a.pos) ?? 0;
|
|
30
|
+
this._zMax = Math.max(o, this._zMax);
|
|
31
|
+
}
|
|
32
|
+
} else
|
|
33
|
+
this._zMax = 0;
|
|
34
|
+
return this._zMaxDirty = !1, this._zMax;
|
|
35
|
+
}
|
|
36
|
+
constructor(i, e, t, a, o) {
|
|
37
|
+
this._tool = i, this._graphicState = e, this._editGeometryOperations = t, this._bounds = a, this._preserveAspectRatioStep = o, this._resizeHandles = [{ direction: [1, 0] }, { direction: [1, 1] }, { direction: [0, 1] }, { direction: [-1, 1] }, { direction: [-1, 0] }, { direction: [-1, -1] }, { direction: [0, -1] }, { direction: [1, -1] }], this._scaleTooltipInfo = null, this._displayBoundsStart = H(), this._displayBoundsMarginStart = 0, this._startScale = z(), this._endScale = z(), this._sizeStart = null, this._zMax = 0, this._zMaxDirty = !0;
|
|
38
|
+
const r = this._tool, n = r.view;
|
|
39
|
+
this.resizeManipulators = this._resizeHandles.map((s) => {
|
|
40
|
+
const c = new w(n, s);
|
|
41
|
+
return r.addHandles([c.events.on("grab-changed", (S) => this._onResizeGrab(S)), this._createResizeDragPipeline(c, s)]), c;
|
|
42
|
+
}), r.manipulators.addMany(this.resizeManipulators), r.addHandles([r.on("graphic-scale-start", (s) => {
|
|
43
|
+
p(this._startScale, s.xScale, s.yScale), p(this._endScale, s.xScale, s.yScale);
|
|
44
|
+
}), r.on("graphic-scale", (s) => {
|
|
45
|
+
p(this._endScale, s.xScale, s.yScale);
|
|
46
|
+
}), r.on("graphic-scale-stop", () => {
|
|
47
|
+
p(this._startScale, 0, 0), p(this._endScale, 0, 0);
|
|
48
|
+
}), this._graphicState.on("changed", () => {
|
|
49
|
+
var s;
|
|
50
|
+
((s = r.inputState) == null ? void 0 : s.type) !== "resize" && (this._zMaxDirty = !0);
|
|
51
|
+
})]);
|
|
52
|
+
}
|
|
53
|
+
destroy() {
|
|
54
|
+
this.forEachManipulator((i) => {
|
|
55
|
+
this._tool.manipulators.remove(i), i.destroy();
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
forEachManipulator(i) {
|
|
59
|
+
this.resizeManipulators.forEach((e) => i(e, C.SCALE));
|
|
60
|
+
}
|
|
61
|
+
updateManipulators(i, e) {
|
|
62
|
+
this.resizeManipulators.forEach((t, a) => {
|
|
63
|
+
N(t, this._resizeHandles[a], i, e);
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
getUpdatedTooltipInfo() {
|
|
67
|
+
return this.resizeManipulators.some((i) => i.focused) ? this._computeScaleTooltipInfo() : null;
|
|
68
|
+
}
|
|
69
|
+
_computeScaleTooltipInfo() {
|
|
70
|
+
const i = this._tool, e = this._scaleTooltipInfo ?? (this._scaleTooltipInfo = new V({ sketchOptions: i.sketchOptions })), t = i.graphic.geometry;
|
|
71
|
+
if (t == null)
|
|
72
|
+
return null;
|
|
73
|
+
const a = b(this._bounds.mapBounds, this.zMax, t.spatialReference);
|
|
74
|
+
return a == null ? null : (e.xSize = a.xSize, e.ySize = a.ySize, this._sizeStart != null && this.resizeManipulators.some((o) => o.dragging) ? (e.xScale = a.xSize.value / this._sizeStart.xSize.value, e.yScale = a.ySize.value / this._sizeStart.ySize.value) : (e.xScale = 1, e.yScale = 1), e);
|
|
75
|
+
}
|
|
76
|
+
_onResizeGrab({ action: i, screenPoint: e }) {
|
|
77
|
+
const t = this._tool, a = this._bounds;
|
|
78
|
+
if (i !== "start" || !e || !t.graphic.geometry)
|
|
79
|
+
return;
|
|
80
|
+
const o = F(t.view.state.camera, e);
|
|
81
|
+
O(a.displayBounds.plane, o, m.get()) && (a.backupMapBounds(), B(a.displayBounds, this._displayBoundsStart), this._displayBoundsMarginStart = a.displayBoundsMargin, this._sizeStart = b(a.mapBoundsStart, this.zMax, t.graphic.geometry.spatialReference), t.inputState = { type: "resize" });
|
|
82
|
+
}
|
|
83
|
+
_createResizeDragPipeline(i, e) {
|
|
84
|
+
const t = this._tool, a = t.graphic;
|
|
85
|
+
return L(i, (o, r, n) => {
|
|
86
|
+
t.inputState != null && (r.next((s) => (s.action === "start" && t.emit("graphic-scale-start", { graphic: a, xScale: 1, yScale: 1 }), s)).next(k(t.view, this._displayBoundsStart.plane)).next((s) => ({ ...s, handle: e })).next(this._resizeDragRenderPlaneToFactors()).next(...this._preserveAspectRatioStep()).next(this._resizeDragUpdateGeometry()).next((s) => {
|
|
87
|
+
const c = { graphic: a, xScale: s.factor1, yScale: s.factor2 };
|
|
88
|
+
switch (s.action) {
|
|
89
|
+
case "start":
|
|
90
|
+
case "update":
|
|
91
|
+
t.emit("graphic-scale", c);
|
|
92
|
+
break;
|
|
93
|
+
case "end":
|
|
94
|
+
t.inputState = null, t.emit("graphic-scale-stop", c);
|
|
95
|
+
}
|
|
96
|
+
return s;
|
|
97
|
+
}), n.next(() => {
|
|
98
|
+
t.inputState != null && t.emit("graphic-scale-stop", { graphic: a, xScale: 1, yScale: 1 }), t.cancel();
|
|
99
|
+
}));
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
_resizeDragRenderPlaneToFactors() {
|
|
103
|
+
const i = this._bounds;
|
|
104
|
+
return (e) => {
|
|
105
|
+
const t = this._displayBoundsStart, a = e.handle.direction, o = i.displayBoundsMargin, r = this._displayBoundsMarginStart, n = y(m.get(), t.origin);
|
|
106
|
+
u(n, n, t.basis1, -a[0]), u(n, n, t.basis2, -a[1]);
|
|
107
|
+
const s = x(m.get(), e.renderEnd, n), c = x(m.get(), e.renderStart, n), S = U(e.handle), T = E(t), D = E(i.displayBounds) / T, f = (_, g) => {
|
|
108
|
+
if (_ === 0)
|
|
109
|
+
return 1;
|
|
110
|
+
let l = I(g), h = 0.5 * _ * M(g, s) / l;
|
|
111
|
+
const d = h < 0 ? -1 : 1;
|
|
112
|
+
S && (h += (l - 0.5 * _ * M(g, c) / l) * d * D);
|
|
113
|
+
const P = l < 1.5 * r ? 1 : R;
|
|
114
|
+
return l = Math.max(l - r, R), d > 0 && (h -= o), d * Math.max(d * (h / l), P);
|
|
115
|
+
};
|
|
116
|
+
return { ...e, factor1: f(a[0], t.basis1), factor2: f(a[1], t.basis2) };
|
|
117
|
+
};
|
|
118
|
+
}
|
|
119
|
+
_resizeDragUpdateGeometry() {
|
|
120
|
+
const i = this._tool, e = this._bounds;
|
|
121
|
+
return (t) => {
|
|
122
|
+
const a = y(G(), e.mapBoundsStart.origin);
|
|
123
|
+
u(a, a, e.mapBoundsStart.basis1, -t.handle.direction[0]), u(a, a, e.mapBoundsStart.basis2, -t.handle.direction[1]);
|
|
124
|
+
const o = p(z(), e.mapBoundsStart.basis1[0], e.mapBoundsStart.basis1[1]);
|
|
125
|
+
A(o, o);
|
|
126
|
+
const r = [];
|
|
127
|
+
for (const c of this._editGeometryOperations.data.components)
|
|
128
|
+
r.push(...c.vertices);
|
|
129
|
+
const n = t.action === "start" ? v.NEW_STEP : v.ACCUMULATE_STEPS, s = this._editGeometryOperations.scaleVertices(r, a, o, t.factor1, t.factor2, n, Z.REPLACE);
|
|
130
|
+
return B(e.mapBoundsStart, e.mapBounds), $(s, e.mapBounds), i.graphic.geometry = this._editGeometryOperations.data.geometry, t;
|
|
131
|
+
};
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
const R = 1e-6;
|
|
135
|
+
export {
|
|
136
|
+
ht as ExtentScale,
|
|
137
|
+
R as scaleEpsilon
|
|
138
|
+
};
|