@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,22 @@
|
|
|
1
|
+
import { fromValues as p } from "../../../../core/libs/gl-matrix-2/factories/vec2f64.js";
|
|
2
|
+
import { getEpsilon as f } from "../../../../core/libs/gl-matrix-2/math/common.js";
|
|
3
|
+
function y(n) {
|
|
4
|
+
const o = u(n);
|
|
5
|
+
return p(Math.cos(o), Math.sin(o));
|
|
6
|
+
}
|
|
7
|
+
function u(n) {
|
|
8
|
+
if (n == null || n.type !== "polyline" && n.type !== "polygon")
|
|
9
|
+
return 0;
|
|
10
|
+
const o = n.type === "polyline" ? n.paths : n.rings, l = f();
|
|
11
|
+
for (const i of o)
|
|
12
|
+
for (let t = 0; t < i.length - 1; t++) {
|
|
13
|
+
const r = i[t], e = i[t + 1], s = r[0] - e[0], a = r[1] - e[1];
|
|
14
|
+
if (s * s + a * a > l)
|
|
15
|
+
return Math.atan2(e[1] - r[1], e[0] - r[0]);
|
|
16
|
+
}
|
|
17
|
+
return 0;
|
|
18
|
+
}
|
|
19
|
+
export {
|
|
20
|
+
y as mainAxis,
|
|
21
|
+
u as orientation
|
|
22
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import "../../../../core/has.js";
|
|
2
|
+
function S(e) {
|
|
3
|
+
switch (e) {
|
|
4
|
+
case P.SUPPORTED:
|
|
5
|
+
break;
|
|
6
|
+
case P.GRAPHICS_LAYER_MISSING:
|
|
7
|
+
return "not owned by a graphics layer";
|
|
8
|
+
case P.GEOMETRY_MISSING:
|
|
9
|
+
return "no geometry";
|
|
10
|
+
case P.GEOMETRY_TYPE_UNSUPPORTED:
|
|
11
|
+
return "the geometry type is not supported";
|
|
12
|
+
case P.ELEVATION_MODE_UNSUPPORTED:
|
|
13
|
+
return "the elevation mode is not supported";
|
|
14
|
+
case P.SYMBOL_TYPE_UNSUPPORTED:
|
|
15
|
+
return "the symbol type is not supported";
|
|
16
|
+
}
|
|
17
|
+
return "";
|
|
18
|
+
}
|
|
19
|
+
var P;
|
|
20
|
+
(function(e) {
|
|
21
|
+
e[e.SUPPORTED = 0] = "SUPPORTED", e[e.GRAPHICS_LAYER_MISSING = 1] = "GRAPHICS_LAYER_MISSING", e[e.GEOMETRY_MISSING = 2] = "GEOMETRY_MISSING", e[e.GEOMETRY_TYPE_UNSUPPORTED = 3] = "GEOMETRY_TYPE_UNSUPPORTED", e[e.ELEVATION_MODE_UNSUPPORTED = 4] = "ELEVATION_MODE_UNSUPPORTED", e[e.SYMBOL_TYPE_UNSUPPORTED = 5] = "SYMBOL_TYPE_UNSUPPORTED";
|
|
22
|
+
})(P || (P = {}));
|
|
23
|
+
export {
|
|
24
|
+
P as SupportedGraphicResult,
|
|
25
|
+
S as isSupportedGraphicResultMessage
|
|
26
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { removeHandles as L, handlesGroup as E, destroyHandle as S, refHandle as P } from "../../../../core/handleUtils.js";
|
|
2
|
+
import { deg2rad as x } from "../../../../core/mathUtils.js";
|
|
3
|
+
import { watch as h, initial as f } from "../../../../core/reactiveUtils.js";
|
|
4
|
+
import { signal as A } from "../../../../core/signal.js";
|
|
5
|
+
import { s as X, g as H, h as Y } from "../../../../chunks/vec32.js";
|
|
6
|
+
import { create as z } from "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
7
|
+
import { getGraphicEffectiveElevationInfo as C } from "../../../../support/elevationInfoUtils.js";
|
|
8
|
+
import { Manipulator3D as R } from "../Manipulator3D.js";
|
|
9
|
+
import { GrabbingState as D } from "./GrabbingState.js";
|
|
10
|
+
import { ManipulatorState as j } from "./ManipulatorState.js";
|
|
11
|
+
import { ManipulatorType as k } from "./ManipulatorType.js";
|
|
12
|
+
import { Settings as O } from "./settings.js";
|
|
13
|
+
import { ExtendedLineVisualElement as F } from "../visualElements/ExtendedLineVisualElement.js";
|
|
14
|
+
import { LaserlineVisualElement as I } from "../visualElements/LaserlineVisualElement.js";
|
|
15
|
+
import { OutlineVisualElement as N } from "../visualElements/OutlineVisualElement.js";
|
|
16
|
+
import { GraphicState as W } from "../../layers/graphics/GraphicState.js";
|
|
17
|
+
import { RenderOccludedFlag as Z } from "../../webgl-engine/lib/Material.js";
|
|
18
|
+
function ue(e) {
|
|
19
|
+
const { view: t, graphic: n } = e, i = new W({ graphic: n }), a = U(e, i), l = [a, _(e, a.visualElement, i), t.maskOccludee(n), t.trackGraphicState(i)];
|
|
20
|
+
return { visualElement: a.visualElement, remove: () => L(l) };
|
|
21
|
+
}
|
|
22
|
+
function U(e, t) {
|
|
23
|
+
const { view: n, graphic: i } = e, a = new N({ view: n, geometry: b(i) ? i.geometry : null, elevationInfo: C(i), attached: !1, isDecoration: !0 }), l = new O({ getTheme: () => n.effectiveTheme }), s = () => {
|
|
24
|
+
a.attached = t.displaying;
|
|
25
|
+
}, w = E([h(() => l.visualElements.lineGraphics.outline, (o) => o.apply(a), f), h(() => l.visualElements.lineGraphics.shadowStyle, (o) => o.apply(a), f), h(() => t.displaying, s), h(() => t.isDraped, (o) => {
|
|
26
|
+
a.isDraped = o;
|
|
27
|
+
}), t.on("changed", () => a.geometry = b(i) ? i.geometry : null), S(a)]);
|
|
28
|
+
return s(), { visualElement: a, remove: () => w.remove() };
|
|
29
|
+
}
|
|
30
|
+
function _(e, t, n) {
|
|
31
|
+
const { graphic: i, view: a } = e, l = [], s = C(i), w = s.mode === "on-the-ground" || !s.offset && s.mode !== "absolute-height", o = new j(), d = new O({ getTheme: () => a.effectiveTheme }), v = d.visualElements, m = new F({ view: a, extensionType: v.zVerticalLine.extensionType, innerWidth: 1, attached: !1, writeDepthEnabled: !1, renderOccluded: Z.OccludeAndTransparent, isDecoration: !0 }), V = x(v.heightPlaneAngleCutoff), y = new I({ view: a, attached: !1, angleCutoff: V, isDecoration: !0 }), T = A(1);
|
|
32
|
+
l.push(h(() => ({ lineShadowStyle: d.visualElements.lineGraphics.shadowStyle, pointShadowStyle: d.visualElements.pointGraphics.shadowStyle, alpha: T.value }), ({ lineShadowStyle: r, pointShadowStyle: g, alpha: $ }) => {
|
|
33
|
+
r.apply(t, $), g.apply(m, $);
|
|
34
|
+
}, f));
|
|
35
|
+
const M = A(1);
|
|
36
|
+
l.push(h(() => ({ heightPlane: d.visualElements.heightPlane, alpha: M.value }), ({ heightPlane: r, alpha: g }) => r.apply(y, g), f));
|
|
37
|
+
const c = () => {
|
|
38
|
+
if (o.update(e), !n.displaying || w && (n.isDraped || !b(i) || !i.geometry.hasZ))
|
|
39
|
+
return t.laserlineEnabled = !1, m.attached = !1, void (y.attached = !1);
|
|
40
|
+
t.laserlineEnabled = !0;
|
|
41
|
+
const r = o.grabbingState & D.XY ? v.laserlineAlphaMultiplier : 1;
|
|
42
|
+
T.value = r;
|
|
43
|
+
const g = o.grabbingState & D.Z ? v.laserlineAlphaMultiplier : 1;
|
|
44
|
+
M.value = g, q(m, o), B(e, t, y, o);
|
|
45
|
+
};
|
|
46
|
+
l.push(h(() => d.visualElements.zVerticalLine, (r) => r.apply(m), f)), l.push(n.on("changed", c), h(() => n.displaying, c), t.events.on("attachment-origin-changed", c), S(m), S(y));
|
|
47
|
+
const u = [], G = () => {
|
|
48
|
+
L(u), u.length = 0, e.forEachManipulator((r) => u.push(r.events.on("grab-changed", c))), e.forEachManipulator((r) => u.push(r.events.on("select-changed", c))), c();
|
|
49
|
+
};
|
|
50
|
+
return G(), l.push(e.onManipulatorsChanged(G), P(() => E(u))), E(l);
|
|
51
|
+
}
|
|
52
|
+
function q(e, t) {
|
|
53
|
+
const n = t.numSelected === 1 ? t.firstSelected : t.numSelected > 1 && t.firstGrabbedXY != null ? t.firstGrabbedXY : null;
|
|
54
|
+
n != null ? (e.setStartEndFromWorldDownAtLocation(n.renderLocation), e.attached = !0) : e.attached = !1;
|
|
55
|
+
}
|
|
56
|
+
function B(e, t, n, i) {
|
|
57
|
+
if (i.numSelected > 0) {
|
|
58
|
+
X(p, 0, 0, 0);
|
|
59
|
+
let a = 0;
|
|
60
|
+
e.forEachManipulator((l, s) => {
|
|
61
|
+
s === k.TRANSLATE_XY && l.selected && l instanceof R && (H(p, p, l.renderLocation), a++);
|
|
62
|
+
}), a > 0 ? (n.heightManifoldTarget = Y(p, p, 1 / a), n.attached = !0) : n.attached = !1;
|
|
63
|
+
} else {
|
|
64
|
+
const a = t.attachmentOrigin;
|
|
65
|
+
a != null && e.view.renderCoordsHelper.toRenderCoords(a, p) ? (n.heightManifoldTarget = p, n.attached = !0) : n.attached = !1;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
function b(e) {
|
|
69
|
+
return e.geometry != null && (e.geometry.type === "polygon" || e.geometry.type === "polyline");
|
|
70
|
+
}
|
|
71
|
+
const p = z();
|
|
72
|
+
export {
|
|
73
|
+
ue as createVisualElements
|
|
74
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Manipulator3D as o } from "../../Manipulator3D.js";
|
|
2
|
+
class n {
|
|
3
|
+
constructor() {
|
|
4
|
+
this._available = !0;
|
|
5
|
+
}
|
|
6
|
+
set location(a) {
|
|
7
|
+
this._forEachManipulator3D((t) => t.location = a);
|
|
8
|
+
}
|
|
9
|
+
set elevationAlignedLocation(a) {
|
|
10
|
+
this._forEachManipulator3D((t) => t.elevationAlignedLocation = a);
|
|
11
|
+
}
|
|
12
|
+
set elevationInfo(a) {
|
|
13
|
+
this._forEachManipulator3D((t) => t.elevationInfo = a);
|
|
14
|
+
}
|
|
15
|
+
get renderLocation() {
|
|
16
|
+
let a;
|
|
17
|
+
return this._forEachManipulator3D((t) => {
|
|
18
|
+
a || (a = t.renderLocation);
|
|
19
|
+
}), a;
|
|
20
|
+
}
|
|
21
|
+
get available() {
|
|
22
|
+
return this._available;
|
|
23
|
+
}
|
|
24
|
+
set available(a) {
|
|
25
|
+
this._available = a, this._forEachManipulator3D((t) => t.available = a);
|
|
26
|
+
}
|
|
27
|
+
get hovering() {
|
|
28
|
+
return this.someManipulator((a) => a.hovering);
|
|
29
|
+
}
|
|
30
|
+
get grabbing() {
|
|
31
|
+
return this.someManipulator((a) => a.grabbing);
|
|
32
|
+
}
|
|
33
|
+
get dragging() {
|
|
34
|
+
return this.someManipulator((a) => a.dragging);
|
|
35
|
+
}
|
|
36
|
+
hasManipulator(a) {
|
|
37
|
+
return this.someManipulator((t) => t === a);
|
|
38
|
+
}
|
|
39
|
+
someManipulator(a) {
|
|
40
|
+
let t = !1;
|
|
41
|
+
return this.forEachManipulator((i) => {
|
|
42
|
+
!t && a(i) && (t = !0);
|
|
43
|
+
}), t;
|
|
44
|
+
}
|
|
45
|
+
_forEachManipulator3D(a) {
|
|
46
|
+
this.forEachManipulator((t, i) => {
|
|
47
|
+
t instanceof o && a(t, i);
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
export {
|
|
52
|
+
n as Manipulation
|
|
53
|
+
};
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import d from "../../../../../core/Handles.js";
|
|
2
|
+
import { handlesGroup as c } from "../../../../../core/handleUtils.js";
|
|
3
|
+
import y from "../../../../../core/has.js";
|
|
4
|
+
import { when as x } from "../../../../../core/reactiveUtils.js";
|
|
5
|
+
import { ManipulatorType as h } from "../ManipulatorType.js";
|
|
6
|
+
import { discRadiusSmall as v, discRadius as A } from "./config.js";
|
|
7
|
+
import { Manipulation as _ } from "./Manipulation.js";
|
|
8
|
+
import { MoveXYAxisManipulation as m } from "./MoveXYAxisManipulation.js";
|
|
9
|
+
import { MoveXYDiscManipulation as f } from "./MoveXYDiscManipulation.js";
|
|
10
|
+
import { MoveZManipulation as g } from "./MoveZManipulation.js";
|
|
11
|
+
class I extends _ {
|
|
12
|
+
constructor(i) {
|
|
13
|
+
super(), this._handles = new d(), this._interactive = !0;
|
|
14
|
+
const { tool: a, view: n, snapToScene: e, radius: t } = i;
|
|
15
|
+
this._view = n, this.xyManipulation = new f({ tool: a, view: n, snapToScene: e, radius: t }), this.xyAxisManipulation = new m({ tool: a, view: n, radius: t }), this.zManipulation = new g({ tool: a, view: n, radius: t }), this.xyManipulation.available = i.xyAvailable, this.xyAxisManipulation.available = i.xyAxisAvailable, this.zManipulation.available = i.zAvailable, this._autoHideXYAxis(), this.forEachManipulator((s) => this._handles.add(s.events.on("grab-changed", () => this._updateManipulatorInteractivity())));
|
|
16
|
+
}
|
|
17
|
+
destroy() {
|
|
18
|
+
this._handles.destroy(), this.xyManipulation.destroy(), this.xyAxisManipulation.destroy(), this.zManipulation.destroy();
|
|
19
|
+
}
|
|
20
|
+
createGraphicDragPipeline(i, a, n) {
|
|
21
|
+
return c([this.xyManipulation.createGraphicDragPipeline((e, t, s, o, r) => i(l.XY, e, t, s, o, r), a, n), this.xyAxisManipulation.createGraphicDragPipeline((e, t, s, o, r) => i(l.XY_AXIS, e, t, s, o, r), a, n), this.zManipulation.createGraphicDragPipeline((e, t, s, o, r) => i(l.Z, e, t, s, o, r), a, n)]);
|
|
22
|
+
}
|
|
23
|
+
createDragPipeline(i, a, n, e) {
|
|
24
|
+
return c([this.xyManipulation.createDragPipeline((t, s, o, r, u) => i(l.XY, t, s, o, r, u), a, n, e), this.xyAxisManipulation.createDragPipeline((t, s, o, r, u) => i(l.XY_AXIS, t, s, o, r, u), a, n, e), this.zManipulation.createDragPipeline((t, s, o, r, u) => i(l.Z, t, s, o, r, u), n)]);
|
|
25
|
+
}
|
|
26
|
+
set snapToScene(i) {
|
|
27
|
+
this.xyManipulation.snapToScene = i;
|
|
28
|
+
}
|
|
29
|
+
set angle(i) {
|
|
30
|
+
this.xyAxisManipulation.angle = i;
|
|
31
|
+
}
|
|
32
|
+
set interactive(i) {
|
|
33
|
+
this._interactive !== i && (this._interactive = i, this._updateManipulatorInteractivity());
|
|
34
|
+
}
|
|
35
|
+
set radius(i) {
|
|
36
|
+
this.xyAxisManipulation.radius = i, this.xyManipulation.radius = i, this.zManipulation.radius = i;
|
|
37
|
+
}
|
|
38
|
+
set displayScale(i) {
|
|
39
|
+
this.xyManipulation.displayScale = i, this.xyAxisManipulation.displayScale = i;
|
|
40
|
+
}
|
|
41
|
+
forEachManipulator(i) {
|
|
42
|
+
this.xyManipulation.forEachManipulator((a) => i(a, h.TRANSLATE_XY)), this.xyAxisManipulation.forEachManipulator((a) => i(a, h.TRANSLATE_XY)), this.zManipulation.forEachManipulator((a) => i(a, h.TRANSLATE_Z));
|
|
43
|
+
}
|
|
44
|
+
get _xyAxisVisible() {
|
|
45
|
+
const i = this.xyManipulation.someManipulator((a) => a.focused) || this.xyAxisManipulation.someManipulator((a) => a.focused);
|
|
46
|
+
return this._view.inputManager && this._view.inputManager.latestPointerType === "touch" || i;
|
|
47
|
+
}
|
|
48
|
+
_autoHideXYAxis() {
|
|
49
|
+
const i = this.xyAxisManipulation, a = this.xyManipulation;
|
|
50
|
+
if (y("esri-mobile"))
|
|
51
|
+
return;
|
|
52
|
+
const n = [];
|
|
53
|
+
a.forEachManipulator((t) => n.push(t)), i.forEachManipulator((t) => n.push(t));
|
|
54
|
+
const e = () => {
|
|
55
|
+
const t = [];
|
|
56
|
+
this._xyAxisVisible || i.forEachManipulator((s) => t.push(s.disableDisplay())), this._handles.remove(M), this._handles.add(t, M);
|
|
57
|
+
};
|
|
58
|
+
for (const t of n)
|
|
59
|
+
this._handles.add(t.events.on("focus-changed", e));
|
|
60
|
+
this._view.inputManager && this._handles.add(x(() => {
|
|
61
|
+
var t;
|
|
62
|
+
return (t = this._view.inputManager) == null ? void 0 : t.latestPointerType;
|
|
63
|
+
}, e)), e();
|
|
64
|
+
}
|
|
65
|
+
_updateManipulatorInteractivity() {
|
|
66
|
+
const i = this.grabbing;
|
|
67
|
+
this.forEachManipulator((a) => {
|
|
68
|
+
a.interactive = !i && this._interactive || a.grabbing;
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
static radiusForSymbol(i) {
|
|
72
|
+
const a = i != null && i.type === "point-3d" && i.symbolLayers;
|
|
73
|
+
return a && a.some((n) => n.type === "icon") ? v : A;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
const M = "disable-xy-axis-display";
|
|
77
|
+
var l;
|
|
78
|
+
(function(p) {
|
|
79
|
+
p[p.XY = 0] = "XY", p[p.XY_AXIS = 1] = "XY_AXIS", p[p.Z = 2] = "Z";
|
|
80
|
+
})(l || (l = {}));
|
|
81
|
+
export {
|
|
82
|
+
l as ManipulationType,
|
|
83
|
+
I as MoveManipulation
|
|
84
|
+
};
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import $ from "../../../../../Color.js";
|
|
2
|
+
import y from "../../../../../core/Evented.js";
|
|
3
|
+
import I from "../../../../../core/Handles.js";
|
|
4
|
+
import { handlesGroup as D } from "../../../../../core/handleUtils.js";
|
|
5
|
+
import { destroyMaybe as S } from "../../../../../core/maybe.js";
|
|
6
|
+
import { watch as x, initial as P } from "../../../../../core/reactiveUtils.js";
|
|
7
|
+
import { fromTranslation as _, fromZRotation as R, multiply as m, fromRotation as E, fromScaling as O } from "../../../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
8
|
+
import { create as b } from "../../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
9
|
+
import { s as d } from "../../../../../chunks/vec32.js";
|
|
10
|
+
import { fromValues as M } from "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
11
|
+
import { sv3d as f, sm4d as l } from "../../../../../geometry/support/vectorStacks.js";
|
|
12
|
+
import { getGraphicEffectiveElevationInfo as L } from "../../../../../support/elevationInfoUtils.js";
|
|
13
|
+
import { Manipulator3D as C } from "../../Manipulator3D.js";
|
|
14
|
+
import { RenderObject as g } from "../../RenderObject.js";
|
|
15
|
+
import { screenToMapXYAtLocation as F } from "../dragEventPipeline3D.js";
|
|
16
|
+
import { ManipulatorType as w } from "../ManipulatorType.js";
|
|
17
|
+
import { discRadius as A, discHeight as G, discTranslateArrowOffset as q, discTranslateArrowSize as X } from "./config.js";
|
|
18
|
+
import { Manipulation as Y } from "./Manipulation.js";
|
|
19
|
+
import { createGraphicMoveDragPipeline as j } from "./moveUtils.js";
|
|
20
|
+
import { CullFaceOptions as B } from "../../../webgl-engine/lib/basicInterfaces.js";
|
|
21
|
+
import { createExtrudedTriangle as N, transformInPlace as U } from "../../../webgl-engine/lib/GeometryUtil.js";
|
|
22
|
+
import { RenderOccludedFlag as k } from "../../../webgl-engine/lib/Material.js";
|
|
23
|
+
import { ColorMaterial as z } from "../../../webgl-engine/materials/ColorMaterial.js";
|
|
24
|
+
import { createManipulatorDragEventPipeline as H, dragAtLocation as V, constrainToMapAxis as Z, addScreenDelta as J } from "../../../../interactive/dragEventPipeline.js";
|
|
25
|
+
import { ManipulatorStateFlags as v } from "../../../../interactive/interfaces.js";
|
|
26
|
+
class $a extends Y {
|
|
27
|
+
constructor(a) {
|
|
28
|
+
super(), this._handles = new I(), this._arrowManipulatorInfos = new Array(), this._angle = 0, this._scale = 1, this._radius = A, this._updateAfterDrag = !1, this.events = new y(), this._tool = a.tool, this._view = a.view, this._opaqueMaterial = this._createMaterial(), this._transparentMaterial = this._createMaterial(0.5), a.radius != null && (this._radius = a.radius), this._createManipulators(), this.forEachManipulator((t) => this._tool.manipulators.add(t));
|
|
29
|
+
}
|
|
30
|
+
set orthogonalAvailable(a) {
|
|
31
|
+
this._arrowManipulatorInfos.length >= 3 && (this._arrowManipulatorInfos[1].manipulator.available = a, this._arrowManipulatorInfos[3].manipulator.available = a);
|
|
32
|
+
}
|
|
33
|
+
destroy() {
|
|
34
|
+
this._handles = S(this._handles), this.forEachManipulator((a) => {
|
|
35
|
+
this._tool.manipulators.remove(a), a.destroy();
|
|
36
|
+
}), this._tool = null, this._view = null, this._arrowManipulatorInfos.length = 0;
|
|
37
|
+
}
|
|
38
|
+
forEachManipulator(a) {
|
|
39
|
+
for (const { manipulator: t } of this._arrowManipulatorInfos)
|
|
40
|
+
a(t, w.TRANSLATE_XY);
|
|
41
|
+
}
|
|
42
|
+
createGraphicDragPipeline(a, t, r) {
|
|
43
|
+
const i = t.graphic, e = L(i), s = i.geometry.spatialReference;
|
|
44
|
+
return j(i, r, (o) => this.createDragPipeline((p, n, u, h, c) => ({ steps: n, cancel: u } = a(p, n, u, h, c), o(p, n, u)), e, s, i));
|
|
45
|
+
}
|
|
46
|
+
createDragPipeline(a, t, r, i) {
|
|
47
|
+
return D(this._arrowManipulatorInfos.map(({ manipulator: e }, s) => H(e, (o, p, n, u, h) => {
|
|
48
|
+
const c = p.next((T) => ({ ...T, manipulatorType: w.TRANSLATE_XY })).next(V(this._view, o.elevationAlignedLocation)).next(F(this._view, o.elevationAlignedLocation, t, r, i)).next(Z(o.location, this.angle + (s + 1) * Math.PI * 0.5)).next(J());
|
|
49
|
+
a(o, c, n, u, h);
|
|
50
|
+
})));
|
|
51
|
+
}
|
|
52
|
+
get angle() {
|
|
53
|
+
return this._angle;
|
|
54
|
+
}
|
|
55
|
+
set angle(a) {
|
|
56
|
+
this._angle = a, this.dragging ? this._updateAfterDrag = !0 : this._updateManipulatorTransform();
|
|
57
|
+
}
|
|
58
|
+
get displayScale() {
|
|
59
|
+
return this._scale;
|
|
60
|
+
}
|
|
61
|
+
set displayScale(a) {
|
|
62
|
+
this._scale = a, this._updateManipulatorTransform();
|
|
63
|
+
}
|
|
64
|
+
get radius() {
|
|
65
|
+
return this._radius;
|
|
66
|
+
}
|
|
67
|
+
set radius(a) {
|
|
68
|
+
this._radius !== a && (this._radius = a, this._updateManipulators());
|
|
69
|
+
}
|
|
70
|
+
_updateManipulators() {
|
|
71
|
+
for (let a = 0; a < this._arrowManipulatorInfos.length; a++)
|
|
72
|
+
this._updateArrowManipulator(this._arrowManipulatorInfos[a], a);
|
|
73
|
+
this._updateManipulatorTransform();
|
|
74
|
+
}
|
|
75
|
+
_updateArrowManipulator({ manipulator: a, transform: t }, r) {
|
|
76
|
+
const i = this._radius / A, e = X * i, s = e * Math.sqrt(3) / 2, o = N(this._opaqueMaterial, s, e / 2, e / 2, G);
|
|
77
|
+
U(o, _(l.get(), d(f.get(), 0, -s / 3, 0))), a.renderObjects = [new g(o, v.Focused), new g(o.instantiate({ material: this._transparentMaterial }), v.Unfocused)], a.radius = s / 3 * 2 * 1.2;
|
|
78
|
+
const p = R(l.get(), r * Math.PI / 2), n = _(l.get(), d(f.get(), 0, q * i, 0));
|
|
79
|
+
m(t, p, n);
|
|
80
|
+
}
|
|
81
|
+
_createManipulators() {
|
|
82
|
+
for (let a = 0; a < 4; a++) {
|
|
83
|
+
const t = this._createArrowManipulator(a);
|
|
84
|
+
this._arrowManipulatorInfos.push(t);
|
|
85
|
+
}
|
|
86
|
+
this._updateManipulatorTransform();
|
|
87
|
+
}
|
|
88
|
+
_updateManipulatorTransform() {
|
|
89
|
+
const a = this.angle, t = E(l.get(), a, M(0, 0, 1));
|
|
90
|
+
if (t == null)
|
|
91
|
+
return;
|
|
92
|
+
const r = O(l.get(), d(f.get(), this.displayScale, this.displayScale, this.displayScale)), i = m(l.get(), r, t);
|
|
93
|
+
for (const e of this._arrowManipulatorInfos) {
|
|
94
|
+
const s = m(l.get(), i, e.transform);
|
|
95
|
+
e.manipulator.modelTransform = s;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
_createArrowManipulator(a) {
|
|
99
|
+
const t = new C({ view: this._view, autoScaleRenderObjects: !1, worldOriented: !0, focusMultiplier: 1, touchMultiplier: 1, collisionType: { type: "disc", direction: M(0, 0, 1) } }), r = { manipulator: t, transform: b() };
|
|
100
|
+
return this._updateArrowManipulator(r, a), this._handles.add(t.events.on("drag", (i) => {
|
|
101
|
+
this._updateAfterDrag && i.action === "end" && !this.dragging && (this._updateManipulatorTransform(), this._updateAfterDrag = !1);
|
|
102
|
+
})), r;
|
|
103
|
+
}
|
|
104
|
+
_createMaterial(a = 1) {
|
|
105
|
+
const t = new z({ cullFace: B.Back, renderOccluded: k.Transparent, isDecoration: !0 });
|
|
106
|
+
return this._handles.add(x(() => $.toUnitRGBA(this._view.effectiveTheme.accentColor), (r) => {
|
|
107
|
+
r[3] *= a, t.setParameters({ color: r });
|
|
108
|
+
}, P)), t;
|
|
109
|
+
}
|
|
110
|
+
get test() {
|
|
111
|
+
return { arrowManipulators: this._arrowManipulatorInfos.map(({ manipulator: a }) => a) };
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
export {
|
|
115
|
+
$a as MoveXYAxisManipulation
|
|
116
|
+
};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import S from "../../../../../Color.js";
|
|
2
|
+
import T from "../../../../../core/Handles.js";
|
|
3
|
+
import { destroyMaybe as g } from "../../../../../core/maybe.js";
|
|
4
|
+
import { watch as v, initial as y } from "../../../../../core/reactiveUtils.js";
|
|
5
|
+
import { fromScaling as m } from "../../../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
6
|
+
import { create as w } from "../../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
7
|
+
import { s as $ } from "../../../../../chunks/vec32.js";
|
|
8
|
+
import { fromValues as p } from "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
9
|
+
import { sv3d as D, sm4d as A } from "../../../../../geometry/support/vectorStacks.js";
|
|
10
|
+
import { getGraphicEffectiveElevationInfo as R } from "../../../../../support/elevationInfoUtils.js";
|
|
11
|
+
import { Manipulator3D as E } from "../../Manipulator3D.js";
|
|
12
|
+
import { RenderObject as h } from "../../RenderObject.js";
|
|
13
|
+
import { screenToMapXYAtLocation as P } from "../dragEventPipeline3D.js";
|
|
14
|
+
import { ManipulatorType as _ } from "../ManipulatorType.js";
|
|
15
|
+
import { discRadius as f, discCollisionRadius as x, geometrySegments as O, discHeight as b } from "./config.js";
|
|
16
|
+
import { Manipulation as C } from "./Manipulation.js";
|
|
17
|
+
import { createGraphicMoveDragPipeline as L } from "./moveUtils.js";
|
|
18
|
+
import { SnapToScene as F } from "../snapping/SnapToScene.js";
|
|
19
|
+
import { CullFaceOptions as G } from "../../../webgl-engine/lib/basicInterfaces.js";
|
|
20
|
+
import { createCylinderGeometry as X } from "../../../webgl-engine/lib/GeometryUtil.js";
|
|
21
|
+
import { RenderOccludedFlag as Y } from "../../../webgl-engine/lib/Material.js";
|
|
22
|
+
import { ColorMaterial as j } from "../../../webgl-engine/materials/ColorMaterial.js";
|
|
23
|
+
import { createManipulatorDragEventPipeline as B, dragAtLocation as N, addScreenDelta as U } from "../../../../interactive/dragEventPipeline.js";
|
|
24
|
+
import { ManipulatorStateFlags as M } from "../../../../interactive/interfaces.js";
|
|
25
|
+
class ha extends C {
|
|
26
|
+
constructor(a) {
|
|
27
|
+
super(), this._handles = new T(), this._snapToScene = new F(), this._scale = 1, this._radius = f, this._view = a.view, this._tool = a.tool, this._discMaterial = this._createMaterial(), this._discMaterialTransparent = this._createMaterial(0.5), a.snapToScene != null && (this.snapToScene = a.snapToScene), a.radius != null && (this._radius = a.radius), this._createManipulator(), this.forEachManipulator((t) => this._tool.manipulators.add(t));
|
|
28
|
+
}
|
|
29
|
+
destroy() {
|
|
30
|
+
this._handles = g(this._handles), this.forEachManipulator((a) => {
|
|
31
|
+
this._tool.manipulators.remove(a), a.destroy();
|
|
32
|
+
}), this._tool = null, this._view = null, this._manipulator = null;
|
|
33
|
+
}
|
|
34
|
+
forEachManipulator(a) {
|
|
35
|
+
a(this._manipulator, _.TRANSLATE_XY);
|
|
36
|
+
}
|
|
37
|
+
get displayScale() {
|
|
38
|
+
return this._scale;
|
|
39
|
+
}
|
|
40
|
+
set displayScale(a) {
|
|
41
|
+
this._scale = a, this._updateManipulatorTransform();
|
|
42
|
+
}
|
|
43
|
+
get snapToScene() {
|
|
44
|
+
return this._snapToScene.enabled;
|
|
45
|
+
}
|
|
46
|
+
set snapToScene(a) {
|
|
47
|
+
this._snapToScene.enabled = a;
|
|
48
|
+
}
|
|
49
|
+
get radius() {
|
|
50
|
+
return this._radius;
|
|
51
|
+
}
|
|
52
|
+
set radius(a) {
|
|
53
|
+
a !== this._radius && (this._radius = a, this._updateManipulator());
|
|
54
|
+
}
|
|
55
|
+
createGraphicDragPipeline(a, t, e) {
|
|
56
|
+
const i = t.graphic, r = R(i), s = i.geometry.spatialReference;
|
|
57
|
+
return L(i, e, (c) => this.createDragPipeline((l, o, n, u, d) => ({ steps: o, cancel: n } = a(l, o, n, u, d), c(l, o, n)), r, s, i));
|
|
58
|
+
}
|
|
59
|
+
createDragPipeline(a, t, e, i) {
|
|
60
|
+
const r = this._view;
|
|
61
|
+
return B(this._manipulator, (s, c, l, o, n) => {
|
|
62
|
+
const u = c.next(N(r, s.elevationAlignedLocation)).next(P(r, s.elevationAlignedLocation, t, e, i)).next(...this._snapToScene.createDragEventPipelineStep(r, t)).next((d) => ({ ...d, manipulatorType: _.TRANSLATE_XY })).next(U());
|
|
63
|
+
a(s, u, l, o, n);
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
_updateManipulatorTransform() {
|
|
67
|
+
const a = m(A.get(), $(D.get(), this.displayScale, this.displayScale, this.displayScale));
|
|
68
|
+
this._manipulator.modelTransform = a;
|
|
69
|
+
}
|
|
70
|
+
_createManipulator() {
|
|
71
|
+
const a = this._view;
|
|
72
|
+
this._manipulator = new E({ view: a, worldSized: !1, autoScaleRenderObjects: !1, focusMultiplier: 1, touchMultiplier: 1, collisionType: { type: "disc", direction: p(0, 0, 1) }, worldOriented: !0 }), this._updateManipulator();
|
|
73
|
+
}
|
|
74
|
+
_updateManipulator() {
|
|
75
|
+
const a = X(this._discMaterial, b, 1, O, p(0, 0, 1), p(0, 0, 0));
|
|
76
|
+
a.transformation = m(w(), p(this._radius, this._radius, this._radius)), this._manipulator.renderObjects = [new h(a, M.Focused), new h(a.instantiate({ material: this._discMaterialTransparent }), M.Unfocused)], this._manipulator.radius = x * (this._radius / f);
|
|
77
|
+
}
|
|
78
|
+
_createMaterial(a = 1) {
|
|
79
|
+
const t = new j({ cullFace: G.Back, renderOccluded: Y.Transparent, isDecoration: !0 });
|
|
80
|
+
return this._handles.add(v(() => S.toUnitRGBA(this._view.effectiveTheme.accentColor), (e) => {
|
|
81
|
+
e[3] *= a, t.setParameters({ color: e });
|
|
82
|
+
}, y)), t;
|
|
83
|
+
}
|
|
84
|
+
get test() {
|
|
85
|
+
return { discManipulator: this._manipulator };
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
export {
|
|
89
|
+
ha as MoveXYDiscManipulation
|
|
90
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { screenToMapXYForGraphic as h } from "../dragEventPipeline3D.js";
|
|
2
|
+
import { ManipulatorType as c } from "../ManipulatorType.js";
|
|
3
|
+
import { Manipulation as u } from "./Manipulation.js";
|
|
4
|
+
import { createGraphicMoveDragPipeline as m } from "./moveUtils.js";
|
|
5
|
+
import { createManipulatorDragEventPipeline as _, addMapDelta as g, addScreenDelta as M } from "../../../../interactive/dragEventPipeline.js";
|
|
6
|
+
import { GraphicManipulator as v } from "../../../../interactive/GraphicManipulator.js";
|
|
7
|
+
class y extends u {
|
|
8
|
+
constructor(a) {
|
|
9
|
+
super(), this._view = a.view, this._tool = a.tool, this._graphicState = a.graphicState, this._createManipulator(), this.forEachManipulator((t) => this._tool.manipulators.add(t));
|
|
10
|
+
}
|
|
11
|
+
destroy() {
|
|
12
|
+
this.forEachManipulator((a) => {
|
|
13
|
+
this._tool.manipulators.remove(a), a.destroy();
|
|
14
|
+
}), this._tool = null, this._view = null, this._manipulator = null, this._graphicState = null;
|
|
15
|
+
}
|
|
16
|
+
forEachManipulator(a) {
|
|
17
|
+
a(this._manipulator, c.TRANSLATE_XY);
|
|
18
|
+
}
|
|
19
|
+
createGraphicDragPipeline(a) {
|
|
20
|
+
return m(this._graphicState.graphic, a, (t) => this.createDragPipeline(t));
|
|
21
|
+
}
|
|
22
|
+
createDragPipeline(a) {
|
|
23
|
+
const t = this._view, i = this._graphicState.graphic, e = i.geometry != null ? i.geometry.spatialReference : null;
|
|
24
|
+
return _(this._manipulator, (o, p, n, s, r) => {
|
|
25
|
+
const l = p.next(h(r, t, i, e)).next(g()).next(M());
|
|
26
|
+
a(o, l, n, s, r);
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
_createManipulator() {
|
|
30
|
+
const a = this._view, t = this._graphicState.graphic;
|
|
31
|
+
this._manipulator = new v({ graphic: t, view: a, selectable: !0, cursor: "move" });
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
export {
|
|
35
|
+
y as MoveXYGraphicManipulation
|
|
36
|
+
};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import F from "../../../../../Color.js";
|
|
2
|
+
import { darken as R } from "../../../../../core/colorUtils.js";
|
|
3
|
+
import b from "../../../../../core/Evented.js";
|
|
4
|
+
import { clamp as A } from "../../../../../core/mathUtils.js";
|
|
5
|
+
import { removeMaybe as x } from "../../../../../core/maybe.js";
|
|
6
|
+
import { watch as S } from "../../../../../core/reactiveUtils.js";
|
|
7
|
+
import { translate as E, rotateX as H, scale as j } from "../../../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
8
|
+
import { create as G } from "../../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
9
|
+
import { o as L, f as Z, n as P, k as I, b as T, h as N } from "../../../../../chunks/vec32.js";
|
|
10
|
+
import { create as y, fromValues as $ } from "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
11
|
+
import { Manipulator3D as W } from "../../Manipulator3D.js";
|
|
12
|
+
import { createManipulatorMaterial as D } from "../../manipulatorUtils.js";
|
|
13
|
+
import { RenderObject as m } from "../../RenderObject.js";
|
|
14
|
+
import { screenToZConstrained as q } from "../dragEventPipeline3D.js";
|
|
15
|
+
import { ManipulatorType as U } from "../ManipulatorType.js";
|
|
16
|
+
import { Settings as B } from "../settings.js";
|
|
17
|
+
import { discRadius as C } from "./config.js";
|
|
18
|
+
import { Manipulation as V } from "./Manipulation.js";
|
|
19
|
+
import { createGraphicMoveDragPipeline as X } from "./moveUtils.js";
|
|
20
|
+
import { createTubeGeometry as J, createConeGeometry as K } from "../../../webgl-engine/lib/GeometryUtil.js";
|
|
21
|
+
import { RenderOccludedFlag as k } from "../../../webgl-engine/lib/Material.js";
|
|
22
|
+
import { createManipulatorDragEventPipeline as Q, addScreenDelta as Y } from "../../../../interactive/dragEventPipeline.js";
|
|
23
|
+
import { ManipulatorStateFlags as u } from "../../../../interactive/interfaces.js";
|
|
24
|
+
class Pe extends V {
|
|
25
|
+
constructor(e) {
|
|
26
|
+
super(), this._radius = C, this.events = new b(), this._tool = e.tool, this._view = e.view;
|
|
27
|
+
const a = new B({ getTheme: () => this._view.effectiveTheme });
|
|
28
|
+
this._settings = a, e.radius != null && (this._radius = e.radius);
|
|
29
|
+
const r = this._view.effectiveTheme.accentColor;
|
|
30
|
+
this._materials = { materialUnfocused: D(this._createDarkenedColor(r, 1, 0.25), k.Occlude), materialFocused: D(this._createDarkenedColor(r, 1, 0), k.Occlude), materialOccludedUnfocused: D(this._createDarkenedColor(r, 0.7, 0), a.zManipulator.renderOccluded), materialOccludedFocused: D(this._createDarkenedColor(r, 0.85, 0), a.zManipulator.renderOccluded) }, this._themeHandle = S(() => this._view.effectiveTheme.accentColor, (t) => {
|
|
31
|
+
const o = this._createDarkenedColor(t, 1, 0.25), s = this._createDarkenedColor(t, 1, 0), l = this._createDarkenedColor(t, 0.7, 0), i = this._createDarkenedColor(t, 0.85, 0), { materialUnfocused: n, materialFocused: c, materialOccludedUnfocused: f, materialOccludedFocused: d } = this._materials;
|
|
32
|
+
n.setParameters({ color: o }), c.setParameters({ color: s }), f.setParameters({ color: l }), d.setParameters({ color: i });
|
|
33
|
+
}), this._createManipulator(), this.forEachManipulator((t) => this._tool.manipulators.add(t));
|
|
34
|
+
}
|
|
35
|
+
destroy() {
|
|
36
|
+
this._themeHandle = x(this._themeHandle), this._manipulator.applyObjectTransform = te, this.forEachManipulator((e) => {
|
|
37
|
+
this._tool.manipulators.remove(e), e.destroy();
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
forEachManipulator(e) {
|
|
41
|
+
e(this._manipulator, U.TRANSLATE_Z);
|
|
42
|
+
}
|
|
43
|
+
createGraphicDragPipeline(e, a, r) {
|
|
44
|
+
const t = a.graphic.geometry.spatialReference;
|
|
45
|
+
return X(a.graphic, r, (o) => this.createDragPipeline((s, l, i, n, c) => ({ steps: l, cancel: i } = e(s, l, i, n, c), o(s, l, i)), t));
|
|
46
|
+
}
|
|
47
|
+
createDragPipeline(e, a) {
|
|
48
|
+
const r = this._view;
|
|
49
|
+
return Q(this._manipulator, (t, o, s, l, i) => {
|
|
50
|
+
const n = o.next((c) => ({ ...c, manipulatorType: U.TRANSLATE_Z })).next(q(r, t.renderLocation, a)).next(Y());
|
|
51
|
+
e(t, n, s, l, i);
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
get radius() {
|
|
55
|
+
return this._radius;
|
|
56
|
+
}
|
|
57
|
+
set radius(e) {
|
|
58
|
+
e !== this._radius && (this._radius = e, this._updateManipulator());
|
|
59
|
+
}
|
|
60
|
+
_updateManipulator() {
|
|
61
|
+
const e = this._settings, a = this._radius / C, r = e.zManipulator.height * a, t = e.zManipulator.coneHeight * a, o = e.zManipulator.coneWidth * a, s = e.zManipulator.width * a, l = [$(0, 0, 0), $(0, 0, r)], i = [$(0, 0, 0), $(0, 0, r + t)], n = (v) => {
|
|
62
|
+
const h = G();
|
|
63
|
+
if (E(h, h, [0, 0, r]), H(h, h, Math.PI / 2), v) {
|
|
64
|
+
const O = 1 + 2 * v / o;
|
|
65
|
+
j(h, h, [O, O, O]);
|
|
66
|
+
}
|
|
67
|
+
return h;
|
|
68
|
+
}, c = n(0), { materialUnfocused: f, materialFocused: d, materialOccludedUnfocused: _, materialOccludedFocused: g } = this._materials, M = J(f, l, s / 2, 16, !1), p = K(f, t, o / 2, 16, !1);
|
|
69
|
+
p.transformation = c, this._manipulator.renderObjects = [new m(p, u.Unfocused), new m(M, u.Unfocused), new m(p.instantiate({ material: d }), u.Focused), new m(M.instantiate({ material: d }), u.Focused), new m(p.instantiate({ material: _ }), u.Unfocused), new m(M.instantiate({ material: _ }), u.Unfocused), new m(p.instantiate({ material: g }), u.Focused), new m(M.instantiate({ material: g }), u.Focused)], this._manipulator.radius = s / 2 + 2, this._manipulator.collisionType = { type: "line", paths: [i] };
|
|
70
|
+
}
|
|
71
|
+
_createManipulator() {
|
|
72
|
+
const e = this._view, a = new W({ view: e, autoScaleRenderObjects: !1, worldSized: !1, selectable: !1, cursor: "ns-resize", elevationInfo: this.elevationInfo, worldOriented: !0, collisionPriority: 1.6 });
|
|
73
|
+
a.applyObjectTransform = (r) => {
|
|
74
|
+
const t = e.state.camera, o = z;
|
|
75
|
+
e.renderCoordsHelper.toRenderCoords(this._manipulator.elevationAlignedLocation, o);
|
|
76
|
+
const s = L(t.eye, o), l = t.computeRenderPixelSizeAtDist(s), i = Z(w, o, t.eye);
|
|
77
|
+
P(i, i);
|
|
78
|
+
const n = ee;
|
|
79
|
+
e.renderCoordsHelper.worldUpAtPosition(z, n);
|
|
80
|
+
const c = Math.abs(I(i, n)), f = T(w, i, n), d = T(w, f, n), _ = A(c, 0.01, 1), g = 1 - Math.sqrt(1 - _ * _) / _ / t.fullWidth, M = this._settings, p = this._radius / C, v = M.zManipulator.width * p;
|
|
81
|
+
N(d, P(d, d), (1 / g - 1) * s + l * v), r[12] -= w[0], r[13] -= w[1], r[14] -= w[2];
|
|
82
|
+
}, this._manipulator = a, this._updateManipulator();
|
|
83
|
+
}
|
|
84
|
+
_createDarkenedColor(e, a, r) {
|
|
85
|
+
const t = R(e, r);
|
|
86
|
+
return t.a *= a, F.toUnitRGBA(t);
|
|
87
|
+
}
|
|
88
|
+
get test() {
|
|
89
|
+
return { manipulator: this._manipulator };
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
const z = y(), w = y(), ee = y(), te = () => {
|
|
93
|
+
};
|
|
94
|
+
export {
|
|
95
|
+
Pe as MoveZManipulation
|
|
96
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
const s = 128, r = 70, i = 80, e = 0.02, t = 54, n = 100, o = Math.ceil(46.666666666666664), a = 160, c = 0.5, d = 24, l = 9, g = a + 30, h = a + 53, I = 60, f = 23, u = 5 * Math.PI / 12, A = 1 * Math.PI / 3, R = 10, T = 0.2, m = 30, w = 53, P = 0.2, p = 0.3, M = 200, S = 3, k = 1e6;
|
|
2
|
+
export {
|
|
3
|
+
k as alignArrowsScaleThreshold,
|
|
4
|
+
i as discCollisionRadius,
|
|
5
|
+
e as discHeight,
|
|
6
|
+
r as discRadius,
|
|
7
|
+
o as discRadiusSmall,
|
|
8
|
+
n as discTranslateArrowOffset,
|
|
9
|
+
t as discTranslateArrowSize,
|
|
10
|
+
R as dragThresholdPx,
|
|
11
|
+
s as geometrySegments,
|
|
12
|
+
l as indicatorThickness,
|
|
13
|
+
g as innerIndicatorRadius,
|
|
14
|
+
h as outerIndicatorRadius,
|
|
15
|
+
c as ringHeight,
|
|
16
|
+
M as ringIndicatorDelayMs,
|
|
17
|
+
a as ringRadius,
|
|
18
|
+
S as ringResetAnimationSpeedFactor,
|
|
19
|
+
d as ringThickness,
|
|
20
|
+
u as rotateIndicatorArcLength,
|
|
21
|
+
T as rotateIndicatorArrowPlacementPercentage,
|
|
22
|
+
I as rotateIndicatorArrowTipLength,
|
|
23
|
+
f as rotateIndicatorArrowTipRadius,
|
|
24
|
+
p as rotateIndicatorDirectionBuffer,
|
|
25
|
+
A as scaleIndicatorArcLength,
|
|
26
|
+
P as scaleIndicatorDirectionBuffer,
|
|
27
|
+
m as scaleIndicatorOffset1,
|
|
28
|
+
w as scaleIndicatorOffset2
|
|
29
|
+
};
|