@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,158 @@
|
|
|
1
|
+
import { isSome as u } from "../../../../core/arrayUtils.js";
|
|
2
|
+
import { forEach as f } from "../../../../core/asyncUtils.js";
|
|
3
|
+
import { onAbortOrThrow as b, throwIfAborted as c } from "../../../../core/promiseUtils.js";
|
|
4
|
+
import { totalSymbolComplexities as L } from "./defaultSymbolComplexity.js";
|
|
5
|
+
import { Graphics3DGraphic as g } from "./Graphics3DGraphic.js";
|
|
6
|
+
import { Graphics3DObject3DGraphicLayer as S } from "./Graphics3DObject3DGraphicLayer.js";
|
|
7
|
+
import { Graphics3DSymbolLayerCreationContext as G } from "./Graphics3DSymbolCreationContext.js";
|
|
8
|
+
import { make as _ } from "./Graphics3DSymbolLayerFactory.js";
|
|
9
|
+
import { ApplyRendererDiffResult as y } from "./interfaces.js";
|
|
10
|
+
import { Loadable as D, LoadStatus as h } from "./Loadable.js";
|
|
11
|
+
class v extends D {
|
|
12
|
+
set symbol(t) {
|
|
13
|
+
this._symbol = t, t.symbolLayers.forEach((r, s) => {
|
|
14
|
+
const e = this.symbolLayers[s];
|
|
15
|
+
e != null && (e.symbol = t, e.symbolLayer = r);
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
get symbol() {
|
|
19
|
+
return this._symbol;
|
|
20
|
+
}
|
|
21
|
+
constructor(t, r, s) {
|
|
22
|
+
super(r.schedule), this._symbol = t, this._context = r, this._backgroundLayers = s, this._destroyed = !1, this.symbolLayers = new Array(), this.referenced = 0, this._extentPadding = 0;
|
|
23
|
+
}
|
|
24
|
+
async doLoad(t) {
|
|
25
|
+
let r = this._symbol.symbolLayers;
|
|
26
|
+
this._extentPadding = 0, this._backgroundLayers && (r = this._backgroundLayers.concat(r));
|
|
27
|
+
const s = r.length;
|
|
28
|
+
for (; this.symbolLayers.length < r.length; )
|
|
29
|
+
this.symbolLayers.push(null);
|
|
30
|
+
this.symbolLayers.length = r.length;
|
|
31
|
+
const e = [];
|
|
32
|
+
for (let o = 0; o < s; o++) {
|
|
33
|
+
const a = r.at(o);
|
|
34
|
+
if (a.enabled === !1)
|
|
35
|
+
continue;
|
|
36
|
+
i.renderPriority = 1 - (1 + o) / s, i.renderPriorityStep = 1 / s, i.ignoreDrivers = a.ignoreDrivers;
|
|
37
|
+
const l = _(this.symbol, a, this._context, i), n = b(t, () => {
|
|
38
|
+
this.symbolLayers[o] = null, l.destroy();
|
|
39
|
+
});
|
|
40
|
+
n && e.push(n), this.symbolLayers[o] = l;
|
|
41
|
+
}
|
|
42
|
+
if (await f(this.symbolLayers, async (o, a) => {
|
|
43
|
+
if (o != null)
|
|
44
|
+
try {
|
|
45
|
+
await o.load(), this._extentPadding += Math.max(this._extentPadding, o.extentPadding);
|
|
46
|
+
} catch {
|
|
47
|
+
this.symbolLayers[a] = null;
|
|
48
|
+
}
|
|
49
|
+
}), e.forEach((o) => o.remove()), c(t), this.symbolLayers.length && !this.symbolLayers.some((o) => !!o))
|
|
50
|
+
throw new Error();
|
|
51
|
+
}
|
|
52
|
+
getSymbolLayerSize(t) {
|
|
53
|
+
const r = this.symbolLayers[t];
|
|
54
|
+
return r != null ? r.getCachedSize() : null;
|
|
55
|
+
}
|
|
56
|
+
get extentPadding() {
|
|
57
|
+
return this._extentPadding;
|
|
58
|
+
}
|
|
59
|
+
get symbologySnappingSupported() {
|
|
60
|
+
return this.symbolLayers.some((t) => t == null ? void 0 : t.queryForSnapping);
|
|
61
|
+
}
|
|
62
|
+
createGraphics3DGraphic(t, r) {
|
|
63
|
+
var a, l;
|
|
64
|
+
const s = t.graphic, e = this.symbolLayers.map((n) => (n == null ? void 0 : n.createGraphics3DGraphic(t)) ?? null), o = this._context.arcade || ((l = (a = this._context.featureExpressionInfoContext) == null ? void 0 : a.arcade) == null ? void 0 : l.modules) || null;
|
|
65
|
+
return new g(s, r || this, e, t.layer, o);
|
|
66
|
+
}
|
|
67
|
+
get complexity() {
|
|
68
|
+
return L(this.symbolLayers.map((t) => t != null ? t.complexity : null));
|
|
69
|
+
}
|
|
70
|
+
globalPropertyChanged(t, r) {
|
|
71
|
+
const s = this.symbolLayers.length;
|
|
72
|
+
for (let e = 0; e < s; e++) {
|
|
73
|
+
const o = this.symbolLayers[e], a = (l) => {
|
|
74
|
+
const n = l.layers[e];
|
|
75
|
+
return n instanceof S ? n : null;
|
|
76
|
+
};
|
|
77
|
+
if (o != null && !o.globalPropertyChanged(t, r, a))
|
|
78
|
+
return !1;
|
|
79
|
+
}
|
|
80
|
+
return !0;
|
|
81
|
+
}
|
|
82
|
+
applyRendererDiff(t, r) {
|
|
83
|
+
return this.loadStatus !== h.LOADED ? y.RecreateSymbol : this.symbolLayers.reduce((s, e) => s !== y.RecreateSymbol && e != null ? Math.min(s, e.applyRendererDiff(t, r)) : s, y.FastUpdate);
|
|
84
|
+
}
|
|
85
|
+
prepareSymbolPatch(t) {
|
|
86
|
+
if (this.loadStatus === h.FAILED || t.diff.type !== "partial")
|
|
87
|
+
return;
|
|
88
|
+
const r = t.diff.diff;
|
|
89
|
+
if (!r.symbolLayers || r.symbolLayers.type !== "partial")
|
|
90
|
+
return;
|
|
91
|
+
const s = r.symbolLayers.diff;
|
|
92
|
+
this.symbolLayers.forEach((e, o) => {
|
|
93
|
+
if (e == null)
|
|
94
|
+
return;
|
|
95
|
+
const a = s[o];
|
|
96
|
+
if (a) {
|
|
97
|
+
const l = { diff: a, graphics3DGraphicPatches: [], symbolLayerStatePatches: [] };
|
|
98
|
+
e.prepareSymbolLayerPatch(l), t.symbolStatePatches.push(...l.symbolLayerStatePatches), l.graphics3DGraphicPatches.length && t.graphics3DGraphicPatches.push((n, p) => {
|
|
99
|
+
const m = n.layers[o];
|
|
100
|
+
m != null && l.graphics3DGraphicPatches.forEach((d) => d(m, p));
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
updateGeometry(t, r) {
|
|
106
|
+
return this._updateGeometryOrTransform(t, (s, e) => s.updateGeometry(e, r));
|
|
107
|
+
}
|
|
108
|
+
updateTransform(t, r, s, e) {
|
|
109
|
+
return this._updateGeometryOrTransform(t, (o, a) => o.updateTransform(a, r, s, e));
|
|
110
|
+
}
|
|
111
|
+
_updateGeometryOrTransform(t, r) {
|
|
112
|
+
for (let s = 0; s < this.symbolLayers.length; s++) {
|
|
113
|
+
const e = this.symbolLayers[s];
|
|
114
|
+
if (e == null)
|
|
115
|
+
continue;
|
|
116
|
+
const o = t.layers[s];
|
|
117
|
+
if (!o || !r(e, o))
|
|
118
|
+
return !1;
|
|
119
|
+
}
|
|
120
|
+
return !0;
|
|
121
|
+
}
|
|
122
|
+
onRemoveGraphic(t) {
|
|
123
|
+
for (let r = 0; r < this.symbolLayers.length; r++) {
|
|
124
|
+
const s = this.symbolLayers[r];
|
|
125
|
+
if (s == null)
|
|
126
|
+
continue;
|
|
127
|
+
const e = t.layers[r];
|
|
128
|
+
e != null && s.onRemoveGraphic(e);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
getFastUpdateStatus() {
|
|
132
|
+
let t = 0, r = 0, s = 0;
|
|
133
|
+
return this.symbolLayers.forEach((e) => {
|
|
134
|
+
e != null && (e.loadStatus === h.LOADING ? t++ : e.isFastUpdatesEnabled() ? s++ : r++);
|
|
135
|
+
}), { loading: t, slow: r, fast: s };
|
|
136
|
+
}
|
|
137
|
+
async queryForSnapping(t, r, s, e) {
|
|
138
|
+
const o = this.symbolLayers.filter(u).filter((l) => l.queryForSnapping != null).map((l) => l.queryForSnapping(t, r, s, e)), a = await Promise.all(o);
|
|
139
|
+
return c(e), a.flat();
|
|
140
|
+
}
|
|
141
|
+
destroy() {
|
|
142
|
+
if (this.destroyed)
|
|
143
|
+
console.error("Graphics3DSymbol.destroy called when already destroyed!");
|
|
144
|
+
else {
|
|
145
|
+
super.destroy();
|
|
146
|
+
for (const t of this.symbolLayers)
|
|
147
|
+
t != null && t.destroy();
|
|
148
|
+
this.symbolLayers.length = 0, this._destroyed = !0;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
get destroyed() {
|
|
152
|
+
return this._destroyed;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
const i = new G();
|
|
156
|
+
export {
|
|
157
|
+
v as Graphics3DSymbol
|
|
158
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
class i {
|
|
2
|
+
constructor(s, r) {
|
|
3
|
+
this.scheduler = s, this.schedule = r, this.sharedResources = null, this.streamDataRequester = null, this.elevationProvider = null, this.renderer = null, this.stage = null, this.clippingExtent = null, this.renderCoordsHelper = null, this.overlaySR = null, this.layer = null, this.drapeSourceRenderer = null, this.graphicsCoreOwner = null, this.localOriginFactory = null, this.featureExpressionInfoContext = null, this.screenSizePerspectiveEnabled = !0, this.slicePlaneEnabled = !1, this.physicalBasedRenderingEnabled = !1, this.skipHighSymbolLods = !1, this.isAsync = !1;
|
|
4
|
+
}
|
|
5
|
+
}
|
|
6
|
+
class t {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.renderPriority = 0, this.renderPriorityStep = 1, this.ignoreDrivers = !1;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
i as Graphics3DSymbolCreationContext,
|
|
13
|
+
t as Graphics3DSymbolLayerCreationContext
|
|
14
|
+
};
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
import g from "../../../../Color.js";
|
|
2
|
+
import "../../../../core/has.js";
|
|
3
|
+
import v from "../../../../core/Logger.js";
|
|
4
|
+
import { ONES as _ } from "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
5
|
+
import { fromValues as x } from "../../../../core/libs/gl-matrix-2/factories/vec4f64.js";
|
|
6
|
+
import { defaultSymbolLayerComplexity as C } from "./defaultSymbolComplexity.js";
|
|
7
|
+
import { SymbolUpdateType as d } from "./elevationAlignmentUtils.js";
|
|
8
|
+
import { ElevationContext as y } from "./ElevationContext.js";
|
|
9
|
+
import { zeroContext as b } from "./featureExpressionInfoUtils.js";
|
|
10
|
+
import { mixinColorAndOpacity as u } from "./graphicUtils.js";
|
|
11
|
+
import { ApplyRendererDiffResult as E } from "./interfaces.js";
|
|
12
|
+
import { Loadable as O } from "./Loadable.js";
|
|
13
|
+
import { getAttributeValue as c } from "../support/FastSymbolUpdates.js";
|
|
14
|
+
const l = () => v.getLogger("esri.views.3d.layers.graphics.Graphics3DSymbolLayer");
|
|
15
|
+
class k extends O {
|
|
16
|
+
constructor(e, t, i, r) {
|
|
17
|
+
super(i.schedule), this.symbol = e, this.symbolLayer = t, this._context = i, this.ignoreDrivers = !1, this._drivenProperties = { color: !1, opacity: !1, opacityAlwaysOpaque: !0, size: !1 }, this._materials = [], this.usedMemory = 0, this.logger = l(), this._elevationOptions = { supportsOffsetAdjustment: !1, supportsOnTheGround: !0 }, this.skipHighSymbolLodsChanged = !0, this._renderPriority = r.renderPriority, this._renderPriorityStep = r.renderPriorityStep, this._elevationContext = new y(), this.complexity = this.computeComplexity(), this.ignoreDrivers = r.ignoreDrivers, this.ignoreDrivers || (this._drivenProperties = f(this._context.renderer)), this._updateElevationContext();
|
|
18
|
+
}
|
|
19
|
+
getCachedSize() {
|
|
20
|
+
return null;
|
|
21
|
+
}
|
|
22
|
+
get extentPadding() {
|
|
23
|
+
return 0;
|
|
24
|
+
}
|
|
25
|
+
get materials() {
|
|
26
|
+
return this._materials;
|
|
27
|
+
}
|
|
28
|
+
_drivenPropertiesChanged(e) {
|
|
29
|
+
if (this.ignoreDrivers)
|
|
30
|
+
return !1;
|
|
31
|
+
const t = this._drivenProperties, i = f(e);
|
|
32
|
+
return i.color !== t.color || i.opacity !== t.opacity || i.opacityAlwaysOpaque !== t.opacityAlwaysOpaque || i.size !== t.size;
|
|
33
|
+
}
|
|
34
|
+
get needsDrivenTransparentPass() {
|
|
35
|
+
return this._drivenProperties.opacity && !this._drivenProperties.opacityAlwaysOpaque;
|
|
36
|
+
}
|
|
37
|
+
_logGeometryCreationWarnings(e, t, i, r) {
|
|
38
|
+
const o = e.projectionSuccess, n = "polygons" in e ? e.polygons : null, s = `${r} geometry failed to be created`;
|
|
39
|
+
let a = null;
|
|
40
|
+
o ? !this._logGeometryValidationWarnings(t, i, r) && n && n.length === 0 && i === "rings" && t.length > 0 && t[0].length > 2 && (a = `${s} (filled rings should use clockwise winding - try reversing the order of vertices)`) : a = `${s} (failed to project geometry to view spatial reference)`, a && l().warnOncePerTick(a);
|
|
41
|
+
}
|
|
42
|
+
_logGeometryValidationWarnings(e, t, i) {
|
|
43
|
+
const r = `${i} geometry failed to be created`;
|
|
44
|
+
return !e.length || e.length === 1 && !e[0].length ? (l().warnOncePerTick(`${r} (no ${t} were defined)`), !0) : (!Array.isArray(e) || !Array.isArray(e[0])) && (l().warnOncePerTick(`${r} (${t} should be defined as a 2D array)`), !0);
|
|
45
|
+
}
|
|
46
|
+
_validateGeometry(e, t = null, i = null) {
|
|
47
|
+
if (t != null && !t.includes(e.type))
|
|
48
|
+
return this.logger.warn("unsupported geometry type for " + i + ` symbol: ${e.type}`), !1;
|
|
49
|
+
if (e.type === "point") {
|
|
50
|
+
const r = e;
|
|
51
|
+
if (!isFinite(r.x) || !isFinite(r.y))
|
|
52
|
+
return l().warn("point coordinate is not a valid number, graphic skipped"), !1;
|
|
53
|
+
}
|
|
54
|
+
return !0;
|
|
55
|
+
}
|
|
56
|
+
_defaultElevationInfoNoZ() {
|
|
57
|
+
return w;
|
|
58
|
+
}
|
|
59
|
+
_defaultElevationInfoZ() {
|
|
60
|
+
return P;
|
|
61
|
+
}
|
|
62
|
+
_updateElevationContext() {
|
|
63
|
+
this._elevationInfoOverride != null ? (this._elevationContext.setFromElevationInfo(this._elevationInfoOverride), this._elevationContext.updateFeatureExpressionInfoContext(null)) : this._context.layer.elevationInfo ? (this._elevationContext.setFromElevationInfo(this._context.layer.elevationInfo), this._elevationContext.updateFeatureExpressionInfoContext(this._context.featureExpressionInfoContext)) : this._elevationContext.reset();
|
|
64
|
+
}
|
|
65
|
+
getDefaultElevationInfo(e) {
|
|
66
|
+
return e.hasZ ? this._defaultElevationInfoZ() : this._defaultElevationInfoNoZ();
|
|
67
|
+
}
|
|
68
|
+
getGeometryElevationMode(e, t = this.getDefaultElevationInfo(e)) {
|
|
69
|
+
return this._elevationContext.mode || t.mode;
|
|
70
|
+
}
|
|
71
|
+
setElevationInfoOverride(e) {
|
|
72
|
+
this._elevationInfoOverride = e, this._updateElevationContext();
|
|
73
|
+
}
|
|
74
|
+
setGraphicElevationContext(e, t = new y()) {
|
|
75
|
+
const i = e.geometry, r = this.getDefaultElevationInfo(i);
|
|
76
|
+
t.unit = this._elevationContext.unit != null ? this._elevationContext.unit : r.unit, t.mode = this.getGeometryElevationMode(i, r), t.offsetMeters = this._elevationContext.meterUnitOffset ?? r.offset ?? 0;
|
|
77
|
+
const o = !this._elevationOptions.supportsOnTheGround && t.mode === "on-the-ground";
|
|
78
|
+
o && (t.mode = "relative-to-ground", t.offsetMeters = 0);
|
|
79
|
+
const n = o ? b : this._elevationContext.featureExpressionInfoContext;
|
|
80
|
+
return t.updateFeatureExpressionInfoContext(n, e, this._context.layer), t;
|
|
81
|
+
}
|
|
82
|
+
prepareSymbolLayerPatch(e) {
|
|
83
|
+
}
|
|
84
|
+
updateGeometry(e, t) {
|
|
85
|
+
return !1;
|
|
86
|
+
}
|
|
87
|
+
updateTransform(e, t, i, r) {
|
|
88
|
+
return !1;
|
|
89
|
+
}
|
|
90
|
+
onRemoveGraphic(e) {
|
|
91
|
+
}
|
|
92
|
+
_getLayerOpacity() {
|
|
93
|
+
return this._context.graphicsCoreOwner && "fullOpacity" in this._context.graphicsCoreOwner ? this._context.graphicsCoreOwner.fullOpacity ?? 0 : this._context.layer.opacity ?? 1;
|
|
94
|
+
}
|
|
95
|
+
_getCombinedOpacity(e, t = m) {
|
|
96
|
+
let i = 1;
|
|
97
|
+
return this.draped || (i *= this._getLayerOpacity()), this._drivenProperties.opacity || (e != null ? i *= e.a : t.hasIntrinsicColor || (i = 0)), i;
|
|
98
|
+
}
|
|
99
|
+
_getCombinedOpacityAndColor(e, t = m) {
|
|
100
|
+
const i = this._getCombinedOpacity(e, t);
|
|
101
|
+
if (this._drivenProperties.color)
|
|
102
|
+
return u(null, i);
|
|
103
|
+
const r = e != null ? g.toUnitRGB(e) : _;
|
|
104
|
+
return u(r, i);
|
|
105
|
+
}
|
|
106
|
+
_getVertexOpacityAndColor(e, t = null) {
|
|
107
|
+
const i = this._drivenProperties.color ? e.color : null, r = this._drivenProperties.opacity ? e.opacity : null, o = u(i, r);
|
|
108
|
+
return t && (o[0] *= t, o[1] *= t, o[2] *= t, o[3] *= t), o;
|
|
109
|
+
}
|
|
110
|
+
isFastUpdatesEnabled() {
|
|
111
|
+
return this._fastUpdates != null;
|
|
112
|
+
}
|
|
113
|
+
computeComplexity() {
|
|
114
|
+
return C(this.symbol, this.symbolLayer);
|
|
115
|
+
}
|
|
116
|
+
globalPropertyChanged(e, t, i) {
|
|
117
|
+
switch (e) {
|
|
118
|
+
case "opacity":
|
|
119
|
+
return this.layerOpacityChanged(t, i), !0;
|
|
120
|
+
case "elevationInfo": {
|
|
121
|
+
const r = this._elevationContext.mode;
|
|
122
|
+
return this._updateElevationContext(), this.layerElevationInfoChanged(t, i, r) !== d.RECREATE;
|
|
123
|
+
}
|
|
124
|
+
case "slicePlaneEnabled":
|
|
125
|
+
return this.slicePlaneEnabledChanged(t, i);
|
|
126
|
+
case "physicalBasedRenderingEnabled":
|
|
127
|
+
return this.physicalBasedRenderingChanged();
|
|
128
|
+
case "pixelRatio":
|
|
129
|
+
return this.pixelRatioChanged;
|
|
130
|
+
case "skipHighSymbolLods":
|
|
131
|
+
return this.skipHighSymbolLodsChanged;
|
|
132
|
+
default:
|
|
133
|
+
return !1;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
get pixelRatioChanged() {
|
|
137
|
+
return !0;
|
|
138
|
+
}
|
|
139
|
+
updateGraphics3DGraphicElevationInfo(e, t, i) {
|
|
140
|
+
let r = d.UPDATE;
|
|
141
|
+
return e.forEach((o) => {
|
|
142
|
+
const n = t(o);
|
|
143
|
+
if (n != null) {
|
|
144
|
+
const s = o.graphic;
|
|
145
|
+
this.setGraphicElevationContext(s, n.elevationContext), n.needsElevationUpdates = i(n.elevationContext.mode);
|
|
146
|
+
} else
|
|
147
|
+
r = d.RECREATE;
|
|
148
|
+
}), r;
|
|
149
|
+
}
|
|
150
|
+
applyRendererDiff(e, t) {
|
|
151
|
+
return E.RecreateSymbol;
|
|
152
|
+
}
|
|
153
|
+
getFastUpdateAttrValues(e) {
|
|
154
|
+
if (!this._fastUpdates)
|
|
155
|
+
return null;
|
|
156
|
+
const t = this._fastUpdates.visualVariables, i = t.size ? c(t.size.field, e) : 0, r = t.color ? c(t.color.field, e) : 0, o = t.opacity ? c(t.opacity.field, e) : 0;
|
|
157
|
+
return x(i, r, o, 0);
|
|
158
|
+
}
|
|
159
|
+
get draped() {
|
|
160
|
+
return this._draped;
|
|
161
|
+
}
|
|
162
|
+
ensureDrapedStatus(e) {
|
|
163
|
+
return this._draped == null ? (this._draped = e, !0) : (e !== this.draped && l().warnOnce("A symbol can only produce either draped or non-draped visualizations. Use two separate symbol instances for draped and non-draped graphics if necessary."), !1);
|
|
164
|
+
}
|
|
165
|
+
test() {
|
|
166
|
+
const e = () => {
|
|
167
|
+
var t, i, r, o, n, s, a, h;
|
|
168
|
+
return { size: ((i = (t = this._fastUpdates) == null ? void 0 : t.visualVariables.size) == null ? void 0 : i.field) ?? null, color: ((o = (r = this._fastUpdates) == null ? void 0 : r.visualVariables.color) == null ? void 0 : o.field) ?? null, opacity: ((s = (n = this._fastUpdates) == null ? void 0 : n.visualVariables.opacity) == null ? void 0 : s.field) ?? null, rotation: ((h = (a = this._fastUpdates) == null ? void 0 : a.visualVariables.rotation) == null ? void 0 : h.field) ?? null };
|
|
169
|
+
};
|
|
170
|
+
return { drivenProperties: this._drivenProperties, getVisVarFields: e };
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
function f(p) {
|
|
174
|
+
const e = { color: !1, opacity: !1, opacityAlwaysOpaque: !0, size: !1 };
|
|
175
|
+
return p && "visualVariables" in p && p.visualVariables && p.visualVariables.forEach((t) => {
|
|
176
|
+
switch (t.type) {
|
|
177
|
+
case "color":
|
|
178
|
+
if (e.color = !0, t.stops)
|
|
179
|
+
for (let i = 0; i < t.stops.length; i++) {
|
|
180
|
+
const r = t.stops[i].color;
|
|
181
|
+
r && (e.opacity = !0, r.a < 1 && (e.opacityAlwaysOpaque = !1));
|
|
182
|
+
}
|
|
183
|
+
break;
|
|
184
|
+
case "opacity":
|
|
185
|
+
e.opacity = !0, e.opacityAlwaysOpaque = !1;
|
|
186
|
+
break;
|
|
187
|
+
case "size":
|
|
188
|
+
e.size = !0;
|
|
189
|
+
}
|
|
190
|
+
}), e;
|
|
191
|
+
}
|
|
192
|
+
const w = { mode: "on-the-ground", offset: 0, unit: "meters" }, P = { mode: "absolute-height", offset: 0, unit: "meters" }, m = { hasIntrinsicColor: !1 };
|
|
193
|
+
export {
|
|
194
|
+
k as Graphics3DSymbolLayer
|
|
195
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import i from "../../../../core/Logger.js";
|
|
2
|
+
import { Graphics3DExtrudeSymbolLayer as s } from "./Graphics3DExtrudeSymbolLayer.js";
|
|
3
|
+
import { Graphics3DIconSymbolLayer as y } from "./Graphics3DIconSymbolLayer.js";
|
|
4
|
+
import { Graphics3DLineSymbolLayer as p } from "./Graphics3DLineSymbolLayer.js";
|
|
5
|
+
import { Graphics3DMeshFillSymbolLayer as l } from "./Graphics3DMeshFillSymbolLayer.js";
|
|
6
|
+
import { Graphics3DObjectSymbolLayer as c } from "./Graphics3DObjectSymbolLayer.js";
|
|
7
|
+
import { Graphics3DPathSymbolLayer as h } from "./Graphics3DPathSymbolLayer.js";
|
|
8
|
+
import { Graphics3DPolygonFillSymbolLayer as n } from "./Graphics3DPolygonFillSymbolLayer.js";
|
|
9
|
+
import { Graphics3DTextSymbolLayer as b } from "./Graphics3DTextSymbolLayer.js";
|
|
10
|
+
import { Graphics3DWaterSymbolLayer as f } from "./Graphics3DWaterSymbolLayer.js";
|
|
11
|
+
function $(o, r, t, m) {
|
|
12
|
+
var e;
|
|
13
|
+
const a = ((e = D[o.type]) == null ? void 0 : e[r.type]) || L[r.type];
|
|
14
|
+
return a ? new a(o, r, t, m) : (i.getLogger("esri.views.3d.layers.graphics.Graphics3DSymbolLayerFactory").error("GraphicsLayerFactory#make", `unknown symbol type ${r.type}`), null);
|
|
15
|
+
}
|
|
16
|
+
const L = { icon: y, object: c, line: p, path: h, fill: n, extrude: s, text: b, water: f }, D = { "mesh-3d": { fill: l } };
|
|
17
|
+
export {
|
|
18
|
+
$ as make
|
|
19
|
+
};
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import M from "../../../../core/Error.js";
|
|
2
|
+
import { isPromiseLike as k } from "../../../../core/promiseUtils.js";
|
|
3
|
+
import { pt2px as $ } from "../../../../core/screenUtils.js";
|
|
4
|
+
import { fromValues as w, ZEROS as N, create as P } from "../../../../core/libs/gl-matrix-2/factories/vec2f64.js";
|
|
5
|
+
import { fromValues as Z } from "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
6
|
+
import { hasCalloutSupport as q, textSymbolLayerSupportsVerticalOffset as B } from "../../../../symbols/callouts/calloutUtils.js";
|
|
7
|
+
import { perObjectElevationAligner as J } from "./ElevationAligners.js";
|
|
8
|
+
import { SymbolUpdateType as Q, needsElevationUpdates2D as O } from "./elevationAlignmentUtils.js";
|
|
9
|
+
import { ElevationContext as X } from "./ElevationContext.js";
|
|
10
|
+
import { Graphics3DObject3DGraphicLayer as Y } from "./Graphics3DObject3DGraphicLayer.js";
|
|
11
|
+
import { Graphics3DObjectMetadata as K } from "./Graphics3DObjectMetadata.js";
|
|
12
|
+
import { Graphics3DSymbolLayer as ee } from "./Graphics3DSymbolLayer.js";
|
|
13
|
+
import { validateSymbolLayerSize as te } from "./graphicUtils.js";
|
|
14
|
+
import { LabelParameters as re, LabelPlacement as ne } from "./LabelParameters.js";
|
|
15
|
+
import { verticalScreenOffsetFromAlignment as se, verticalPlacementFromAlignment as ae, textRenderAlignmentFromHorizontalPlacement as oe, horizontalPlacementToAnchorX as ie, anchorFromPlacements as le, namedAnchorToHUDMaterialAnchorPos as ce } from "./placementUtils.js";
|
|
16
|
+
import { placePointOnGeometry as S, createStageObject as me, extendPointGraphicElevationContext as pe } from "./pointUtils.js";
|
|
17
|
+
import { getFontMetrics as he } from "../../webgl-engine/lib/FontMetrics.js";
|
|
18
|
+
import { createPointGeometry as fe } from "../../webgl-engine/lib/GeometryUtil.js";
|
|
19
|
+
import { TextRenderParameters as ue } from "../../webgl-engine/lib/TextRenderParameters.js";
|
|
20
|
+
import de from "../../webgl-engine/lib/TextTextureFactory.js";
|
|
21
|
+
import { HUDMaterial as L } from "../../webgl-engine/materials/HUDMaterial.js";
|
|
22
|
+
const ye = Z(0, 0, 1);
|
|
23
|
+
class Ie extends ee {
|
|
24
|
+
constructor(t, r, n, e) {
|
|
25
|
+
super(t, r, n, e), this._elevationOptions = { supportsOffsetAdjustment: !0, supportsOnTheGround: !1 }, this.ensureDrapedStatus(!1);
|
|
26
|
+
}
|
|
27
|
+
async doLoad() {
|
|
28
|
+
if (!this._drivenProperties.size) {
|
|
29
|
+
const t = te(this.symbolLayer.size);
|
|
30
|
+
if (t)
|
|
31
|
+
throw new M("graphics3dtextsymbollayer:invalid-size", t);
|
|
32
|
+
}
|
|
33
|
+
await this._createTextRenderParameters();
|
|
34
|
+
}
|
|
35
|
+
async _createTextRenderParameters() {
|
|
36
|
+
const t = this._context.graphicsCoreOwner.view.state.rasterPixelRatio;
|
|
37
|
+
this._textRenderParameters = await ue.fromSymbol(this.symbolLayer, t);
|
|
38
|
+
}
|
|
39
|
+
destroy() {
|
|
40
|
+
super.destroy();
|
|
41
|
+
}
|
|
42
|
+
createGraphics3DGraphic(t) {
|
|
43
|
+
const r = t.graphic, n = S(r.geometry);
|
|
44
|
+
if (n == null)
|
|
45
|
+
return this.logger.warn(`unsupported geometry type for text symbol: ${r.geometry.type}`), null;
|
|
46
|
+
const e = this.symbolLayer.text;
|
|
47
|
+
if (e == null || e === "")
|
|
48
|
+
return null;
|
|
49
|
+
const p = q(this.symbol) && this.symbol.hasVisibleVerticalOffset() ? this.symbol.verticalOffset : null;
|
|
50
|
+
if (p != null && !B(this.symbolLayer))
|
|
51
|
+
return this.logger.errorOncePerTick(`Callouts and vertical offset on text symbols are currently only supported with 'center' horizontal alignment (not with '${this.symbolLayer.horizontalAlignment}' alignment)`), null;
|
|
52
|
+
const { verticalAlignment: l } = this.symbolLayer, h = new ne(p);
|
|
53
|
+
se(l, h.screenOffset);
|
|
54
|
+
const c = new re(h, this.symbolLayer.horizontalAlignment, ae(l));
|
|
55
|
+
return this._createAs3DShape(r, n, e, c);
|
|
56
|
+
}
|
|
57
|
+
createLabel(t, r, n, e, p) {
|
|
58
|
+
const l = t.graphic, h = S(l.geometry);
|
|
59
|
+
if (h == null)
|
|
60
|
+
return this.logger.warn(`unsupported geometry type for label: ${l.geometry.type}`), null;
|
|
61
|
+
const c = r.text;
|
|
62
|
+
return !c || /^\s+$/.test(c) ? null : this._createAs3DShape(l, h, c, r, n, e, p);
|
|
63
|
+
}
|
|
64
|
+
setGraphicElevationContext(t, r, n = 0) {
|
|
65
|
+
return super.setGraphicElevationContext(t, r), r.addOffsetRenderUnits(n), r;
|
|
66
|
+
}
|
|
67
|
+
layerOpacityChanged() {
|
|
68
|
+
return this.logger.warn("layer opacity change not yet implemented in Graphics3DTextSymbolLayer"), !1;
|
|
69
|
+
}
|
|
70
|
+
layerElevationInfoChanged(t, r) {
|
|
71
|
+
return E(t, r, (n, e) => {
|
|
72
|
+
this.updateGraphicElevationContext(e, n);
|
|
73
|
+
}), Q.UPDATE;
|
|
74
|
+
}
|
|
75
|
+
slicePlaneEnabledChanged(t, r) {
|
|
76
|
+
return E(t, r, (n) => {
|
|
77
|
+
for (const e of n.stageObject.geometries)
|
|
78
|
+
e.material.setParameters({ hasSlicePlane: this._context.slicePlaneEnabled });
|
|
79
|
+
}), !0;
|
|
80
|
+
}
|
|
81
|
+
physicalBasedRenderingChanged() {
|
|
82
|
+
return !0;
|
|
83
|
+
}
|
|
84
|
+
get pixelRatioChanged() {
|
|
85
|
+
return !1;
|
|
86
|
+
}
|
|
87
|
+
updateGraphicElevationContext(t, r) {
|
|
88
|
+
const n = r.elevationContext;
|
|
89
|
+
this.setGraphicElevationContext(t, n, r.metadata != null ? r.metadata.elevationOffset : 0), r.needsElevationUpdates = O(n.mode) || n.mode === "absolute-height";
|
|
90
|
+
}
|
|
91
|
+
_defaultElevationInfoNoZ() {
|
|
92
|
+
return xe;
|
|
93
|
+
}
|
|
94
|
+
_createAs3DShape(t, r, n, e, p = null, l = null, h = () => e.placement.elevationOffset) {
|
|
95
|
+
var b;
|
|
96
|
+
const c = this.setGraphicElevationContext(t, new X(), e.placement.elevationOffset), _ = ((b = t.geometry) == null ? void 0 : b.type) === "polyline", z = t.uid;
|
|
97
|
+
let i = null, f = null;
|
|
98
|
+
if (l == null) {
|
|
99
|
+
const s = oe(e.horizontalPlacement);
|
|
100
|
+
i = new de(n, s, this._textRenderParameters);
|
|
101
|
+
let a = null;
|
|
102
|
+
if (this._context.sharedResources.textures != null) {
|
|
103
|
+
f = this._context.sharedResources.textures.fromData(i.key, () => i.create()), f.texture.events.on("unloaded", () => a == null ? void 0 : a.release());
|
|
104
|
+
const o = this._context.stage.renderView.textureRepository.acquire(f.texture.id);
|
|
105
|
+
if (o == null || k(o))
|
|
106
|
+
return f.release(), null;
|
|
107
|
+
a = o;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
const A = ge(i, e), m = { occlusionTest: !0, screenOffset: e.placement.screenOffset, anchorPosition: A, polygonOffset: !0, color: [1, 1, 1, 1], centerOffsetUnits: e.placement.centerOffsetUnits, drawInSecondSlot: !0 };
|
|
111
|
+
if (l ? m.textureId = l.id : f && (m.textureId = f.texture.id), e.placement.verticalOffset != null) {
|
|
112
|
+
const { screenLength: s, minWorldLength: a, maxWorldLength: o } = e.placement.verticalOffset;
|
|
113
|
+
m.verticalOffset = { screenLength: $(s), minWorldLength: a || 0, maxWorldLength: o ?? 1 / 0 };
|
|
114
|
+
}
|
|
115
|
+
if (this._context.screenSizePerspectiveEnabled) {
|
|
116
|
+
const { screenSizePerspectiveSettings: s, screenSizePerspectiveSettingsLabels: a } = this._context.sharedResources, o = he(this._textRenderParameters);
|
|
117
|
+
m.screenSizePerspective = a.overrideFontHeight(o.maxHeight), m.screenSizePerspectiveAlignment = s;
|
|
118
|
+
}
|
|
119
|
+
_ && (m.shaderPolygonOffset = 1e-4), m.hasSlicePlane = this._context.slicePlaneEnabled;
|
|
120
|
+
const C = (s, a) => {
|
|
121
|
+
const o = JSON.stringify(a);
|
|
122
|
+
let y = s.get(o);
|
|
123
|
+
return y == null && (y = new L(a), s.add(o, y)), y;
|
|
124
|
+
}, x = p ? C(p, m) : new L(m), G = e.placement.translation, D = i ? w(i.displayWidth, i.displayHeight) : N, R = e.placement.centerOffset, T = ye, U = P(), v = fe(x, T, G, null, D, R, U, null), g = me(this._context, r, v, c, z);
|
|
125
|
+
if (g == null)
|
|
126
|
+
return null;
|
|
127
|
+
const j = (s, a, o, y, W, F) => {
|
|
128
|
+
const I = h() || e.placement.elevationOffset, V = this.setGraphicElevationContext(t, a, I);
|
|
129
|
+
return J(s, V, o, y, W, F);
|
|
130
|
+
}, d = new Y(this, g.object, [v], p == null ? [x] : null, f, j, c);
|
|
131
|
+
d.alignedSampledElevation = g.sampledElevation, d.needsElevationUpdates = O(c.mode) || c.mode === "absolute-height", d.getScreenSize = (s = P()) => (s[0] = i ? i.displayWidth : e.displaySize[0], s[1] = i ? i.displayHeight : e.displaySize[1], s);
|
|
132
|
+
const H = new K(e.placement.elevationOffset, n);
|
|
133
|
+
return d.metadata = H, pe(d, r, this._context.elevationProvider), d;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
function E(u, t, r) {
|
|
137
|
+
u && u.forEach((n) => {
|
|
138
|
+
const e = t(n);
|
|
139
|
+
e != null && r(e, n.graphic);
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
function ge(u, t) {
|
|
143
|
+
if (t.verticalPlacement === "baseline") {
|
|
144
|
+
const n = ie[t.horizontalPlacement], e = u != null ? u.baselineAnchorY : 0;
|
|
145
|
+
return w(n, e);
|
|
146
|
+
}
|
|
147
|
+
const r = le(t.horizontalPlacement, t.verticalPlacement);
|
|
148
|
+
return ce[r];
|
|
149
|
+
}
|
|
150
|
+
const xe = { mode: "relative-to-ground", offset: 0 };
|
|
151
|
+
export {
|
|
152
|
+
Ie as Graphics3DTextSymbolLayer
|
|
153
|
+
};
|