@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
|
@@ -7,19 +7,19 @@ import { MemCacheStorage as D, MemCache as U } from "../../../core/MemCache.js";
|
|
|
7
7
|
import { signalFromSignalOrOptions as x, throwIfAborted as X } from "../../../core/promiseUtils.js";
|
|
8
8
|
import { getMetersPerUnitForSR as T } from "../../../core/unitUtils.js";
|
|
9
9
|
import { getTransformation as Y } from "../../../geometry/projection.js";
|
|
10
|
-
import { set as K,
|
|
10
|
+
import { set as K, negativeInfinity as ee, create as te, expandWithAABB as se } from "../../../geometry/support/aaBoundingBox.js";
|
|
11
11
|
import { fromValues as M, create as ie } from "../../../geometry/support/aaBoundingRect.js";
|
|
12
12
|
import { getBoundsXY as re } from "../../../geometry/support/boundsUtils.js";
|
|
13
13
|
import { fromJSON as j, isExtent as ae, isPolygon as ne } from "../../../geometry/support/jsonUtils.js";
|
|
14
14
|
import { normalizeCentralMeridian as O } from "../../../geometry/support/normalizeUtils.js";
|
|
15
|
-
import { equals as S, isValid as
|
|
15
|
+
import { equals as S, isValid as $ } from "../../../geometry/support/spatialReferenceUtils.js";
|
|
16
16
|
import { convertFromGeometry as le } from "../featureConversionUtils.js";
|
|
17
17
|
import { getWhereClause as ue } from "./attributeSupport.js";
|
|
18
|
-
import { cleanFromGeometryEngine as
|
|
18
|
+
import { cleanFromGeometryEngine as G, getGeometry as oe } from "./geometryUtils.js";
|
|
19
19
|
import { checkProjectionSupport as he, project as I, projectMany as ce } from "./projectionSupport.js";
|
|
20
20
|
import { queryCapabilities as me } from "./QueryEngineCapabilities.js";
|
|
21
21
|
import { QueryEngineResult as m } from "./QueryEngineResult.js";
|
|
22
|
-
import { queryEngineEmptyResult as R, normalizeQueryLike as ye, normalizeQuery as
|
|
22
|
+
import { queryEngineEmptyResult as R, normalizeQueryLike as ye, normalizeQuery as P } from "./queryUtils.js";
|
|
23
23
|
import { validateQuery as z, validateStatisticsQuery as fe } from "./queryValidationUtils.js";
|
|
24
24
|
import { getSpatialQueryOperator as E, canQueryWithRBush as B } from "./spatialQuerySupport.js";
|
|
25
25
|
import { getTimeExtent as de, getTimeOperator as pe } from "./timeSupport.js";
|
|
@@ -148,12 +148,12 @@ class De {
|
|
|
148
148
|
return X(t), { fullExtent: s, timeExtent: i };
|
|
149
149
|
}
|
|
150
150
|
async _getBounds(e, t, s) {
|
|
151
|
-
const i = K(
|
|
152
|
-
await this.featureStore.forEachBounds(e, (n) =>
|
|
153
|
-
const r = { xmin: i[0], ymin: i[1], xmax: i[3], ymax: i[4], spatialReference:
|
|
151
|
+
const i = K(te(), ee);
|
|
152
|
+
await this.featureStore.forEachBounds(e, (n) => se(i, n));
|
|
153
|
+
const r = { xmin: i[0], ymin: i[1], xmax: i[3], ymax: i[4], spatialReference: G(this.spatialReference) };
|
|
154
154
|
this.hasZ && isFinite(i[2]) && isFinite(i[5]) && (r.zmin = i[2], r.zmax = i[5]);
|
|
155
155
|
const a = I(r, t, s);
|
|
156
|
-
if (a.spatialReference =
|
|
156
|
+
if (a.spatialReference = G(s), a.xmax - a.xmin == 0) {
|
|
157
157
|
const n = T(a.spatialReference);
|
|
158
158
|
a.xmin -= n, a.xmax += n;
|
|
159
159
|
}
|
|
@@ -190,7 +190,7 @@ class De {
|
|
|
190
190
|
return e === this._allFeaturesPromise ? t.slice() : this._getAllFeatures();
|
|
191
191
|
}
|
|
192
192
|
async _executeQuery(e, t, s) {
|
|
193
|
-
e = A(e), e = await this._schedule(() =>
|
|
193
|
+
e = A(e), e = await this._schedule(() => P(e, this.definitionExpression, this.spatialReference), s), e = await this._reschedule(() => z(e, { availableFields: this.availableFields, fieldsIndex: this.fieldsIndex, geometryType: this.geometryType, spatialReference: this.spatialReference }), s), e = { ...e, ...t };
|
|
194
194
|
const i = await this._reschedule(() => this._executeSceneFilterQuery(e, s), s), r = await this._reschedule(() => this._executeGeometryQuery(e, i, s), s);
|
|
195
195
|
return await this._reschedule(() => this._executeAggregateIdsQuery(r), s), await this._reschedule(() => this._executeObjectIdsQuery(r), s), await this._reschedule(() => this._executeTimeQuery(r), s), await this._reschedule(() => this._executeAttributesQuery(r), s), r;
|
|
196
196
|
}
|
|
@@ -200,7 +200,7 @@ class De {
|
|
|
200
200
|
const { outSR: s, returnGeometry: i, returnCentroid: r } = e, a = this.featureStore.featureSpatialReference, n = e.sceneFilter.geometry, l = a == null || S(a, n.spatialReference) ? n : I(n, a);
|
|
201
201
|
if (!l)
|
|
202
202
|
return null;
|
|
203
|
-
const h = i || r, y =
|
|
203
|
+
const h = i || r, y = $(s) && !S(this.spatialReference, s) && h ? async (u) => this._project(u, s) : (u) => u, f = this.featureAdapter, g = await this._reschedule(() => this._searchFeatures(this._getQueryBBoxes(l)), t);
|
|
204
204
|
if (e.sceneFilter.spatialRelationship === "disjoint") {
|
|
205
205
|
if (!g.length)
|
|
206
206
|
return null;
|
|
@@ -224,7 +224,7 @@ class De {
|
|
|
224
224
|
if (t != null && t.items.length === 0)
|
|
225
225
|
return t;
|
|
226
226
|
e = t != null ? t.query : e;
|
|
227
|
-
const { geometry: i, outSR: r, spatialRel: a, returnGeometry: n, returnCentroid: l } = e, h = this.featureStore.featureSpatialReference, y = !i || h == null || S(h, i.spatialReference) ? i : I(i, h), f = n || l, g =
|
|
227
|
+
const { geometry: i, outSR: r, spatialRel: a, returnGeometry: n, returnCentroid: l } = e, h = this.featureStore.featureSpatialReference, y = !i || h == null || S(h, i.spatialReference) ? i : I(i, h), f = n || l, g = $(r) && !S(this.spatialReference, r), c = this._geometryQueryCache && t == null ? JSON.stringify(g && f ? { originalFilterGeometry: i, spatialRelationship: a, outSpatialReference: r } : { originalFilterGeometry: i, spatialRelationship: a }) : null, _ = c ? this._geometryQueryCache.get(c) : null;
|
|
228
228
|
if (_ != null)
|
|
229
229
|
return new m(_, e, this);
|
|
230
230
|
const u = async (o) => (g && f && await this._project(o, r), c && this._geometryQueryCache.put(c, o.items, o.items.length + 1), o);
|
|
@@ -355,7 +355,7 @@ class De {
|
|
|
355
355
|
async _executeQueryForStatistics(e, t, s) {
|
|
356
356
|
e = A(e);
|
|
357
357
|
try {
|
|
358
|
-
e = await this._schedule(() =>
|
|
358
|
+
e = await this._schedule(() => P(e, this.definitionExpression, this.spatialReference), s), e = await this._reschedule(() => fe(e, t, { availableFields: this.availableFields, fieldsIndex: this.fieldsIndex, geometryType: this.geometryType, spatialReference: this.spatialReference }), s);
|
|
359
359
|
const i = await this._reschedule(() => this._executeSceneFilterQuery(e, s), s), r = await this._reschedule(() => this._executeGeometryQuery(e, i, s), s);
|
|
360
360
|
return await this._reschedule(() => this._executeAggregateIdsQuery(r), s), await this._reschedule(() => this._executeObjectIdsQuery(r), s), await this._reschedule(() => this._executeTimeQuery(r), s), await this._reschedule(() => this._executeAttributesQuery(r), s), r;
|
|
361
361
|
} catch (i) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../../core/has.js";
|
|
2
2
|
import "../../geometry/SpatialReference.js";
|
|
3
|
-
import "../../geometry/support/aaBoundingBox.js";
|
|
4
|
-
import "../../
|
|
3
|
+
import { empty as l, expandWithNestedArray as n } from "../../geometry/support/aaBoundingBox.js";
|
|
4
|
+
import { empty as m, expandWithNestedArray as r } from "../../geometry/support/aaBoundingRect.js";
|
|
5
5
|
import "../../geometry/Extent.js";
|
|
6
6
|
import "../../geometry/Geometry.js";
|
|
7
7
|
import "../../geometry/Multipoint.js";
|
|
@@ -10,28 +10,79 @@ import "../../geometry/Polygon.js";
|
|
|
10
10
|
import "../../geometry/Polyline.js";
|
|
11
11
|
import "../../geometry/support/typeUtils.js";
|
|
12
12
|
import "../support/Field.js";
|
|
13
|
+
import "../../core/mathUtils.js";
|
|
13
14
|
import "../../geometry/support/spatialReferenceUtils.js";
|
|
14
15
|
class F {
|
|
15
|
-
constructor(i, e
|
|
16
|
-
this.uid =
|
|
16
|
+
constructor(s, i, e) {
|
|
17
|
+
this.uid = s, this.geometry = i, this.attributes = e, this.visible = !0, this.objectId = null, this.centroid = null;
|
|
17
18
|
}
|
|
18
19
|
}
|
|
19
|
-
|
|
20
|
+
function N(t) {
|
|
21
|
+
return t.geometry != null;
|
|
22
|
+
}
|
|
23
|
+
class j {
|
|
20
24
|
constructor() {
|
|
21
25
|
this.exceededTransferLimit = !1, this.features = [], this.fields = [], this.hasM = !1, this.hasZ = !1, this.geometryType = null, this.objectIdFieldName = null, this.globalIdFieldName = null, this.geometryProperties = null, this.geohashFieldName = null, this.spatialReference = null, this.transform = null;
|
|
22
26
|
}
|
|
23
27
|
}
|
|
24
|
-
function
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
+
function Z(t, s) {
|
|
29
|
+
switch (l(s), t.type === "mesh" && (t = t.extent), t.type) {
|
|
30
|
+
case "point":
|
|
31
|
+
s[0] = s[3] = t.x, s[1] = s[4] = t.y, t.hasZ && (s[2] = s[5] = t.z);
|
|
32
|
+
break;
|
|
33
|
+
case "polyline":
|
|
34
|
+
for (let i = 0; i < t.paths.length; i++)
|
|
35
|
+
n(s, t.paths[i], !!t.hasZ);
|
|
36
|
+
break;
|
|
37
|
+
case "polygon":
|
|
38
|
+
for (let i = 0; i < t.rings.length; i++)
|
|
39
|
+
n(s, t.rings[i], !!t.hasZ);
|
|
40
|
+
break;
|
|
41
|
+
case "multipoint":
|
|
42
|
+
n(s, t.points, !!t.hasZ);
|
|
43
|
+
break;
|
|
44
|
+
case "extent":
|
|
45
|
+
s[0] = t.xmin, s[1] = t.ymin, s[3] = t.xmax, s[4] = t.ymax, t.zmin != null && (s[2] = t.zmin), t.zmax != null && (s[5] = t.zmax);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
function B(t, s) {
|
|
49
|
+
switch (m(s), t.type === "mesh" && (t = t.extent), t.type) {
|
|
50
|
+
case "point":
|
|
51
|
+
s[0] = s[2] = t.x, s[1] = s[3] = t.y;
|
|
52
|
+
break;
|
|
53
|
+
case "polyline":
|
|
54
|
+
for (let i = 0; i < t.paths.length; i++)
|
|
55
|
+
r(s, t.paths[i]);
|
|
56
|
+
break;
|
|
57
|
+
case "polygon":
|
|
58
|
+
for (let i = 0; i < t.rings.length; i++)
|
|
59
|
+
r(s, t.rings[i]);
|
|
60
|
+
break;
|
|
61
|
+
case "multipoint":
|
|
62
|
+
r(s, t.points);
|
|
63
|
+
break;
|
|
64
|
+
case "extent":
|
|
65
|
+
s[0] = t.xmin, s[1] = t.ymin, s[2] = t.xmax, s[3] = t.ymax;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
function D(t, s) {
|
|
69
|
+
return t.objectId != null ? t.objectId : t.attributes && s ? t.attributes[s] : null;
|
|
70
|
+
}
|
|
71
|
+
function v(t, s, i, e) {
|
|
72
|
+
if (s != null && s.size && i != null && t)
|
|
73
|
+
for (const a in t) {
|
|
74
|
+
if (!s.has(a))
|
|
28
75
|
continue;
|
|
29
|
-
const o = t[
|
|
30
|
-
typeof o == "string" && o.length >
|
|
76
|
+
const o = t[a];
|
|
77
|
+
typeof o == "string" && o.length > i && (e(a), t[a] = "");
|
|
31
78
|
}
|
|
32
79
|
}
|
|
33
80
|
export {
|
|
34
81
|
F as DehydratedFeatureClass,
|
|
35
|
-
|
|
36
|
-
|
|
82
|
+
j as DehydratedFeatureSetClass,
|
|
83
|
+
Z as computeAABB,
|
|
84
|
+
B as computeAABR,
|
|
85
|
+
D as getObjectId,
|
|
86
|
+
N as hasGeometry,
|
|
87
|
+
v as removeLargeStringAttributes
|
|
37
88
|
};
|
|
@@ -1,82 +1,90 @@
|
|
|
1
1
|
import "../../geometry.js";
|
|
2
|
-
import "../../Graphic.js";
|
|
2
|
+
import Z from "../../Graphic.js";
|
|
3
3
|
import "../../core/has.js";
|
|
4
|
-
import "../../core/
|
|
5
|
-
import { isFloat32Array as
|
|
6
|
-
import { fromJSON as
|
|
7
|
-
import { makeDehydratedPoint as
|
|
8
|
-
import
|
|
9
|
-
function
|
|
4
|
+
import { clone as c } from "../../core/lang.js";
|
|
5
|
+
import { isFloat32Array as z, isFloat64Array as R } from "../../core/typedArrayUtil.js";
|
|
6
|
+
import { fromJSON as g } from "../../geometry/support/jsonUtils.js";
|
|
7
|
+
import { makeDehydratedPoint as b } from "./dehydratedPoint.js";
|
|
8
|
+
import v from "../../geometry/SpatialReference.js";
|
|
9
|
+
function G(t) {
|
|
10
|
+
return "declaredClass" in t;
|
|
11
|
+
}
|
|
12
|
+
function u(t) {
|
|
10
13
|
return "declaredClass" in t;
|
|
11
14
|
}
|
|
12
|
-
function
|
|
15
|
+
function W(t) {
|
|
13
16
|
return "declaredClass" in t;
|
|
14
17
|
}
|
|
15
|
-
function
|
|
16
|
-
return t
|
|
18
|
+
function j(t, r) {
|
|
19
|
+
return t ? W(t) ? t : new Z({ layer: r, sourceLayer: r, visible: t.visible, symbol: c(t.symbol), attributes: c(t.attributes), geometry: A(t.geometry) }) : null;
|
|
17
20
|
}
|
|
18
21
|
function A(t) {
|
|
19
|
-
|
|
22
|
+
return t == null ? null : G(t) ? t : g(C(t));
|
|
23
|
+
}
|
|
24
|
+
function C(t) {
|
|
25
|
+
const { wkid: r, wkt: a, wkt2: o, latestWkid: m } = t.spatialReference, i = { wkid: r, wkt: a, wkt2: o, latestWkid: m };
|
|
20
26
|
switch (t.type) {
|
|
21
27
|
case "point": {
|
|
22
|
-
const { x:
|
|
23
|
-
return { x:
|
|
28
|
+
const { x: n, y: s, z: e, m: l } = t;
|
|
29
|
+
return { x: n, y: s, z: e, m: l, spatialReference: i };
|
|
24
30
|
}
|
|
25
31
|
case "polygon": {
|
|
26
|
-
const { rings:
|
|
27
|
-
return { rings:
|
|
32
|
+
const { rings: n, hasZ: s, hasM: e } = t;
|
|
33
|
+
return { rings: f(n), hasZ: s, hasM: e, spatialReference: i };
|
|
28
34
|
}
|
|
29
35
|
case "polyline": {
|
|
30
|
-
const { paths:
|
|
31
|
-
return { paths:
|
|
36
|
+
const { paths: n, hasZ: s, hasM: e } = t;
|
|
37
|
+
return { paths: f(n), hasZ: s, hasM: e, spatialReference: i };
|
|
32
38
|
}
|
|
33
39
|
case "extent": {
|
|
34
|
-
const { xmin:
|
|
35
|
-
return { xmin:
|
|
40
|
+
const { xmin: n, xmax: s, ymin: e, ymax: l, zmin: y, zmax: d, mmin: x, mmax: k, hasZ: w, hasM: M } = t;
|
|
41
|
+
return { xmin: n, xmax: s, ymin: e, ymax: l, zmin: y, zmax: d, mmin: x, mmax: k, hasZ: w, hasM: M, spatialReference: i };
|
|
36
42
|
}
|
|
37
43
|
case "multipoint": {
|
|
38
|
-
const { points:
|
|
39
|
-
return { points:
|
|
44
|
+
const { points: n, hasZ: s, hasM: e } = t;
|
|
45
|
+
return { points: p(n) ? h(n) : n, hasZ: s, hasM: e, spatialReference: i };
|
|
40
46
|
}
|
|
41
47
|
default:
|
|
42
48
|
return;
|
|
43
49
|
}
|
|
44
50
|
}
|
|
45
|
-
function u(t) {
|
|
46
|
-
return P(t) ? t.map((a) => f(a)) : t;
|
|
47
|
-
}
|
|
48
51
|
function f(t) {
|
|
49
|
-
return t.map((
|
|
52
|
+
return H(t) ? t.map((r) => h(r)) : t;
|
|
50
53
|
}
|
|
51
|
-
function
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
54
|
+
function h(t) {
|
|
55
|
+
return t.map((r) => Array.from(r));
|
|
56
|
+
}
|
|
57
|
+
function H(t) {
|
|
58
|
+
for (const r of t)
|
|
59
|
+
if (r.length !== 0)
|
|
60
|
+
return p(r);
|
|
55
61
|
return !1;
|
|
56
62
|
}
|
|
57
|
-
function
|
|
58
|
-
return t.length > 0 && (
|
|
63
|
+
function p(t) {
|
|
64
|
+
return t.length > 0 && (z(t[0]) || R(t[0]));
|
|
59
65
|
}
|
|
60
|
-
function
|
|
66
|
+
function q(t, r) {
|
|
61
67
|
if (!t)
|
|
62
68
|
return null;
|
|
63
|
-
let
|
|
64
|
-
if (
|
|
65
|
-
if (
|
|
69
|
+
let a;
|
|
70
|
+
if (u(t)) {
|
|
71
|
+
if (r == null)
|
|
66
72
|
return t.clone();
|
|
67
|
-
if (
|
|
68
|
-
return
|
|
73
|
+
if (u(r))
|
|
74
|
+
return r.copy(t);
|
|
69
75
|
}
|
|
70
|
-
return
|
|
76
|
+
return r != null ? (a = r, a.x = t.x, a.y = t.y, a.spatialReference = t.spatialReference, t.hasZ ? (a.z = t.z, a.hasZ = t.hasZ) : (a.z = void 0, a.hasZ = !1), t.hasM ? (a.m = t.m, a.hasM = !0) : (a.m = void 0, a.hasM = !1)) : (a = b(t.x, t.y, t.z, t.spatialReference), t.hasM && (a.m = t.m, a.hasM = !0)), a;
|
|
71
77
|
}
|
|
72
|
-
function
|
|
73
|
-
const { wkid:
|
|
74
|
-
return
|
|
78
|
+
function B(t) {
|
|
79
|
+
const { wkid: r, wkt: a, wkt2: o, latestWkid: m } = t, i = { wkid: r, wkt: a, wkt2: o, latestWkid: m };
|
|
80
|
+
return v.fromJSON(i);
|
|
75
81
|
}
|
|
76
82
|
export {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
83
|
+
q as clonePoint,
|
|
84
|
+
A as hydrateGeometry,
|
|
85
|
+
j as hydrateGraphic,
|
|
86
|
+
B as hydratedSpatialReference,
|
|
87
|
+
G as isHydratedGeometry,
|
|
88
|
+
W as isHydratedGraphic,
|
|
89
|
+
u as isHydratedPoint
|
|
82
90
|
};
|
|
@@ -6,7 +6,7 @@ import { Milliseconds as N } from "../../../../core/time.js";
|
|
|
6
6
|
import { join as y, parseData as v } from "../../../../core/urlUtils.js";
|
|
7
7
|
import { generateBracedUUID as x } from "../../../../core/uuid.js";
|
|
8
8
|
import { externalIsOnService as D, assetFormatId as O, ServiceAsset as w, ServiceAssetPart as h, externalSourceToMultiPart as B } from "../../../../geometry/support/meshUtils/External.js";
|
|
9
|
-
import { UnsupportedError as
|
|
9
|
+
import { UnsupportedError as $, NoSupportedSourceError as k, BadResponseError as C, UploadFailedError as R, UnsupportedFormatUploadedError as P, Convert3DFailedError as j, NoGlbSupportError as M, NotBase64Error as L, UnableToPrepareOptionsError as q } from "./uploadAssetErrors.js";
|
|
10
10
|
import { uploadProgressWeights as g } from "./uploadProgressWeights.js";
|
|
11
11
|
import { uploadItem as H } from "./uploads.js";
|
|
12
12
|
import { getFormatIdMimeType as G, getMimeTypeFormatId as T, getFilenameFormatId as W } from "../../../support/infoFor3D.js";
|
|
@@ -25,7 +25,7 @@ async function V(e, { layer: t, ongoingUploads: s }, o) {
|
|
|
25
25
|
if (r)
|
|
26
26
|
return r;
|
|
27
27
|
if (!ls(t))
|
|
28
|
-
throw new
|
|
28
|
+
throw new $();
|
|
29
29
|
if (K(e, t))
|
|
30
30
|
return (a = o == null ? void 0 : o.onProgress) == null || a.call(o, 1), e;
|
|
31
31
|
const n = Q(e, t, o);
|
|
@@ -51,7 +51,7 @@ async function X(e, t, s) {
|
|
|
51
51
|
async function Y(e, t, s) {
|
|
52
52
|
const o = E(t), { externalSources: r } = e.metadata, n = ss(r, t);
|
|
53
53
|
if (!n)
|
|
54
|
-
throw new
|
|
54
|
+
throw new k();
|
|
55
55
|
const a = d(g.uploadConvertibleSource, s == null ? void 0 : s.onProgress, "uploadConvertibleSource"), i = await F(n, t, { onProgress: a.makeOnProgress("uploadEditSource") });
|
|
56
56
|
e.addExternalSources([{ source: i, original: !0 }]);
|
|
57
57
|
const c = n.reduce((u, { asset: m }) => m instanceof File ? u + m.size : u, 0), p = a.simulate("serviceAssetsToGlb", J(c));
|
|
@@ -143,7 +143,7 @@ async function as(e, t, s) {
|
|
|
143
143
|
try {
|
|
144
144
|
const r = await f(y(t.parsedUrl.path, "uploadAssets"), { timeout: 0, query: { f: "json", assets: JSON.stringify(e) }, method: "post", responseType: "json" });
|
|
145
145
|
if (l(s), r.data.uploadResults.length !== e.length)
|
|
146
|
-
throw new
|
|
146
|
+
throw new C(e.length, r.data.uploadResults.length);
|
|
147
147
|
return r.data;
|
|
148
148
|
} finally {
|
|
149
149
|
o.remove();
|
|
@@ -153,7 +153,7 @@ function ns(e, t, s) {
|
|
|
153
153
|
const { success: o } = t;
|
|
154
154
|
if (!o) {
|
|
155
155
|
const { error: p } = t;
|
|
156
|
-
throw new
|
|
156
|
+
throw new R(e.assetName, p);
|
|
157
157
|
}
|
|
158
158
|
const { assetHash: r } = t, { assetName: n, item: { assetType: a } } = e, { infoFor3D: { supportedFormats: i } } = s, c = G(a, i);
|
|
159
159
|
if (!c)
|
|
@@ -167,7 +167,7 @@ async function is(e, t, s) {
|
|
|
167
167
|
try {
|
|
168
168
|
i = (await (r ? us : cs)(a, { query: n, responseType: "json", timeout: 0 })).data;
|
|
169
169
|
} catch {
|
|
170
|
-
throw new
|
|
170
|
+
throw new j();
|
|
171
171
|
}
|
|
172
172
|
const { supportedFormats: c } = t.infoFor3D;
|
|
173
173
|
return i.assets.map((u) => {
|
|
@@ -16,7 +16,7 @@ import _ from "../../geometry/SpatialReference.js";
|
|
|
16
16
|
import { parse as b } from "../support/arcgisLayerUrl.js";
|
|
17
17
|
import { id as O, popupEnabled as P } from "../support/commonProperties.js";
|
|
18
18
|
import { isHostedLayer as v } from "../../portal/support/portalItemUtils.js";
|
|
19
|
-
const
|
|
19
|
+
const Z = (I) => {
|
|
20
20
|
let o = class extends I {
|
|
21
21
|
constructor() {
|
|
22
22
|
super(...arguments), this.capabilities = void 0, this.copyright = null, this.fullExtent = null, this.legendEnabled = !0, this.spatialReference = null, this.version = void 0, this._allLayersAndTablesMap = null;
|
|
@@ -87,5 +87,5 @@ const $ = (I) => {
|
|
|
87
87
|
return p([n({ readOnly: !0 })], o.prototype, "capabilities", void 0), p([h("service", "capabilities", ["capabilities", "exportTilesAllowed", "maxExportTilesCount", "supportsDynamicLayers", "tileInfo"])], o.prototype, "readCapabilities", null), p([n({ json: { read: { source: "copyrightText" } } })], o.prototype, "copyright", void 0), p([n({ type: F })], o.prototype, "fullExtent", void 0), p([n(O)], o.prototype, "id", void 0), p([n({ type: Boolean, json: { origins: { service: { read: { enabled: !1 } } }, read: { source: "showLegend" }, write: { target: "showLegend" } } })], o.prototype, "legendEnabled", void 0), p([n(P)], o.prototype, "popupEnabled", void 0), p([n({ type: _ })], o.prototype, "spatialReference", void 0), p([n({ readOnly: !0 })], o.prototype, "version", void 0), p([h("version", ["currentVersion", "capabilities", "tables", "supportedImageFormatTypes"])], o.prototype, "readVersion", null), o = p([C("esri.layers.mixins.ArcGISMapService")], o), o;
|
|
88
88
|
};
|
|
89
89
|
export {
|
|
90
|
-
|
|
90
|
+
Z as ArcGISMapService
|
|
91
91
|
};
|
|
@@ -3,8 +3,8 @@ import U from "../../config.js";
|
|
|
3
3
|
import { id as g } from "../../kernel.js";
|
|
4
4
|
import E from "../../request.js";
|
|
5
5
|
import { result as _ } from "../../core/asyncUtils.js";
|
|
6
|
-
import
|
|
7
|
-
import
|
|
6
|
+
import $ from "../../core/Error.js";
|
|
7
|
+
import b from "../../core/Logger.js";
|
|
8
8
|
import { destroyMaybe as H } from "../../core/maybe.js";
|
|
9
9
|
import { throwIfAborted as F, isAbortError as S, throwIfAbortError as n } from "../../core/promiseUtils.js";
|
|
10
10
|
import { hasSameCanonicalPortal as L, normalize as I, hasSamePortal as M } from "../../core/urlUtils.js";
|
|
@@ -44,7 +44,7 @@ const st = (w) => {
|
|
|
44
44
|
const { load: i } = await import("../../portal/support/layersLoader.js");
|
|
45
45
|
return F(t), await i({ instance: this, supportedTypes: r.supportedTypes, validateItem: r.validateItem, supportsData: r.supportsData, layerModuleTypeMap: r.layerModuleTypeMap }, t);
|
|
46
46
|
} catch (i) {
|
|
47
|
-
throw S(i) ||
|
|
47
|
+
throw S(i) || b.getLogger(this).warn(`Failed to load layer (${this.title}, ${this.id}) portal item (${this.portalItem.id})
|
|
48
48
|
${i}`), i;
|
|
49
49
|
}
|
|
50
50
|
}
|
|
@@ -135,7 +135,7 @@ const st = (w) => {
|
|
|
135
135
|
write(r, t) {
|
|
136
136
|
var s;
|
|
137
137
|
const e = t == null ? void 0 : t.portal, i = ((s = this.portalItem) == null ? void 0 : s.id) && (this.portalItem.portal || v.getDefault());
|
|
138
|
-
return e && i && !M(i.restUrl, e.restUrl) ? (t.messages && t.messages.push(new
|
|
138
|
+
return e && i && !M(i.restUrl, e.restUrl) ? (t.messages && t.messages.push(new $("layer:cross-portal", `The layer '${this.title} (${this.id})' cannot be persisted because it refers to an item on a different portal than the one being saved to. To save, set layer.portalItem to null or save to the same portal as the item associated with the layer`, { layer: this })), null) : super.write(r, { ...t, layer: this });
|
|
139
139
|
}
|
|
140
140
|
};
|
|
141
141
|
return l([m({ type: y })], a.prototype, "portalItem", null), l([O("web-document", "portalItem", ["itemId"])], a.prototype, "readPortalItem", null), l([k("web-document", "portalItem", { itemId: { type: String } })], a.prototype, "writePortalItem", null), l([m({ clonable: !1 })], a.prototype, "resourceReferences", void 0), l([m({ type: Boolean, readOnly: !0 })], a.prototype, "userHasEditingPrivileges", void 0), l([m({ type: Boolean, readOnly: !0 })], a.prototype, "userHasFullEditingPrivileges", void 0), l([m({ type: Boolean, readOnly: !0 })], a.prototype, "userHasUpdateItemPrivileges", void 0), a = l([T("esri.layers.mixins.PortalLayer")], a), a;
|
|
@@ -3,8 +3,8 @@ import "../../core/has.js";
|
|
|
3
3
|
import { makeHandle as x } from "../../core/handleUtils.js";
|
|
4
4
|
import R from "../../core/Logger.js";
|
|
5
5
|
import { getMetersPerUnitForSR as d } from "../../core/unitUtils.js";
|
|
6
|
-
import { toExtent as p, create as v, containsXY as
|
|
7
|
-
import { project as
|
|
6
|
+
import { toExtent as p, create as v, containsXY as $ } from "../../geometry/support/aaBoundingRect.js";
|
|
7
|
+
import { project as y } from "../../geometry/support/webMercatorUtils.js";
|
|
8
8
|
import A from "../../geometry/Point.js";
|
|
9
9
|
const c = () => R.getLogger("esri.layers.support.ElevationSampler");
|
|
10
10
|
class h {
|
|
@@ -34,7 +34,7 @@ class g extends h {
|
|
|
34
34
|
return t != null && this.containsAt(t.x, t.y);
|
|
35
35
|
}
|
|
36
36
|
containsAt(e, t) {
|
|
37
|
-
return
|
|
37
|
+
return $(this._aaExtent, e, t);
|
|
38
38
|
}
|
|
39
39
|
elevationAt(e, t) {
|
|
40
40
|
if (!this.containsAt(e, t)) {
|
|
@@ -93,7 +93,7 @@ function f(n, e) {
|
|
|
93
93
|
const t = n.spatialReference;
|
|
94
94
|
if (t.equals(e))
|
|
95
95
|
return n;
|
|
96
|
-
const a =
|
|
96
|
+
const a = y(n, e);
|
|
97
97
|
return a || c().error(`Cannot project geometry spatial reference (wkid:${t.wkid}) to elevation sampler spatial reference (wkid:${e.wkid})`), a;
|
|
98
98
|
}
|
|
99
99
|
function E(n, e, t) {
|
|
@@ -4,36 +4,51 @@ function g(e) {
|
|
|
4
4
|
return e != null && typeof e == "object" && "type" in e && e.type === "feature";
|
|
5
5
|
}
|
|
6
6
|
function b(e) {
|
|
7
|
-
return e != null && typeof e == "object" && "type" in e && e.type === "
|
|
7
|
+
return e != null && typeof e == "object" && "type" in e && e.type === "graphics";
|
|
8
8
|
}
|
|
9
9
|
function d(e) {
|
|
10
|
-
return
|
|
10
|
+
return e != null && typeof e == "object" && "type" in e && e.type === "map-notes" && "sublayers" in e;
|
|
11
|
+
}
|
|
12
|
+
function L(e) {
|
|
13
|
+
return e != null && typeof e == "object" && "type" in e && e.type === "knowledge-graph" && "layers" in e;
|
|
11
14
|
}
|
|
12
|
-
const L = { Point: "SceneLayer", "3DObject": "SceneLayer", IntegratedMesh: "IntegratedMeshLayer", PointCloud: "PointCloudLayer", Building: "BuildingSceneLayer" };
|
|
13
15
|
function m(e) {
|
|
16
|
+
return e != null && typeof e == "object" && "type" in e && e.type === "link-chart" && "layers" in e;
|
|
17
|
+
}
|
|
18
|
+
function h(e) {
|
|
19
|
+
return e != null && typeof e == "object" && "type" in e && e.type === "subtype-group" && "sublayers" in e;
|
|
20
|
+
}
|
|
21
|
+
function S(e) {
|
|
22
|
+
return (e == null ? void 0 : e.type) === "subtype-sublayer";
|
|
23
|
+
}
|
|
24
|
+
const v = { Point: "SceneLayer", "3DObject": "SceneLayer", IntegratedMesh: "IntegratedMeshLayer", PointCloud: "PointCloudLayer", Building: "BuildingSceneLayer" };
|
|
25
|
+
function w(e) {
|
|
14
26
|
const t = e == null ? void 0 : e.type;
|
|
15
27
|
return t === "building-scene" || t === "integrated-mesh" || t === "point-cloud" || t === "scene";
|
|
16
28
|
}
|
|
17
|
-
function
|
|
29
|
+
function j(e) {
|
|
30
|
+
return e === "integrated-mesh" || e === "integrated-mesh-3dtiles";
|
|
31
|
+
}
|
|
32
|
+
function E(e) {
|
|
18
33
|
var t;
|
|
19
34
|
return (e == null ? void 0 : e.type) === "feature" && !e.url && ((t = e.source) == null ? void 0 : t.type) === "memory";
|
|
20
35
|
}
|
|
21
|
-
function
|
|
36
|
+
function C(e) {
|
|
22
37
|
var t;
|
|
23
38
|
return ((e == null ? void 0 : e.type) === "feature" || (e == null ? void 0 : e.type) === "subtype-group") && ((t = e.source) == null ? void 0 : t.type) === "feature-layer";
|
|
24
39
|
}
|
|
25
|
-
async function
|
|
26
|
-
var
|
|
27
|
-
const n = (
|
|
40
|
+
async function I(e, t) {
|
|
41
|
+
var i;
|
|
42
|
+
const n = (i = c) == null ? void 0 : i.findServerInfo(e);
|
|
28
43
|
if ((n == null ? void 0 : n.currentVersion) != null)
|
|
29
44
|
return n.owningSystemUrl || null;
|
|
30
45
|
const a = e.toLowerCase().indexOf("/rest/services");
|
|
31
46
|
if (a === -1)
|
|
32
47
|
return null;
|
|
33
|
-
const
|
|
48
|
+
const s = `${e.substring(0, a)}/rest/info`, u = t != null ? t.signal : null, { data: r } = await o(s, { query: { f: "json" }, responseType: "json", signal: u });
|
|
34
49
|
return (r == null ? void 0 : r.owningSystemUrl) || null;
|
|
35
50
|
}
|
|
36
|
-
function
|
|
51
|
+
function y(e) {
|
|
37
52
|
if (!("capabilities" in e))
|
|
38
53
|
return !1;
|
|
39
54
|
switch (e.type) {
|
|
@@ -54,10 +69,10 @@ function l(e) {
|
|
|
54
69
|
return !1;
|
|
55
70
|
}
|
|
56
71
|
}
|
|
57
|
-
function
|
|
58
|
-
return
|
|
72
|
+
function k(e) {
|
|
73
|
+
return y(e) ? "effectiveCapabilities" in e ? e.effectiveCapabilities : e.capabilities : null;
|
|
59
74
|
}
|
|
60
|
-
function
|
|
75
|
+
function l(e) {
|
|
61
76
|
if (!("editingEnabled" in e))
|
|
62
77
|
return !1;
|
|
63
78
|
switch (e.type) {
|
|
@@ -73,18 +88,23 @@ function y(e) {
|
|
|
73
88
|
return !1;
|
|
74
89
|
}
|
|
75
90
|
}
|
|
76
|
-
function
|
|
77
|
-
return !!
|
|
91
|
+
function M(e) {
|
|
92
|
+
return !!l(e) && ("effectiveEditingEnabled" in e ? e.effectiveEditingEnabled : e.editingEnabled);
|
|
78
93
|
}
|
|
79
94
|
export {
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
95
|
+
M as getEffectiveEditingEnabled,
|
|
96
|
+
k as getEffectiveLayerCapabilities,
|
|
97
|
+
I as getOwningPortalUrl,
|
|
98
|
+
E as isFeatureCollectionLayer,
|
|
84
99
|
g as isFeatureLayer,
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
100
|
+
b as isGraphicsLayer,
|
|
101
|
+
j as isIntegratedMeshLayer,
|
|
102
|
+
L as isKnowledgeGraphLayer,
|
|
103
|
+
C as isLayerWithFeatureLayerSource,
|
|
104
|
+
m as isLinkChartLayer,
|
|
105
|
+
d as isMapNotesLayer,
|
|
106
|
+
w as isSceneServiceLayer,
|
|
107
|
+
h as isSubtypeGroupLayer,
|
|
108
|
+
S as isSubtypeSublayer,
|
|
109
|
+
v as sceneServiceLayerTypeToClassName
|
|
90
110
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import b from "../../request.js";
|
|
2
2
|
import { clone as p } from "../../core/lang.js";
|
|
3
3
|
import { throwIfAborted as j } from "../../core/promiseUtils.js";
|
|
4
|
-
import { isProtocolRelative as E, isAbsolute as T, join as I, removeTrailingSlash as U, normalize as R, removeFile as
|
|
4
|
+
import { isProtocolRelative as E, isAbsolute as T, join as I, removeTrailingSlash as U, normalize as R, removeFile as $, getAppBaseUrl as g, addQueryParameters as B } from "../../core/urlUtils.js";
|
|
5
5
|
import { wgs84 as x, webMercator as S } from "../../geometry/support/spatialReferenceUtils.js";
|
|
6
6
|
import { geographicToWebMercator as h } from "../../geometry/support/webMercatorUtils.js";
|
|
7
7
|
import q from "../../views/2d/engine/vectorTiles/style/VectorTileSource.js";
|
|
@@ -39,7 +39,7 @@ function F(e) {
|
|
|
39
39
|
return !N(e);
|
|
40
40
|
}
|
|
41
41
|
async function O(e, o, r, n) {
|
|
42
|
-
const t = r ?
|
|
42
|
+
const t = r ? $(r) : g();
|
|
43
43
|
e.styleBase = t, e.style = o, o["sprite-format"] && o["sprite-format"].toLowerCase() === "webp" && (e.spriteFormat = "webp");
|
|
44
44
|
const l = [];
|
|
45
45
|
if (o.sources && o.sources.esri) {
|
|
@@ -51,7 +51,7 @@ async function O(e, o, r, n) {
|
|
|
51
51
|
await Promise.all(l);
|
|
52
52
|
}
|
|
53
53
|
async function w(e, o, r, n, t, l) {
|
|
54
|
-
const s = r ? U(r) + "/" : g(), u = P(o), i = new q(t,
|
|
54
|
+
const s = r ? U(r) + "/" : g(), u = P(o), i = new q(t, B(s, (l == null ? void 0 : l.query) ?? {}), u);
|
|
55
55
|
if (!n && e.primarySourceName in e.sourceNameToSource) {
|
|
56
56
|
const a = e.sourceNameToSource[e.primarySourceName];
|
|
57
57
|
if (!a.isCompatibleWith(i))
|
package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/libs/maquette/h.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
let d = (i) => ({ vnodeSelector: "", properties: void 0, children: void 0, text: i.toString(), domNode: null }), o = (i, r, e) => {
|
|
2
|
+
for (let l = 0, n = r.length; l < n; l++) {
|
|
3
|
+
let t = r[l];
|
|
4
|
+
Array.isArray(t) ? o(i, t, e) : t != null && t !== !1 && (typeof t == "string" && (t = d(t)), e.push(t));
|
|
5
|
+
}
|
|
6
|
+
};
|
|
7
|
+
function s(i, r, e) {
|
|
8
|
+
if (Array.isArray(r))
|
|
9
|
+
e = r, r = void 0;
|
|
10
|
+
else if (r && (typeof r == "string" || r.hasOwnProperty("vnodeSelector")) || e && (typeof e == "string" || e.hasOwnProperty("vnodeSelector")))
|
|
11
|
+
throw new Error("h called with invalid arguments");
|
|
12
|
+
let l, n;
|
|
13
|
+
return e && e.length === 1 && typeof e[0] == "string" ? l = e[0] : e && (n = [], o(i, e, n), n.length === 0 && (n = void 0)), { vnodeSelector: i, properties: r, children: n, text: l === "" ? void 0 : l, domNode: null };
|
|
14
|
+
}
|
|
15
|
+
export {
|
|
16
|
+
s as h
|
|
17
|
+
};
|
|
@@ -17,7 +17,7 @@ import { collectArcadeFieldNames as J, collectField as F } from "../layers/suppo
|
|
|
17
17
|
import O from "../portal/Portal.js";
|
|
18
18
|
import Q from "./Renderer.js";
|
|
19
19
|
import { VisualVariablesMixin as Z } from "./mixins/VisualVariablesMixin.js";
|
|
20
|
-
import {
|
|
20
|
+
import { rendererSymbolProperty as K, rendererBackgroundFillSymbolProperty as W } from "./support/commonProperties.js";
|
|
21
21
|
import { LegendOptions as X } from "./support/LegendOptions.js";
|
|
22
22
|
import Y from "./support/UniqueValue.js";
|
|
23
23
|
import ee from "./support/UniqueValueClass.js";
|
|
@@ -303,7 +303,7 @@ let r = I = class extends Z(Q) {
|
|
|
303
303
|
}), i;
|
|
304
304
|
}
|
|
305
305
|
};
|
|
306
|
-
u([a({ readOnly: !0 })], r.prototype, "_cache", null), u([k({ uniqueValue: "unique-value" })], r.prototype, "type", void 0), u([a(
|
|
306
|
+
u([a({ readOnly: !0 })], r.prototype, "_cache", null), u([k({ uniqueValue: "unique-value" })], r.prototype, "type", void 0), u([a(W)], r.prototype, "backgroundFillSymbol", void 0), u([a({ value: null, json: { type: String, read: { source: "field1" }, write: { target: "field1" } } })], r.prototype, "field", null), u([z("field")], r.prototype, "castField", null), u([x("field")], r.prototype, "writeField", null), u([a({ type: String, value: null, json: { write: !0 } })], r.prototype, "field2", null), u([a({ type: String, value: null, json: { write: !0 } })], r.prototype, "field3", null), u([a({ type: Boolean, json: { name: "drawInClassOrder", default: !1, write: !0, origins: { "web-scene": { write: !1 } } } })], r.prototype, "orderByClassesEnabled", void 0), u([a({ type: String, value: null, json: { write: !0 } })], r.prototype, "valueExpression", null), u([a({ type: String, json: { write: !0 } })], r.prototype, "valueExpressionTitle", void 0), u([a({ type: X, json: { write: !0 } })], r.prototype, "legendOptions", void 0), u([a({ type: String, json: { write: !0 } })], r.prototype, "defaultLabel", void 0), u([a(C({ ...K }, { json: { write: { overridePolicy() {
|
|
307
307
|
return { enabled: !this._isDefaultSymbolDerived };
|
|
308
308
|
} }, origins: { "web-scene": { write: { overridePolicy() {
|
|
309
309
|
return { enabled: !this._isDefaultSymbolDerived };
|