@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,152 @@
|
|
|
1
|
+
import { neverReached as m } from "../../../../core/compilerUtils.js";
|
|
2
|
+
import { defaultPrimitive as L } from "../../../../symbols/support/ObjectSymbol3DLayerResource.js";
|
|
3
|
+
import { pathNumRoundCapExtrusionSubdivisions as C, pathNumCircleProfileSubdivisions as f, pathNumRoundJoinSubdivisions as E } from "./Graphics3DPathSymbolLayerConstants.js";
|
|
4
|
+
import { primitiveLodResources as v } from "./primitiveObjectSymbolUtils.js";
|
|
5
|
+
import { EstimatedSymbolComplexity as d, EstimatedAggregateSymbolComplexity as w, AggregateSymbolComplexity as _, SymbolComplexity as i, SymbolComplexityMemory as I } from "./SymbolComplexity.js";
|
|
6
|
+
import { hasEdges as N } from "../support/edgeUtils.js";
|
|
7
|
+
import { DefaultMaterial as O } from "../../webgl-engine/materials/DefaultMaterial.js";
|
|
8
|
+
const T = new d({});
|
|
9
|
+
function k(t) {
|
|
10
|
+
return t.type === "web-style" ? T : F(t.symbolLayers.toArray().map((e) => x(t, e)));
|
|
11
|
+
}
|
|
12
|
+
function F(t) {
|
|
13
|
+
let e = 0, r = 0, o = 0, y = !1, l = 0;
|
|
14
|
+
const a = new I();
|
|
15
|
+
for (const u of t)
|
|
16
|
+
u != null && (e += u.verticesPerFeature, r += u.verticesPerCoordinate, o += u.drawCallsPerFeature, a.bytesPerFeature += u.memory.bytesPerFeature, a.bytesPerFeatureLabel += u.memory.bytesPerFeatureLabel, a.resourceBytes += u.memory.resourceBytes, a.draped.bytesPerFeature += u.memory.bytesPerFeature, a.draped.bytesPerFeatureLabel += u.memory.bytesPerFeatureLabel, y = y || u.estimated, ++l);
|
|
17
|
+
return y ? new w(l, { verticesPerFeature: e, verticesPerCoordinate: r, drawCallsPerFeature: o, memory: a }) : new _(l, { verticesPerFeature: e, verticesPerCoordinate: r, drawCallsPerFeature: o, memory: a });
|
|
18
|
+
}
|
|
19
|
+
function $(t) {
|
|
20
|
+
const e = F(t);
|
|
21
|
+
return e.numComplexities > 0 && (e.verticesPerFeature /= e.numComplexities, e.verticesPerCoordinate /= e.numComplexities, e.drawCallsPerFeature /= e.numComplexities, e.memory.bytesPerFeature /= e.numComplexities, e.memory.bytesPerFeatureLabel /= e.numComplexities, e.memory.resourceBytes /= e.numComplexities, e.memory.draped.bytesPerFeature /= e.numComplexities, e.memory.draped.bytesPerFeatureLabel /= e.numComplexities), e;
|
|
22
|
+
}
|
|
23
|
+
const b = {};
|
|
24
|
+
function x(t, e) {
|
|
25
|
+
var y, l;
|
|
26
|
+
const r = R(t, e), o = N(e) ? 2 : 0;
|
|
27
|
+
switch (e.type) {
|
|
28
|
+
case "extrude":
|
|
29
|
+
return new i({ verticesPerFeature: -12, verticesPerCoordinate: 12, drawCallsPerFeature: o, memory: r });
|
|
30
|
+
case "fill":
|
|
31
|
+
if (t.type === "mesh-3d")
|
|
32
|
+
return new i({ drawCallsPerFeature: o, memory: r });
|
|
33
|
+
if (e.outline != null && e.outline.size > 0)
|
|
34
|
+
return new i({ verticesPerFeature: -12, verticesPerCoordinate: 9, memory: r });
|
|
35
|
+
case "water":
|
|
36
|
+
return new i({ verticesPerFeature: -6, verticesPerCoordinate: 3, memory: r });
|
|
37
|
+
case "line":
|
|
38
|
+
return new i({ verticesPerFeature: -6, verticesPerCoordinate: 6, memory: r });
|
|
39
|
+
case "object":
|
|
40
|
+
return (y = e.resource) != null && y.href ? new d({ verticesPerFeature: 100, memory: r }) : { ...B(((l = e.resource) == null ? void 0 : l.primitive) ?? L), memory: r };
|
|
41
|
+
case "path": {
|
|
42
|
+
let a = 0, u = 0;
|
|
43
|
+
switch (e.profile) {
|
|
44
|
+
case "circle":
|
|
45
|
+
a = f;
|
|
46
|
+
break;
|
|
47
|
+
case "quad":
|
|
48
|
+
a = 4;
|
|
49
|
+
break;
|
|
50
|
+
default:
|
|
51
|
+
return void m(e.profile);
|
|
52
|
+
}
|
|
53
|
+
switch (e.join ?? "simple") {
|
|
54
|
+
case "round":
|
|
55
|
+
u = E;
|
|
56
|
+
break;
|
|
57
|
+
case "miter":
|
|
58
|
+
case "bevel":
|
|
59
|
+
u = 1;
|
|
60
|
+
break;
|
|
61
|
+
default:
|
|
62
|
+
return;
|
|
63
|
+
}
|
|
64
|
+
const c = 2 * a, P = a * u * 2, p = P + c;
|
|
65
|
+
let n = -2 * P - c;
|
|
66
|
+
switch (e.cap) {
|
|
67
|
+
case "none":
|
|
68
|
+
break;
|
|
69
|
+
case "butt":
|
|
70
|
+
case "square":
|
|
71
|
+
n += 2 * (a - 1);
|
|
72
|
+
break;
|
|
73
|
+
case "round":
|
|
74
|
+
n += 2 * (a * (C - 1) * 2 + a);
|
|
75
|
+
break;
|
|
76
|
+
default:
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
return new i({ verticesPerFeature: n, verticesPerCoordinate: p, memory: r });
|
|
80
|
+
}
|
|
81
|
+
case "text":
|
|
82
|
+
case "icon":
|
|
83
|
+
return new i({ verticesPerFeature: 6, memory: r });
|
|
84
|
+
default:
|
|
85
|
+
return;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
function R(t, e) {
|
|
89
|
+
const r = t.type === "point-3d";
|
|
90
|
+
switch (e.type) {
|
|
91
|
+
case "extrude":
|
|
92
|
+
return e.edges && e.edges.size > 0 ? s.EXTRUDE_EDGES : s.EXTRUDE;
|
|
93
|
+
case "fill":
|
|
94
|
+
return e.outline != null && e.outline.size > 0 ? s.FILL_OUTLINE : s.FILL;
|
|
95
|
+
case "water":
|
|
96
|
+
return s.FILL;
|
|
97
|
+
case "line":
|
|
98
|
+
return e.join === "round" ? s.LINE_ROUND : s.LINE_MITER;
|
|
99
|
+
case "path":
|
|
100
|
+
switch (e.join) {
|
|
101
|
+
case "round":
|
|
102
|
+
switch (e.profile) {
|
|
103
|
+
case "circle":
|
|
104
|
+
return s.PATH_ROUND_CIRCLE;
|
|
105
|
+
case "quad":
|
|
106
|
+
return s.PATH_ROUND_QUAD;
|
|
107
|
+
default:
|
|
108
|
+
return void m(e.profile);
|
|
109
|
+
}
|
|
110
|
+
case "miter":
|
|
111
|
+
case "bevel":
|
|
112
|
+
switch (e.profile) {
|
|
113
|
+
case "circle":
|
|
114
|
+
return s.PATH_MITER_CIRCLE;
|
|
115
|
+
case "quad":
|
|
116
|
+
return s.PATH_MITER_QUAD;
|
|
117
|
+
default:
|
|
118
|
+
return void m(e.profile);
|
|
119
|
+
}
|
|
120
|
+
default:
|
|
121
|
+
return;
|
|
122
|
+
}
|
|
123
|
+
case "object":
|
|
124
|
+
return r ? s.OBJECT_POINT : s.OBJECT_POLYGON;
|
|
125
|
+
case "icon":
|
|
126
|
+
case "text":
|
|
127
|
+
return r ? s.ICON_POINT : s.ICON_POLYGON;
|
|
128
|
+
default:
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
function B(t) {
|
|
133
|
+
const e = b[t];
|
|
134
|
+
if (e)
|
|
135
|
+
return e;
|
|
136
|
+
const r = h(v(t, new O({})).levels);
|
|
137
|
+
return b[t] = new i({ verticesPerFeature: r }), b[t];
|
|
138
|
+
}
|
|
139
|
+
function h(t) {
|
|
140
|
+
return t.reduce((e, r, o) => e + r.numVertices * (1 / 10 ** o), 0) / t.reduce((e, r, o) => e + 1 / 10 ** o, 0);
|
|
141
|
+
}
|
|
142
|
+
const s = { ICON_POINT: { bytesPerFeature: 2379.8272296852992, bytesPerFeatureLabel: 852.246235, resourceBytes: 0, draped: { bytesPerFeature: 1868.2382921559424, bytesPerFeatureLabel: 839.205415 } }, ICON_POLYGON: { bytesPerFeature: 2957.8429876524656, bytesPerFeatureLabel: 862.5307816666666, resourceBytes: 0, draped: { bytesPerFeature: 2579.7767085451133, bytesPerFeatureLabel: 856.9298550000001 } }, OBJECT_POINT: { bytesPerFeature: 603.543820573039, bytesPerFeatureLabel: 717.4551849999999, resourceBytes: 0, draped: { bytesPerFeature: 603.543820573039, bytesPerFeatureLabel: 717.4551849999999 } }, OBJECT_POLYGON: { bytesPerFeature: 1111.1693389308373, bytesPerFeatureLabel: 707.4535949999998, resourceBytes: 0, draped: { bytesPerFeature: 1111.1693389308373, bytesPerFeatureLabel: 707.4535949999998 } }, LINE_MITER: { bytesPerFeature: 3081.208408220661, bytesPerFeatureLabel: 858.6749016666668, resourceBytes: 0, draped: { bytesPerFeature: 2682.57863388475, bytesPerFeatureLabel: 844.6118016666666 } }, LINE_ROUND: { bytesPerFeature: 3209.3236242927915, bytesPerFeatureLabel: 858.1810416666667, resourceBytes: 0, draped: { bytesPerFeature: 2687.6256038096126, bytesPerFeatureLabel: 849.578535 } }, PATH_MITER_CIRCLE: { bytesPerFeature: 38708.74276663992, bytesPerFeatureLabel: 858.70415, resourceBytes: 0, draped: { bytesPerFeature: 38708.74276663992, bytesPerFeatureLabel: 858.70415 } }, PATH_ROUND_CIRCLE: { bytesPerFeature: 42098.00590216518, bytesPerFeatureLabel: 868.3632500000001, resourceBytes: 0, draped: { bytesPerFeature: 42098.00590216518, bytesPerFeatureLabel: 868.3632500000001 } }, PATH_MITER_QUAD: { bytesPerFeature: 25037.823002405767, bytesPerFeatureLabel: 835.93355, resourceBytes: 0, draped: { bytesPerFeature: 25037.823002405767, bytesPerFeatureLabel: 835.93355 } }, PATH_ROUND_QUAD: { bytesPerFeature: 40320.254760224525, bytesPerFeatureLabel: 851.66955, resourceBytes: 0, draped: { bytesPerFeature: 40320.254760224525, bytesPerFeatureLabel: 851.66955 } }, FILL: { bytesPerFeature: 3147.43349219103, bytesPerFeatureLabel: 850.7598550000001, resourceBytes: 0, draped: { bytesPerFeature: 2673.7898488975106, bytesPerFeatureLabel: 846.6459950000002 } }, FILL_OUTLINE: { bytesPerFeature: 4565.099993465867, bytesPerFeatureLabel: 855.334515, resourceBytes: 0, draped: { bytesPerFeature: 3904.46969705314, bytesPerFeatureLabel: 844.7081016666667 } }, EXTRUDE: { bytesPerFeature: 7551.2282834569505, bytesPerFeatureLabel: 849.5513283333333, resourceBytes: 0, draped: { bytesPerFeature: 7551.2282834569505, bytesPerFeatureLabel: 849.5513283333333 } }, EXTRUDE_EDGES: { bytesPerFeature: 2959.8379634500698, bytesPerFeatureLabel: 602.0969283333335, resourceBytes: 0, draped: { bytesPerFeature: 2959.8379634500698, bytesPerFeatureLabel: 602.0969283333335 } } };
|
|
143
|
+
export {
|
|
144
|
+
$ as averageSymbolComplexities,
|
|
145
|
+
k as defaultSymbolComplexity,
|
|
146
|
+
x as defaultSymbolLayerComplexity,
|
|
147
|
+
R as defaultSymbolLayerMemoryComplexity,
|
|
148
|
+
T as emptySymbolComplexity,
|
|
149
|
+
h as estimateNumVerticesForLods,
|
|
150
|
+
s as memoryEstimators,
|
|
151
|
+
F as totalSymbolComplexities
|
|
152
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import "../../../../geometry.js";
|
|
2
|
+
import { throwIfAborted as C } from "../../../../core/promiseUtils.js";
|
|
3
|
+
import { create as F } from "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
4
|
+
import { projectPointToVectorAsync as j } from "../../../../geometry/projection/projectPointToVector.js";
|
|
5
|
+
import { makeDehydratedPoint as A } from "../../../../layers/graphics/dehydratedPoint.js";
|
|
6
|
+
import { getGeometryEffectiveElevationInfo as O } from "../../../../support/elevationInfoUtils.js";
|
|
7
|
+
import { evaluateElevationInfoAtPoint as D, SampleElevationInfo as G } from "./elevationAlignmentUtils.js";
|
|
8
|
+
import { ElevationContext as k } from "./ElevationContext.js";
|
|
9
|
+
import { extractExpressionInfo as H, createContext as J } from "./featureExpressionInfoUtils.js";
|
|
10
|
+
import x from "../../../../geometry/SpatialReference.js";
|
|
11
|
+
async function Q(t, f, u, E, r) {
|
|
12
|
+
const { elevationProvider: w, renderCoordsHelper: y } = t, { elevationInfo: p } = f, { pointsInFeatures: g, spatialReference: h } = E, c = x.fromJSON(h), P = H(p, !0), R = await J(P, c, r);
|
|
13
|
+
C(r);
|
|
14
|
+
const n = [], m = /* @__PURE__ */ new Set(), l = /* @__PURE__ */ new Set(), a = new k(), e = A(0, 0, 0, x.WGS84), d = new G(), v = F();
|
|
15
|
+
e.spatialReference = c;
|
|
16
|
+
const S = t.elevationProvider.spatialReference ?? t.spatialReference;
|
|
17
|
+
for (const { objectId: i, points: I } of g) {
|
|
18
|
+
const o = u(i);
|
|
19
|
+
if (o == null) {
|
|
20
|
+
for (const s of I)
|
|
21
|
+
n.push(s.z ?? 0);
|
|
22
|
+
m.add(i);
|
|
23
|
+
continue;
|
|
24
|
+
}
|
|
25
|
+
o.isDraped && l.add(i);
|
|
26
|
+
const $ = o.graphic.geometry;
|
|
27
|
+
a.setFromElevationInfo(O($, p)), a.updateFeatureExpressionInfoContext(R, o.graphic, f);
|
|
28
|
+
for (const { x: s, y: b, z } of I)
|
|
29
|
+
e.x = s, e.y = b, e.z = z ?? 0, await j(e, v, S, 0, { signal: r }), D(v, w, a, y, d), n.push(d.z);
|
|
30
|
+
}
|
|
31
|
+
return { elevations: n, drapedObjectIds: l, failedObjectIds: m };
|
|
32
|
+
}
|
|
33
|
+
export {
|
|
34
|
+
Q as elevationAlignPointsInFeatures
|
|
35
|
+
};
|
|
@@ -1,51 +1,125 @@
|
|
|
1
|
-
import "../../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
2
|
-
import "../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
3
|
-
import "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
4
|
-
import "../../../../
|
|
5
|
-
import "../../../../geometry/projection/
|
|
6
|
-
import "../../../../
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
import { copy as x } from "../../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
2
|
+
import { create as C } from "../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
3
|
+
import { create as O } from "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
4
|
+
import { computeTranslationToOriginAndRotation as U } from "../../../../geometry/projection/computeTranslationToOriginAndRotation.js";
|
|
5
|
+
import { projectBuffer as y } from "../../../../geometry/projection/projectBuffer.js";
|
|
6
|
+
import { isDehydratedPoint as b } from "../../../../layers/graphics/dehydratedFeatureUtils.js";
|
|
7
|
+
import { isSamplePosition as N, getElevationAtPoint as A } from "../../support/ElevationProvider.js";
|
|
8
|
+
import { VertexAttribute as R } from "../../webgl-engine/lib/VertexAttribute.js";
|
|
9
|
+
function J(e, t, o, n, a, l, r, i, s, c, f) {
|
|
10
|
+
const m = F[f.mode];
|
|
11
|
+
let u, d, p = 0;
|
|
12
|
+
if (y(e, t, o, n, s.spatialReference, a, i))
|
|
13
|
+
return m.requiresAlignment(f) ? (p = m.applyElevationAlignmentBuffer(n, a, l, r, i, s, c, f), u = l, d = r) : (u = n, d = a), y(u, s.spatialReference, d, l, c.spatialReference, r, i) ? p : void 0;
|
|
14
|
+
}
|
|
15
|
+
function D(e, t, o, n, a) {
|
|
16
|
+
const l = (b(e) ? e.z : N(e) ? e.array[e.offset + 2] : e[2]) || 0;
|
|
17
|
+
switch (o.mode) {
|
|
13
18
|
case "on-the-ground": {
|
|
14
|
-
const
|
|
15
|
-
return
|
|
19
|
+
const r = A(t, e, "ground") ?? 0;
|
|
20
|
+
return a.verticalDistanceToGround = 0, a.sampledElevation = r, void (a.z = r);
|
|
16
21
|
}
|
|
17
22
|
case "relative-to-ground": {
|
|
18
|
-
const
|
|
19
|
-
return
|
|
23
|
+
const r = A(t, e, "ground") ?? 0, i = o.geometryZWithOffset(l, n);
|
|
24
|
+
return a.verticalDistanceToGround = i, a.sampledElevation = r, void (a.z = i + r);
|
|
20
25
|
}
|
|
21
26
|
case "relative-to-scene": {
|
|
22
|
-
const
|
|
23
|
-
return
|
|
27
|
+
const r = A(t, e, "scene") ?? 0, i = o.geometryZWithOffset(l, n);
|
|
28
|
+
return a.verticalDistanceToGround = i, a.sampledElevation = r, void (a.z = i + r);
|
|
24
29
|
}
|
|
25
30
|
case "absolute-height": {
|
|
26
|
-
const
|
|
27
|
-
return
|
|
31
|
+
const r = o.geometryZWithOffset(l, n), i = A(t, e, "ground") ?? 0;
|
|
32
|
+
return a.verticalDistanceToGround = r - i, a.sampledElevation = i, void (a.z = r);
|
|
28
33
|
}
|
|
29
34
|
default:
|
|
30
|
-
return void (
|
|
35
|
+
return void (a.z = 0);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
function K(e, t, o, n) {
|
|
39
|
+
return D(e, t, o, n, E), E.z;
|
|
40
|
+
}
|
|
41
|
+
function L(e, t, o) {
|
|
42
|
+
return t == null || o == null ? e.definedChanged : t === "on-the-ground" && o === "on-the-ground" ? e.staysOnTheGround : t === o || t !== "on-the-ground" && o !== "on-the-ground" ? T.UPDATE : e.onTheGroundChanged;
|
|
43
|
+
}
|
|
44
|
+
function Q(e) {
|
|
45
|
+
return e === "relative-to-ground" || e === "relative-to-scene";
|
|
46
|
+
}
|
|
47
|
+
function X(e) {
|
|
48
|
+
return e !== "absolute-height";
|
|
49
|
+
}
|
|
50
|
+
function Y(e, t, o, n, a) {
|
|
51
|
+
D(t, o, a, n, E), P(e, E.verticalDistanceToGround);
|
|
52
|
+
const l = E.sampledElevation, r = x(V, e.transformation);
|
|
53
|
+
return h[0] = t.x, h[1] = t.y, h[2] = E.z, U(t.spatialReference, h, r, n.spatialReference) ? e.transformation = r : console.warn("Could not locate symbol object properly, it might be misplaced"), l;
|
|
54
|
+
}
|
|
55
|
+
function P(e, t) {
|
|
56
|
+
for (let o = 0; o < e.geometries.length; ++o) {
|
|
57
|
+
const n = e.geometries[o].getMutableAttribute(R.CENTEROFFSETANDDISTANCE);
|
|
58
|
+
n && n.data[3] !== t && (n.data[3] = t, e.geometryVertexAttributeUpdated(e.geometries[o], R.CENTEROFFSETANDDISTANCE));
|
|
31
59
|
}
|
|
32
60
|
}
|
|
33
|
-
function
|
|
34
|
-
|
|
61
|
+
function z(e, t, o, n, a, l) {
|
|
62
|
+
let r = 0;
|
|
63
|
+
const i = l.spatialReference;
|
|
64
|
+
t *= 3, n *= 3;
|
|
65
|
+
for (let s = 0; s < a; ++s) {
|
|
66
|
+
const c = e[t], f = e[t + 1], m = e[t + 2], u = l.getElevation(c, f, m, i, "ground") ?? 0;
|
|
67
|
+
r += u, o[n] = c, o[n + 1] = f, o[n + 2] = u, t += 3, n += 3;
|
|
68
|
+
}
|
|
69
|
+
return r / a;
|
|
70
|
+
}
|
|
71
|
+
function G(e, t, o, n, a, l, r, i) {
|
|
72
|
+
let s = 0;
|
|
73
|
+
const c = i.calculateOffsetRenderUnits(r), f = i.featureExpressionInfoContext, m = l.spatialReference;
|
|
74
|
+
t *= 3, n *= 3;
|
|
75
|
+
for (let u = 0; u < a; ++u) {
|
|
76
|
+
const d = e[t], p = e[t + 1], v = e[t + 2], g = l.getElevation(d, p, v, m, "ground") ?? 0;
|
|
77
|
+
s += g, o[n] = d, o[n + 1] = p, o[n + 2] = f == null ? v + g + c : g + c, t += 3, n += 3;
|
|
78
|
+
}
|
|
79
|
+
return s / a;
|
|
80
|
+
}
|
|
81
|
+
function I(e, t, o, n, a, l, r, i) {
|
|
82
|
+
let s = 0;
|
|
83
|
+
const c = i.calculateOffsetRenderUnits(r), f = i.featureExpressionInfoContext, m = l.spatialReference;
|
|
84
|
+
t *= 3, n *= 3;
|
|
85
|
+
for (let u = 0; u < a; ++u) {
|
|
86
|
+
const d = e[t], p = e[t + 1], v = e[t + 2], g = l.getElevation(d, p, v, m, "scene") ?? 0;
|
|
87
|
+
s += g, o[n] = d, o[n + 1] = p, o[n + 2] = f == null ? v + g + c : g + c, t += 3, n += 3;
|
|
88
|
+
}
|
|
89
|
+
return s / a;
|
|
90
|
+
}
|
|
91
|
+
function S(e) {
|
|
92
|
+
const t = e.meterUnitOffset, o = e.featureExpressionInfoContext;
|
|
93
|
+
return t !== 0 || o != null;
|
|
94
|
+
}
|
|
95
|
+
function B(e, t, o, n, a, l, r, i) {
|
|
96
|
+
const s = i.calculateOffsetRenderUnits(r), c = i.featureExpressionInfoContext;
|
|
97
|
+
t *= 3, n *= 3;
|
|
98
|
+
for (let f = 0; f < a; ++f) {
|
|
99
|
+
const m = e[t], u = e[t + 1], d = e[t + 2];
|
|
100
|
+
o[n] = m, o[n + 1] = u, o[n + 2] = c == null ? d + s : s, t += 3, n += 3;
|
|
101
|
+
}
|
|
102
|
+
return 0;
|
|
35
103
|
}
|
|
36
|
-
class
|
|
104
|
+
class q {
|
|
37
105
|
constructor() {
|
|
38
106
|
this.verticalDistanceToGround = 0, this.sampledElevation = 0, this.z = 0;
|
|
39
107
|
}
|
|
40
108
|
}
|
|
41
|
-
var
|
|
42
|
-
(function(
|
|
43
|
-
|
|
44
|
-
})(
|
|
45
|
-
const
|
|
109
|
+
var T;
|
|
110
|
+
(function(e) {
|
|
111
|
+
e[e.NONE = 0] = "NONE", e[e.UPDATE = 1] = "UPDATE", e[e.RECREATE = 2] = "RECREATE";
|
|
112
|
+
})(T || (T = {}));
|
|
113
|
+
const F = { "absolute-height": { applyElevationAlignmentBuffer: B, requiresAlignment: S }, "on-the-ground": { applyElevationAlignmentBuffer: z, requiresAlignment: () => !0 }, "relative-to-ground": { applyElevationAlignmentBuffer: G, requiresAlignment: () => !0 }, "relative-to-scene": { applyElevationAlignmentBuffer: I, requiresAlignment: () => !0 } }, V = C(), E = new q(), h = O();
|
|
46
114
|
export {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
115
|
+
q as SampleElevationInfo,
|
|
116
|
+
T as SymbolUpdateType,
|
|
117
|
+
Y as applyElevationAlignmentForHUD,
|
|
118
|
+
J as applyPerVertexElevationAlignment,
|
|
119
|
+
L as elevationModeChangeUpdateType,
|
|
120
|
+
K as evaluateElevationAlignmentAtPoint,
|
|
121
|
+
D as evaluateElevationInfoAtPoint,
|
|
122
|
+
Q as needsElevationUpdates2D,
|
|
123
|
+
X as needsElevationUpdates3D,
|
|
124
|
+
P as updateVertexPointGroundDistance
|
|
51
125
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var E, i;
|
|
2
|
+
(function(A) {
|
|
3
|
+
A[A.USER = 1] = "USER", A[A.SCALE_RANGE = 2] = "SCALE_RANGE", A[A.FILTER = 4] = "FILTER", A[A.DECONFLICTION = 8] = "DECONFLICTION", A[A.ALL_GRAPHIC = 15] = "ALL_GRAPHIC", A[A.ALL_LABEL = 255] = "ALL_LABEL";
|
|
4
|
+
})(E || (E = {})), function(A) {
|
|
5
|
+
A[A.GRAPHIC = 1] = "GRAPHIC", A[A.LABEL = 16] = "LABEL";
|
|
6
|
+
}(i || (i = {}));
|
|
7
|
+
export {
|
|
8
|
+
E as VisibilityFlag,
|
|
9
|
+
i as VisibilityGroup
|
|
10
|
+
};
|
|
@@ -1,39 +1,62 @@
|
|
|
1
|
-
import
|
|
2
|
-
import "../../../../core/
|
|
3
|
-
import { hydrateGeometry as
|
|
4
|
-
import "../../../../
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
function f(e) {
|
|
1
|
+
import i from "../../../../core/Logger.js";
|
|
2
|
+
import { throwIfAborted as d } from "../../../../core/promiseUtils.js";
|
|
3
|
+
import { hydrateGeometry as f } from "../../../../layers/graphics/hydratedFeatures.js";
|
|
4
|
+
import { loadArcade as x } from "../../../../support/arcadeOnDemand.js";
|
|
5
|
+
const p = () => i.getLogger("esri.views.3d.layers.graphics.featureExpressionInfoUtils");
|
|
6
|
+
function E(e) {
|
|
8
7
|
return { cachedResult: e.cachedResult, arcade: e.arcade ? { func: e.arcade.func, context: e.arcade.modules.arcadeUtils.createExecContext(null, { sr: e.arcade.context.spatialReference }), modules: e.arcade.modules } : null };
|
|
9
8
|
}
|
|
10
|
-
function
|
|
11
|
-
|
|
9
|
+
async function C(e, r, t, n) {
|
|
10
|
+
const a = e == null ? void 0 : e.expression;
|
|
11
|
+
if (typeof a != "string")
|
|
12
|
+
return null;
|
|
13
|
+
const o = m(a);
|
|
14
|
+
if (o != null)
|
|
15
|
+
return { cachedResult: o };
|
|
16
|
+
const s = await x();
|
|
17
|
+
d(t);
|
|
18
|
+
const c = s.arcadeUtils, u = c.createSyntaxTree(a);
|
|
19
|
+
return c.dependsOnView(u) ? (n != null && n.error("Expressions containing '$view' are not supported on ElevationInfo"), { cachedResult: 0 }) : { arcade: { func: c.createFunction(u), context: c.createExecContext(null, { sr: r }), modules: s } };
|
|
12
20
|
}
|
|
13
|
-
function
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
21
|
+
function U(e, r, t) {
|
|
22
|
+
return e.arcadeUtils.createFeature(r.attributes, r.geometry, t);
|
|
23
|
+
}
|
|
24
|
+
function v(e, r) {
|
|
25
|
+
if (e != null && !l(e)) {
|
|
26
|
+
if (!r || !e.arcade)
|
|
27
|
+
return void p().errorOncePerTick("Arcade support required but not provided");
|
|
28
|
+
const t = r;
|
|
29
|
+
t._geometry && (t._geometry = f(t._geometry)), e.arcade.modules.arcadeUtils.updateExecContext(e.arcade.context, r);
|
|
19
30
|
}
|
|
20
31
|
}
|
|
21
|
-
function
|
|
32
|
+
function w(e) {
|
|
22
33
|
if (e != null) {
|
|
23
|
-
if (
|
|
34
|
+
if (l(e))
|
|
24
35
|
return e.cachedResult;
|
|
25
|
-
const
|
|
26
|
-
let
|
|
27
|
-
return typeof
|
|
36
|
+
const r = e.arcade;
|
|
37
|
+
let t = r == null ? void 0 : r.modules.arcadeUtils.executeFunction(r.func, r.context);
|
|
38
|
+
return typeof t != "number" && (e.cachedResult = 0, t = 0), t;
|
|
28
39
|
}
|
|
29
40
|
return 0;
|
|
30
41
|
}
|
|
31
|
-
function
|
|
42
|
+
function F(e, r = !1) {
|
|
43
|
+
let t = e == null ? void 0 : e.featureExpressionInfo;
|
|
44
|
+
const n = t == null ? void 0 : t.expression;
|
|
45
|
+
return r || n === "0" || (t = null), t ?? null;
|
|
46
|
+
}
|
|
47
|
+
const I = { cachedResult: 0 };
|
|
48
|
+
function l(e) {
|
|
32
49
|
return e.cachedResult != null;
|
|
33
50
|
}
|
|
51
|
+
function m(e) {
|
|
52
|
+
return e === "0" ? 0 : null;
|
|
53
|
+
}
|
|
34
54
|
export {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
55
|
+
E as clone,
|
|
56
|
+
C as createContext,
|
|
57
|
+
U as createFeature,
|
|
58
|
+
w as execute,
|
|
59
|
+
F as extractExpressionInfo,
|
|
60
|
+
v as setContextFeature,
|
|
61
|
+
I as zeroContext
|
|
39
62
|
};
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { getMetersPerUnitForSR as g } from "../../../../core/unitUtils.js";
|
|
2
|
+
import { rotateZ as x, rotateX as d, rotateY as P } from "../../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
3
|
+
import { create as z } from "../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
4
|
+
import { fromArray as R, ONES as w } from "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
5
|
+
import { s as S } from "../../../../chunks/vec42.js";
|
|
6
|
+
import { clone as b, ONES as M } from "../../../../core/libs/gl-matrix-2/factories/vec4f64.js";
|
|
7
|
+
import { projectPoint as v } from "../../../../geometry/projection.js";
|
|
8
|
+
import { width as F, depth as O, height as A } from "../../../../geometry/support/aaBoundingBox.js";
|
|
9
|
+
import { create as D } from "../../../../geometry/support/aaBoundingRect.js";
|
|
10
|
+
import { ringsCentroid as I } from "../../../../geometry/support/centroid.js";
|
|
11
|
+
import { getPointOnPath as j, getPathLength as B } from "../../../../geometry/support/coordsUtils.js";
|
|
12
|
+
import { makeDehydratedPoint as f } from "../../../../layers/graphics/dehydratedPoint.js";
|
|
13
|
+
import { isHydratedGeometry as C, clonePoint as E } from "../../../../layers/graphics/hydratedFeatures.js";
|
|
14
|
+
function T(e, n) {
|
|
15
|
+
if (e.type === "point")
|
|
16
|
+
return s(e, n, !1);
|
|
17
|
+
if (C(e))
|
|
18
|
+
switch (e.type) {
|
|
19
|
+
case "extent":
|
|
20
|
+
return s(e.center, n, !1);
|
|
21
|
+
case "polygon":
|
|
22
|
+
return s(e.centroid, n, !1);
|
|
23
|
+
case "polyline":
|
|
24
|
+
return s(p(e), n, !0);
|
|
25
|
+
case "mesh":
|
|
26
|
+
return s(e.origin, n, !1);
|
|
27
|
+
}
|
|
28
|
+
else
|
|
29
|
+
switch (e.type) {
|
|
30
|
+
case "extent":
|
|
31
|
+
return s(L(e), n, !0);
|
|
32
|
+
case "polygon":
|
|
33
|
+
return s(N(e), n, !0);
|
|
34
|
+
case "polyline":
|
|
35
|
+
return s(p(e), n, !0);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
function p(e) {
|
|
39
|
+
const n = e.paths[0];
|
|
40
|
+
if (!n || n.length === 0)
|
|
41
|
+
return null;
|
|
42
|
+
const t = j(n, B(n) / 2);
|
|
43
|
+
return f(t[0], t[1], t[2], e.spatialReference);
|
|
44
|
+
}
|
|
45
|
+
function L(e) {
|
|
46
|
+
return f(0.5 * (e.xmax + e.xmin), 0.5 * (e.ymax + e.ymin), e.zmin != null && e.zmax != null && isFinite(e.zmin) && isFinite(e.zmax) ? 0.5 * (e.zmax + e.zmin) : void 0, e.spatialReference);
|
|
47
|
+
}
|
|
48
|
+
function N(e) {
|
|
49
|
+
const n = e.rings[0];
|
|
50
|
+
if (!n || n.length === 0)
|
|
51
|
+
return null;
|
|
52
|
+
const t = I(e.rings, !!e.hasZ);
|
|
53
|
+
return f(t[0], t[1], t[2], e.spatialReference);
|
|
54
|
+
}
|
|
55
|
+
function s(e, n, t) {
|
|
56
|
+
const r = t ? e : E(e);
|
|
57
|
+
return n && e ? v(e, r, n) ? r : null : r;
|
|
58
|
+
}
|
|
59
|
+
function ee(e, n, t, r = 0) {
|
|
60
|
+
if (e) {
|
|
61
|
+
n || (n = D());
|
|
62
|
+
const i = e;
|
|
63
|
+
let o = 0.5 * i.width * (t - 1), l = 0.5 * i.height * (t - 1);
|
|
64
|
+
return i.width < 1e-7 * i.height ? o += l / 20 : i.height < 1e-7 * i.width && (l += o / 20), S(n, i.xmin - o - r, i.ymin - l - r, i.xmax + o + r, i.ymax + l + r), n;
|
|
65
|
+
}
|
|
66
|
+
return null;
|
|
67
|
+
}
|
|
68
|
+
function ne(e, n, t = null) {
|
|
69
|
+
const r = b(M);
|
|
70
|
+
return e != null && (r[0] = e[0], r[1] = e[1], r[2] = e[2]), n != null ? r[3] = n : e != null && e.length > 3 && (r[3] = e[3]), t && (r[0] *= t, r[1] *= t, r[2] *= t, r[3] *= t), r;
|
|
71
|
+
}
|
|
72
|
+
function re(e = w, n, t, r = 1) {
|
|
73
|
+
const i = new Array(3);
|
|
74
|
+
if (n == null || t == null)
|
|
75
|
+
i[0] = 1, i[1] = 1, i[2] = 1;
|
|
76
|
+
else {
|
|
77
|
+
let o, l = 0;
|
|
78
|
+
for (let a = 2; a >= 0; a--) {
|
|
79
|
+
const m = e[a];
|
|
80
|
+
let u;
|
|
81
|
+
const h = m != null, y = a === 0 && !o && !h, c = t[a];
|
|
82
|
+
m === "symbol-value" || y ? u = c !== 0 ? n[a] / c : 1 : h && m !== "proportional" && isFinite(m) && (u = c !== 0 ? m / c : 1), u != null && (i[a] = u, o = u, l = Math.max(l, Math.abs(u)));
|
|
83
|
+
}
|
|
84
|
+
for (let a = 2; a >= 0; a--)
|
|
85
|
+
i[a] == null ? i[a] = o : i[a] === 0 && (i[a] = 1e-3 * l);
|
|
86
|
+
}
|
|
87
|
+
for (let o = 2; o >= 0; o--)
|
|
88
|
+
i[o] /= r;
|
|
89
|
+
return R(i);
|
|
90
|
+
}
|
|
91
|
+
function k(e) {
|
|
92
|
+
return e.isPrimitive != null;
|
|
93
|
+
}
|
|
94
|
+
function te(e) {
|
|
95
|
+
return G(k(e) ? [e.width, e.depth, e.height] : e) ? null : "Symbol sizes may not be negative values";
|
|
96
|
+
}
|
|
97
|
+
function G(e) {
|
|
98
|
+
const n = (t) => t == null || t >= 0;
|
|
99
|
+
return Array.isArray(e) ? e.every(n) : n(e);
|
|
100
|
+
}
|
|
101
|
+
function ie(e, n, t, r = z()) {
|
|
102
|
+
return e && x(r, r, -e / 180 * Math.PI), n && d(r, r, n / 180 * Math.PI), t && P(r, r, t / 180 * Math.PI), r;
|
|
103
|
+
}
|
|
104
|
+
function oe(e, n, t) {
|
|
105
|
+
if (t.minDemResolution != null)
|
|
106
|
+
return t.minDemResolution;
|
|
107
|
+
const r = g(n), i = F(e) * r, o = O(e) * r, l = A(e) * (n.isGeographic ? 1 : r);
|
|
108
|
+
return i === 0 && o === 0 && l === 0 ? t.minDemResolutionForPoints : 0.01 * Math.max(i, o, l);
|
|
109
|
+
}
|
|
110
|
+
export {
|
|
111
|
+
T as computeCentroid,
|
|
112
|
+
ie as computeObjectRotation,
|
|
113
|
+
re as computeObjectScale,
|
|
114
|
+
oe as demResolutionForBoundingBox,
|
|
115
|
+
ee as enlargeExtent,
|
|
116
|
+
G as isValidSize,
|
|
117
|
+
ne as mixinColorAndOpacity,
|
|
118
|
+
te as validateSymbolLayerSize
|
|
119
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import "../../../../core/has.js";
|
|
2
|
+
import { CapType as e } from "../../webgl-engine/shaders/RibbonLineTechniqueConfiguration.js";
|
|
3
|
+
function n(r) {
|
|
4
|
+
switch (r) {
|
|
5
|
+
case "butt":
|
|
6
|
+
return e.BUTT;
|
|
7
|
+
case "square":
|
|
8
|
+
return e.SQUARE;
|
|
9
|
+
case "round":
|
|
10
|
+
return e.ROUND;
|
|
11
|
+
default:
|
|
12
|
+
return null;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
function u(r) {
|
|
16
|
+
return r === "diamond" ? "kite" : r;
|
|
17
|
+
}
|
|
18
|
+
export {
|
|
19
|
+
n as parseCapType,
|
|
20
|
+
u as parseLineMarkerStyle
|
|
21
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { LodResources as n, LodComponentResources as u, LodLevelResources as c } from "../../webgl-engine/lib/lodRendering/LodResources.js";
|
|
2
|
+
function d(e, s) {
|
|
3
|
+
const o = e.stageResources.geometries.map((t) => new u(t, e.stageResources.textures)), r = e.lodThreshold == null || e.lodThreshold === 0 && s > 0 ? a(o) : e.lodThreshold;
|
|
4
|
+
return new c(o, r, e.pivotOffset);
|
|
5
|
+
}
|
|
6
|
+
function m(e) {
|
|
7
|
+
return new n(e.map((s, o) => d(s, o)));
|
|
8
|
+
}
|
|
9
|
+
function a(e) {
|
|
10
|
+
const s = e.reduce((o, { geometry: r }) => o + r.indexCount / 3, 0);
|
|
11
|
+
return Math.sqrt(s * l / Math.PI);
|
|
12
|
+
}
|
|
13
|
+
const l = 20;
|
|
14
|
+
export {
|
|
15
|
+
m as makeLodResources
|
|
16
|
+
};
|