@agrotools1/at-components 0.6.16 → 0.6.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Map/Map.d.ts +27 -4
- package/dist/Map/Map.vue.js +1 -1
- package/dist/Map/Map.vue2.js +162 -121
- package/dist/Stepper/Stepper.vue.js +48 -35
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/analysis/SlicePlane.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/ImageMaterial.glsl.js +56 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Laserlines.glsl.js +7 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/LineCallout.glsl.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/LineMarker.glsl.js +200 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/NativeLine.glsl.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Path.glsl.js +111 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Pattern.glsl.js +185 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/SlicePlaneMaterial.glsl.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/WaterSurface.glsl.js +158 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/vec32.js +13 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/MapUtils.js +18 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/PooledArray.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/accessorSupport/diffUtils.js +75 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/arrayUtils.js +59 -53
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/asyncUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/colorUtils.js +77 -59
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/fontUtils.js +22 -18
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/handleUtils.js +12 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/factories/mat2f64.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/math/mat2.js +104 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/math/mat4.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/mathUtils.js +29 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/quantityFormatUtils.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/quantityUtils.js +38 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/reactiveUtils.js +63 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/scheduling.js +56 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/time.js +9 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/unitFormatUtils.js +95 -41
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/unitUtils.js +130 -89
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/Circle.js +82 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/ellipsoidUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectBoundingRect.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPointToVector.js +16 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPolygonToWGS84ComparableLonLat.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPolylineToWGS84ComparableLonLat.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectVectorToPoint.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/spatialReferenceEllipsoidUtils.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/FloatArray.js +12 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/Indices.js +26 -22
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/aaBoundingBox.js +133 -74
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/aaBoundingRect.js +78 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/axisAngleDegrees.js +13 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/buffer/BufferView.js +93 -93
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/coordsUtils.js +132 -68
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/geodesicUtils.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/heightModelInfoUtils.js +71 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/lineSegment.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/meshUtils/External.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/plane.js +107 -89
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/ray.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/rotate.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/triangle.js +16 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/vector.js +14 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/vectorStacks.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/data/QueryEngine.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/dehydratedFeatures.js +64 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/hydratedFeatures.js +54 -46
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/sources/support/uploadAssets.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/mixins/ArcGISMapService.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/mixins/PortalLayer.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/ElevationSampler.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/layerUtils.js +44 -24
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/vectorTileLayerLoader.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/libs/maquette/h.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/UniqueValueRenderer.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/AuthoringInfo.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/numberUtils.js +65 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/rendererConversion.js +55 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/renderingInfoUtils.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/visualVariables/support/visualVariableUtils.js +195 -149
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/actions/ActionSlider.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/basemapUtils.js +31 -26
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/elevationInfoUtils.js +77 -57
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/progressUtils.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/callouts/calloutUtils.js +20 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/cim/CIMSymbolRasterizer.js +80 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/cim/utils.js +100 -76
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/IconSymbol3DLayerResource.js +11 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/ObjectSymbol3DLayerResource.js +7 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/cimSymbolUtils.js +169 -16
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/defaults3D.js +31 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/defaultsJSON.js +8 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/gfxUtils.js +89 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewCIMSymbol.js +47 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewSymbol2D.js +142 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewSymbol3D.js +288 -37
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewUtils.js +87 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewWebStyleSymbol.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/renderUtils.js +82 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/styleUtils.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/svgUtils.js +271 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/symbolLayerUtils3D.js +34 -16
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/symbolUtils.js +147 -41
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/utils.js +169 -128
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/ControlPointsTransformTool.js +149 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/MediaTransformToolsWrapper.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/TransformTool.js +218 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/draw/DrawGraphicTool2D.js +70 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/draw/symbols.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/DragManipulation.js +50 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/Manipulation.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/RotateManipulation.js +50 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/ScaleManipulation.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/utils.js +54 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/FeatureLayerView2D.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/ImageryLayerView2D.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/TileLayerView2D.js +8 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/features/Processor.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/support/ExportStrategy.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/navigation/MapViewNavigation.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/ResizeManipulator.js +31 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/RotateManipulator.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/ShiftManipulator.js +88 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/sliceToolConfig.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/sliceToolUtils.js +129 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/Factory.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/generateTextures.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/heading-rotate-svg.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/environment/CloudsParameters.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/environment/weather.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/SegmentLabels3D.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/GrabbingState.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/ManipulatorState.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/ManipulatorType.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/dragEventPipeline3D.js +121 -67
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/draw/DrawGraphicTool3D.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/geometryUtils.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/isSupportedGraphicUtils.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/lineGraphicVisualElementUtils.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/Manipulation.js +53 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveManipulation.js +84 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYAxisManipulation.js +116 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYDiscManipulation.js +90 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYGraphicManipulation.js +36 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveZManipulation.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/config.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/moveUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulatorUtils.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/meshFastUpdateUtils.js +34 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/moveGraphic/GraphicMoveTool.js +256 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/moveGraphic/isSupportedGraphic.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/originGraphicVisualElementUtils.js +94 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/GraphicReshapeTool.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/ReshapeOperation.js +738 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/edgeOffsetUtils.js +39 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/isSupportedGraphic.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/settings.js +124 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/snapping/SnapToScene.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentMove.js +108 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentRotate.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentScale.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentTransformTool.js +164 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/GraphicScaleRotateTransform.js +331 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/GraphicTransformTool.js +170 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/PreserveAspectRatio.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ScaleRotateMeshAdapter.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ScaleRotateObjectSymbol3DAdapter.js +142 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/extentUtils.js +71 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/isSupportedGraphic.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/undoRecords.js +37 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/visualElementUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/manipulatorUtils.js +50 -38
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/measurementTools/areaMeasurement3D/AreaMeasurement3DTool.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/measurementTools/directLineMeasurement3D/DirectLineMeasurement3DTool.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/visualElements/OutlineVisualElement.js +196 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/visualElements/VerticesVisualElement.js +108 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/GraphicsLayerView3D.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/LayerView3D.js +42 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/DisplayFeatureLimit.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ElevationAligners.js +87 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ElevationQuery.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ExtentSet.js +71 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicState.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicStateTracking.js +65 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DCalloutSymbolLayerFactory.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DCore.js +1110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DDrapedGraphicLayer.js +84 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DElevationAlignment.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DExtrudeSymbolLayer.js +221 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DFeatureStore.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DFrustumVisibility.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DGraphic.js +164 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DGraphicCreationContext.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DIconSymbolLayer.js +367 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLineCalloutSymbolLayer.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLineSymbolLayer.js +226 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLodInstanceGraphicLayer.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DMeshFillSymbolLayer.js +511 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DMeshObject3DGraphicLayer.js +91 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObject3DGraphicLayer.js +147 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectMetadata.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectStateSet.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectStates.js +69 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectSymbolLayer.js +347 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPathSymbolLayer.js +240 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPathSymbolLayerConstants.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPointSymbol.js +51 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPolygonFillSymbolLayer.js +203 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DScaleVisibility.js +145 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbol.js +158 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolCreationContext.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolFactory.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolLayer.js +195 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolLayerFactory.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DTextSymbolLayer.js +153 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DWaterSymbolLayer.js +151 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DWebStyleSymbol.js +57 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicsCorePerformanceInfo.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicsProcessor.js +192 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/LabelParameters.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Loadable.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/MeshFastUpdateProcessor.js +85 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/SpatialIndex2D.js +70 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/SymbolComplexity.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/constants.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/defaultSymbolComplexity.js +152 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/elevationAlignPointsInFeatures.js +35 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/elevationAlignmentUtils.js +107 -33
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/enums.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/featureExpressionInfoUtils.js +48 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/graphicUtils.js +119 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/interfaces.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/lineUtils.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/lodResourceUtils.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/objectResourceUtils.js +15 -15
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/placementUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/pointUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/polygonUtils.js +60 -29
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/primitiveObjectSymbolUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/queryForSymbologySnapping.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/symbolMemory.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/webStyleUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/FastSymbolUpdates.js +323 -31
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/LayerViewPerformanceInfo.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/StageLayerElevationProvider.js +76 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/edgeUtils.js +37 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/layerUtils.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/patternUtils.js +52 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/projectExtentUtils.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/symbolColorUtils.js +28 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/uvUtils.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/ElevationProvider.js +11 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/ElevationUpdateEvent.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/FrustumExtentIntersection.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/buffer/InterleavedLayout.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/engineContent/line.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/engineContent/marker.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/extentUtils.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/geometryUtils/ray.js +15 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/intersectionUtils.js +33 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/mathUtils.js +13 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/orientedBoundingBox.js +22 -22
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/line.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/point.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/polygon.js +63 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/ShaderOutput.js +25 -17
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/PathVertexPosition.glsl.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/VertexNormal.glsl.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/VertexPosition.glsl.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/FoamRendering.glsl.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/Gamma.glsl.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/NormalUtils.glsl.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/PhysicallyBasedRendering.glsl.js +53 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/ScreenSpaceReflections.glsl.js +123 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/Water.glsl.js +85 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/WaterDistortion.glsl.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/util/CloudsParallaxShading.glsl.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderModules/TextureCubePassUniform.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/effects/RenderPlugin.js +5 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/AnimationTimer.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/BoundingInfo.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/FontMetrics.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/GeometryUtil.js +308 -73
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/GeometryWithMapPositions.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Intersector.js +14 -14
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Normals.js +16 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Object3D.js +14 -14
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Object3DStateSet.js +57 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Octree.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Path.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathBuilder.js +62 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathCapBuilder.js +100 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathExtruder.js +53 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathGeometry.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathGeometryData.js +94 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathProfile.js +62 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathVertex.js +81 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextHelperCanvas.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextRenderParameters.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextRenderer.js +219 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextTextureAtlas.js +212 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextTextureFactory.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/edgeRendering/edgePreprocessing.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/BackedBufferObject.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/InstanceData.js +174 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/InstanceOctree.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/Intersector.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LevelSelector.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodComponentData.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodLevel.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodRenderer.js +264 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodResources.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/RenderInstanceData.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/pathGeometryUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/DefaultLayouts.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/DefaultMaterial.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/ImageMaterial.js +66 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/LineCalloutMaterial.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/LineMarkerMaterial.js +104 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/NativeLineMaterial.js +106 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PathMaterial.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PathTechnique.js +49 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PatternMaterial.js +86 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PatternStyle.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterGLMaterial.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterMaterial.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterTechnique.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/internal/bufferWriterUtils.js +122 -109
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/internal/waterMaterialUtils.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/lineStippleUtils.js +18 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/renderers/utils.js +15 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/DefaultMaterialTechnique.js +33 -27
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/ImageMaterial.glsl.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/ImageMaterialTechnique.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LaserlineTechnique.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCallout.glsl.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCalloutTechnique.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCalloutTechniqueConfiguration.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineMarker.glsl.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineMarkerTechnique.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLine.glsl.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLineTechnique.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLineTechniqueConfiguration.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/Path.glsl.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/Pattern.glsl.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/PatternTechnique.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/RibbonLineTechnique.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/SlicePlaneMaterial.glsl.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/SlicePlaneMaterialTechnique.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/WaterSurface.glsl.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/DOMContainer.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawGraphicTool.js +397 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawOperation.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawScreenTool.js +126 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/drawSurfaces.js +47 -21
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/Box.js +481 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/GraphicMover.js +211 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/HighlightHelper.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/Reshape.js +556 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/createUtils.js +118 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/drawUtils.js +117 -23
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/helpMessageUtils.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/helpMessageUtils3d.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/input/GraphicMoverEvents.js +65 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/layerUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/settings.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/SegmentLabels.js +147 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/dragEventPipeline.js +165 -81
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/editGeometry/operations/OffsetEdgeVertex.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/editGeometry/support/editPlaneUtils.js +52 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/keybindings.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchOptions.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipElevationOptions.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipOptions.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipVisibleElements.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchValueOptions.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/constraints.js +25 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/normalizedPoint.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/FeatureSnappingEngine.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/FeatureCollectionSnappingSource.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/FeatureServiceSnappingSource.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/GraphicsSnappingSource.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/DrawTooltipInfos.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/ExtentTooltipInfos.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/ReshapeTooltipInfos.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/SketchTooltipInfo.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/Tooltip.js +80 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/TransformTooltipInfos.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/TranslateTooltipInfos.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/DrawHeaderActions.js +34 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/TooltipEditableField.js +117 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/TooltipField.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/ValueByValue.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/directionModeIcons.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/constraintUtils.js +90 -91
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/Fields.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContent.js +150 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawCircle.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawMesh.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPoint.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPolygon.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPolyline.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawRectangle.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentExtentRotate.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentExtentScale.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentReshapeEdgeOffset.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformAbsolute.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformRotate.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformScale.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphic.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphicXY.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphicZ.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertex.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertexXY.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertexZ.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/tooltipContentFactory.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/css.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/TooltipField.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/TooltipFieldElevation.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/fields.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/layers/WMSLayerView.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/layers/support/popupUtils.js +17 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/overlay/OutlineOverlayItem.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/overlay/TextOverlayItem.js +76 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/DefaultsFromMap.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/angularMeasurementUtils.js +87 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/automaticAreaMeasurementUtils.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/automaticLengthMeasurementUtils.js +18 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/euclideanAreaMeasurementUtils.js +67 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/euclideanLengthMeasurementUtils.js +92 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/extentUtils.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geodesicAreaMeasurementUtils.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geodesicLengthMeasurementUtils.js +57 -27
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geometry2dUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/hitTestSelectUtils.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/layerViewUtils.js +10 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/measurementUtils.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/webgl/Util.js +90 -70
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/webgl/testFloatBufferBlend.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Feature/FeatureRelationship.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Feature/support/featureUtils.js +54 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/LayerListViewModel.js +113 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/ListItem.js +144 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/ListItemPanel.js +98 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/support/layerListUtils.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/LegendViewModel.js +190 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/Card.js +284 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/CardCSS.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/Classic.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/ClassicCSS.js +5 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/support/relationshipUtils.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/support/univariateUtils.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/ActiveLayerInfo.js +1053 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/clusterUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/colorRampUtils.js +54 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/relationshipRampUtils.js +59 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/sizeRampUtils.js +155 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/styleUtils.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/utils.js +75 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/SketchViewModel.js +886 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/VisibleElements.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/support/OperationHandle.js +81 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch.js +293 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/smartMapping/support/utils.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Heading.js +13 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/LabeledSwitch.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SelectionToolbar/SelectionToolbarViewModel.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SelectionToolbar.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Selector2D/SelectionOperation.js +95 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Selector2D/selectorUtils.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SketchTooltipControls/VisibleElements.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SketchTooltipControls.js +66 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingControlsViewModel.js +79 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingLayerListViewModel.js +41 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingListItem.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/VisibleElements.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/snappingLayerListUtils.js +33 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls.js +141 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/widget.js +7 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/widgetUtils.js +19 -15
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-accordion-item.js +157 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-accordion.js +97 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-block.js +230 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown-group.js +97 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown-item.js +171 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-radio-button-group.js +144 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-radio-button.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-switch.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-tooltip.js +290 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/dom.js +91 -79
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/dropdown.js +319 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/floating-ui.js +11 -10
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/radio-button.js +244 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/resources3.js +20 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/switch.js +123 -0
- package/dist/node_modules/.pnpm/@terraformer_arcgis@2.1.2/node_modules/@terraformer/arcgis/dist/t-arcgis.esm.js +124 -45
- package/dist/node_modules/.pnpm/@terraformer_wkt@2.2.1/node_modules/@terraformer/wkt/dist/t-wkt.esm.js +1287 -0
- package/dist/style.css +1 -1
- package/package.json +3 -1
- package/dist/_virtual/_commonjsHelpers.js +0 -8
- package/dist/_virtual/terraformer-wkt-parser.js +0 -4
- package/dist/_virtual/terraformer.js +0 -4
- package/dist/node_modules/.pnpm/terraformer-wkt-parser@1.2.1/node_modules/terraformer-wkt-parser/terraformer-wkt-parser.js +0 -469
- package/dist/node_modules/.pnpm/terraformer@1.0.12/node_modules/terraformer/terraformer.js +0 -637
|
@@ -0,0 +1,1287 @@
|
|
|
1
|
+
/* @preserve
|
|
2
|
+
* @terraformer/wkt - v2.2.0 - MIT
|
|
3
|
+
* Copyright (c) 2012-2024 Environmental Systems Research Institute, Inc.
|
|
4
|
+
* Wed May 15 2024 14:35:51 GMT-0700 (Pacific Daylight Time)
|
|
5
|
+
*/
|
|
6
|
+
var n = function(e, t, r, o) {
|
|
7
|
+
for (r = r || {}, o = e.length; o--; r[e[o]] = t)
|
|
8
|
+
;
|
|
9
|
+
return r;
|
|
10
|
+
}, v = [1, 9], N = [1, 10], M = [1, 11], L = [1, 12], I = [1, 13], E = [1, 14], x = [1, 15], p = [1, 60], c = [5, 15, 19], b = [1, 67], g = [1, 73], w = [1, 87], G = [1, 104], h = [15, 19], _ = [1, 110], k = [1, 116], V = [1, 130], U = [1, 136], J = {
|
|
11
|
+
trace: function() {
|
|
12
|
+
},
|
|
13
|
+
yy: {},
|
|
14
|
+
symbols_: {
|
|
15
|
+
error: 2,
|
|
16
|
+
expressions: 3,
|
|
17
|
+
point: 4,
|
|
18
|
+
EOF: 5,
|
|
19
|
+
linestring: 6,
|
|
20
|
+
polygon: 7,
|
|
21
|
+
multipoint: 8,
|
|
22
|
+
multilinestring: 9,
|
|
23
|
+
multipolygon: 10,
|
|
24
|
+
geometrycollection: 11,
|
|
25
|
+
coordinate: 12,
|
|
26
|
+
DOUBLE_TOK: 13,
|
|
27
|
+
ptarray: 14,
|
|
28
|
+
COMMA: 15,
|
|
29
|
+
ring_list: 16,
|
|
30
|
+
ring: 17,
|
|
31
|
+
"(": 18,
|
|
32
|
+
")": 19,
|
|
33
|
+
POINT: 20,
|
|
34
|
+
Z: 21,
|
|
35
|
+
ZM: 22,
|
|
36
|
+
M: 23,
|
|
37
|
+
EMPTY: 24,
|
|
38
|
+
point_untagged: 25,
|
|
39
|
+
polygon_list: 26,
|
|
40
|
+
polygon_untagged: 27,
|
|
41
|
+
point_list: 28,
|
|
42
|
+
LINESTRING: 29,
|
|
43
|
+
POLYGON: 30,
|
|
44
|
+
MULTIPOINT: 31,
|
|
45
|
+
MULTILINESTRING: 32,
|
|
46
|
+
MULTIPOLYGON: 33,
|
|
47
|
+
geometry: 34,
|
|
48
|
+
geometry_collection: 35,
|
|
49
|
+
GEOMETRYCOLLECTION: 36,
|
|
50
|
+
$accept: 0,
|
|
51
|
+
$end: 1
|
|
52
|
+
},
|
|
53
|
+
terminals_: {
|
|
54
|
+
2: "error",
|
|
55
|
+
5: "EOF",
|
|
56
|
+
13: "DOUBLE_TOK",
|
|
57
|
+
15: "COMMA",
|
|
58
|
+
18: "(",
|
|
59
|
+
19: ")",
|
|
60
|
+
20: "POINT",
|
|
61
|
+
21: "Z",
|
|
62
|
+
22: "ZM",
|
|
63
|
+
23: "M",
|
|
64
|
+
24: "EMPTY",
|
|
65
|
+
29: "LINESTRING",
|
|
66
|
+
30: "POLYGON",
|
|
67
|
+
31: "MULTIPOINT",
|
|
68
|
+
32: "MULTILINESTRING",
|
|
69
|
+
33: "MULTIPOLYGON",
|
|
70
|
+
36: "GEOMETRYCOLLECTION"
|
|
71
|
+
},
|
|
72
|
+
productions_: [0, [3, 2], [3, 2], [3, 2], [3, 2], [3, 2], [3, 2], [3, 2], [12, 2], [12, 3], [12, 4], [14, 3], [14, 1], [16, 3], [16, 1], [17, 3], [4, 4], [4, 5], [4, 5], [4, 5], [4, 2], [25, 1], [25, 3], [26, 3], [26, 1], [27, 3], [28, 3], [28, 1], [6, 4], [6, 5], [6, 5], [6, 5], [6, 2], [7, 4], [7, 5], [7, 5], [7, 5], [7, 2], [8, 4], [8, 5], [8, 5], [8, 5], [8, 2], [9, 4], [9, 5], [9, 5], [9, 5], [9, 2], [10, 4], [10, 5], [10, 5], [10, 5], [10, 2], [34, 1], [34, 1], [34, 1], [34, 1], [34, 1], [34, 1], [34, 1], [35, 3], [35, 1], [11, 4], [11, 5], [11, 5], [11, 5], [11, 2]],
|
|
73
|
+
performAction: function(e, t, r, o, l, i, y) {
|
|
74
|
+
var s = i.length - 1;
|
|
75
|
+
switch (l) {
|
|
76
|
+
case 1:
|
|
77
|
+
case 2:
|
|
78
|
+
case 3:
|
|
79
|
+
case 4:
|
|
80
|
+
case 5:
|
|
81
|
+
case 6:
|
|
82
|
+
case 7:
|
|
83
|
+
return i[s - 1];
|
|
84
|
+
case 8:
|
|
85
|
+
this.$ = new R([Number(i[s - 1]), Number(i[s])]);
|
|
86
|
+
break;
|
|
87
|
+
case 9:
|
|
88
|
+
this.$ = new R([Number(i[s - 2]), Number(i[s - 1]), Number(i[s])]);
|
|
89
|
+
break;
|
|
90
|
+
case 10:
|
|
91
|
+
this.$ = new R([Number(i[s - 3]), Number(i[s - 2]), Number(i[s - 1]), Number(i[s])]);
|
|
92
|
+
break;
|
|
93
|
+
case 11:
|
|
94
|
+
case 26:
|
|
95
|
+
this.$ = i[s - 2].addPoint(i[s]);
|
|
96
|
+
break;
|
|
97
|
+
case 12:
|
|
98
|
+
case 21:
|
|
99
|
+
case 27:
|
|
100
|
+
case 53:
|
|
101
|
+
case 54:
|
|
102
|
+
case 55:
|
|
103
|
+
case 56:
|
|
104
|
+
case 57:
|
|
105
|
+
case 58:
|
|
106
|
+
case 59:
|
|
107
|
+
this.$ = i[s];
|
|
108
|
+
break;
|
|
109
|
+
case 13:
|
|
110
|
+
this.$ = i[s - 2].addRing(i[s]);
|
|
111
|
+
break;
|
|
112
|
+
case 14:
|
|
113
|
+
this.$ = new W(i[s]);
|
|
114
|
+
break;
|
|
115
|
+
case 15:
|
|
116
|
+
this.$ = new X(i[s - 1]);
|
|
117
|
+
break;
|
|
118
|
+
case 16:
|
|
119
|
+
this.$ = {
|
|
120
|
+
type: "Point",
|
|
121
|
+
coordinates: i[s - 1].data[0]
|
|
122
|
+
};
|
|
123
|
+
break;
|
|
124
|
+
case 17:
|
|
125
|
+
this.$ = {
|
|
126
|
+
type: "Point",
|
|
127
|
+
coordinates: i[s - 1].data[0],
|
|
128
|
+
properties: {
|
|
129
|
+
z: !0
|
|
130
|
+
}
|
|
131
|
+
};
|
|
132
|
+
break;
|
|
133
|
+
case 18:
|
|
134
|
+
this.$ = {
|
|
135
|
+
type: "Point",
|
|
136
|
+
coordinates: i[s - 1].data[0],
|
|
137
|
+
properties: {
|
|
138
|
+
z: !0,
|
|
139
|
+
m: !0
|
|
140
|
+
}
|
|
141
|
+
};
|
|
142
|
+
break;
|
|
143
|
+
case 19:
|
|
144
|
+
this.$ = {
|
|
145
|
+
type: "Point",
|
|
146
|
+
coordinates: i[s - 1].data[0],
|
|
147
|
+
properties: {
|
|
148
|
+
m: !0
|
|
149
|
+
}
|
|
150
|
+
};
|
|
151
|
+
break;
|
|
152
|
+
case 20:
|
|
153
|
+
this.$ = {
|
|
154
|
+
type: "Point",
|
|
155
|
+
coordinates: []
|
|
156
|
+
};
|
|
157
|
+
break;
|
|
158
|
+
case 22:
|
|
159
|
+
case 25:
|
|
160
|
+
this.$ = i[s - 1];
|
|
161
|
+
break;
|
|
162
|
+
case 23:
|
|
163
|
+
this.$ = i[s - 2].addPolygon(i[s]);
|
|
164
|
+
break;
|
|
165
|
+
case 24:
|
|
166
|
+
this.$ = new D(i[s]);
|
|
167
|
+
break;
|
|
168
|
+
case 28:
|
|
169
|
+
this.$ = {
|
|
170
|
+
type: "LineString",
|
|
171
|
+
coordinates: i[s - 1].data
|
|
172
|
+
};
|
|
173
|
+
break;
|
|
174
|
+
case 29:
|
|
175
|
+
this.$ = {
|
|
176
|
+
type: "LineString",
|
|
177
|
+
coordinates: i[s - 1].data,
|
|
178
|
+
properties: {
|
|
179
|
+
z: !0
|
|
180
|
+
}
|
|
181
|
+
};
|
|
182
|
+
break;
|
|
183
|
+
case 30:
|
|
184
|
+
this.$ = {
|
|
185
|
+
type: "LineString",
|
|
186
|
+
coordinates: i[s - 1].data,
|
|
187
|
+
properties: {
|
|
188
|
+
m: !0
|
|
189
|
+
}
|
|
190
|
+
};
|
|
191
|
+
break;
|
|
192
|
+
case 31:
|
|
193
|
+
this.$ = {
|
|
194
|
+
type: "LineString",
|
|
195
|
+
coordinates: i[s - 1].data,
|
|
196
|
+
properties: {
|
|
197
|
+
z: !0,
|
|
198
|
+
m: !0
|
|
199
|
+
}
|
|
200
|
+
};
|
|
201
|
+
break;
|
|
202
|
+
case 32:
|
|
203
|
+
this.$ = {
|
|
204
|
+
type: "LineString",
|
|
205
|
+
coordinates: []
|
|
206
|
+
};
|
|
207
|
+
break;
|
|
208
|
+
case 33:
|
|
209
|
+
this.$ = {
|
|
210
|
+
type: "Polygon",
|
|
211
|
+
coordinates: i[s - 1].toJSON()
|
|
212
|
+
};
|
|
213
|
+
break;
|
|
214
|
+
case 34:
|
|
215
|
+
this.$ = {
|
|
216
|
+
type: "Polygon",
|
|
217
|
+
coordinates: i[s - 1].toJSON(),
|
|
218
|
+
properties: {
|
|
219
|
+
z: !0
|
|
220
|
+
}
|
|
221
|
+
};
|
|
222
|
+
break;
|
|
223
|
+
case 35:
|
|
224
|
+
this.$ = {
|
|
225
|
+
type: "Polygon",
|
|
226
|
+
coordinates: i[s - 1].toJSON(),
|
|
227
|
+
properties: {
|
|
228
|
+
m: !0
|
|
229
|
+
}
|
|
230
|
+
};
|
|
231
|
+
break;
|
|
232
|
+
case 36:
|
|
233
|
+
this.$ = {
|
|
234
|
+
type: "Polygon",
|
|
235
|
+
coordinates: i[s - 1].toJSON(),
|
|
236
|
+
properties: {
|
|
237
|
+
z: !0,
|
|
238
|
+
m: !0
|
|
239
|
+
}
|
|
240
|
+
};
|
|
241
|
+
break;
|
|
242
|
+
case 37:
|
|
243
|
+
this.$ = {
|
|
244
|
+
type: "Polygon",
|
|
245
|
+
coordinates: []
|
|
246
|
+
};
|
|
247
|
+
break;
|
|
248
|
+
case 38:
|
|
249
|
+
this.$ = {
|
|
250
|
+
type: "MultiPoint",
|
|
251
|
+
coordinates: i[s - 1].data
|
|
252
|
+
};
|
|
253
|
+
break;
|
|
254
|
+
case 39:
|
|
255
|
+
this.$ = {
|
|
256
|
+
type: "MultiPoint",
|
|
257
|
+
coordinates: i[s - 1].data,
|
|
258
|
+
properties: {
|
|
259
|
+
z: !0
|
|
260
|
+
}
|
|
261
|
+
};
|
|
262
|
+
break;
|
|
263
|
+
case 40:
|
|
264
|
+
this.$ = {
|
|
265
|
+
type: "MultiPoint",
|
|
266
|
+
coordinates: i[s - 1].data,
|
|
267
|
+
properties: {
|
|
268
|
+
m: !0
|
|
269
|
+
}
|
|
270
|
+
};
|
|
271
|
+
break;
|
|
272
|
+
case 41:
|
|
273
|
+
this.$ = {
|
|
274
|
+
type: "MultiPoint",
|
|
275
|
+
coordinates: i[s - 1].data,
|
|
276
|
+
properties: {
|
|
277
|
+
z: !0,
|
|
278
|
+
m: !0
|
|
279
|
+
}
|
|
280
|
+
};
|
|
281
|
+
break;
|
|
282
|
+
case 42:
|
|
283
|
+
this.$ = {
|
|
284
|
+
type: "MultiPoint",
|
|
285
|
+
coordinates: []
|
|
286
|
+
};
|
|
287
|
+
break;
|
|
288
|
+
case 43:
|
|
289
|
+
this.$ = {
|
|
290
|
+
type: "MultiLineString",
|
|
291
|
+
coordinates: i[s - 1].toJSON()
|
|
292
|
+
};
|
|
293
|
+
break;
|
|
294
|
+
case 44:
|
|
295
|
+
this.$ = {
|
|
296
|
+
type: "MultiLineString",
|
|
297
|
+
coordinates: i[s - 1].toJSON(),
|
|
298
|
+
properties: {
|
|
299
|
+
z: !0
|
|
300
|
+
}
|
|
301
|
+
};
|
|
302
|
+
break;
|
|
303
|
+
case 45:
|
|
304
|
+
this.$ = {
|
|
305
|
+
type: "MultiLineString",
|
|
306
|
+
coordinates: i[s - 1].toJSON(),
|
|
307
|
+
properties: {
|
|
308
|
+
m: !0
|
|
309
|
+
}
|
|
310
|
+
};
|
|
311
|
+
break;
|
|
312
|
+
case 46:
|
|
313
|
+
this.$ = {
|
|
314
|
+
type: "MultiLineString",
|
|
315
|
+
coordinates: i[s - 1].toJSON(),
|
|
316
|
+
properties: {
|
|
317
|
+
z: !0,
|
|
318
|
+
m: !0
|
|
319
|
+
}
|
|
320
|
+
};
|
|
321
|
+
break;
|
|
322
|
+
case 47:
|
|
323
|
+
this.$ = {
|
|
324
|
+
type: "MultiLineString",
|
|
325
|
+
coordinates: []
|
|
326
|
+
};
|
|
327
|
+
break;
|
|
328
|
+
case 48:
|
|
329
|
+
this.$ = {
|
|
330
|
+
type: "MultiPolygon",
|
|
331
|
+
coordinates: i[s - 1].toJSON()
|
|
332
|
+
};
|
|
333
|
+
break;
|
|
334
|
+
case 49:
|
|
335
|
+
this.$ = {
|
|
336
|
+
type: "MultiPolygon",
|
|
337
|
+
coordinates: i[s - 1].toJSON(),
|
|
338
|
+
properties: {
|
|
339
|
+
z: !0
|
|
340
|
+
}
|
|
341
|
+
};
|
|
342
|
+
break;
|
|
343
|
+
case 50:
|
|
344
|
+
this.$ = {
|
|
345
|
+
type: "MultiPolygon",
|
|
346
|
+
coordinates: i[s - 1].toJSON(),
|
|
347
|
+
properties: {
|
|
348
|
+
m: !0
|
|
349
|
+
}
|
|
350
|
+
};
|
|
351
|
+
break;
|
|
352
|
+
case 51:
|
|
353
|
+
this.$ = {
|
|
354
|
+
type: "MultiPolygon",
|
|
355
|
+
coordinates: i[s - 1].toJSON(),
|
|
356
|
+
properties: {
|
|
357
|
+
z: !0,
|
|
358
|
+
m: !0
|
|
359
|
+
}
|
|
360
|
+
};
|
|
361
|
+
break;
|
|
362
|
+
case 52:
|
|
363
|
+
this.$ = {
|
|
364
|
+
type: "MultiPolygon",
|
|
365
|
+
coordinates: []
|
|
366
|
+
};
|
|
367
|
+
break;
|
|
368
|
+
case 60:
|
|
369
|
+
this.$ = i[s - 2].addGeometry(i[s]);
|
|
370
|
+
break;
|
|
371
|
+
case 61:
|
|
372
|
+
this.$ = new F(i[s]);
|
|
373
|
+
break;
|
|
374
|
+
case 62:
|
|
375
|
+
this.$ = {
|
|
376
|
+
type: "GeometryCollection",
|
|
377
|
+
geometries: i[s - 1].toJSON()
|
|
378
|
+
};
|
|
379
|
+
break;
|
|
380
|
+
case 63:
|
|
381
|
+
this.$ = {
|
|
382
|
+
type: "GeometryCollection",
|
|
383
|
+
geometries: i[s - 1].toJSON(),
|
|
384
|
+
properties: {
|
|
385
|
+
z: !0
|
|
386
|
+
}
|
|
387
|
+
};
|
|
388
|
+
break;
|
|
389
|
+
case 64:
|
|
390
|
+
this.$ = {
|
|
391
|
+
type: "GeometryCollection",
|
|
392
|
+
geometries: i[s - 1].toJSON(),
|
|
393
|
+
properties: {
|
|
394
|
+
m: !0
|
|
395
|
+
}
|
|
396
|
+
};
|
|
397
|
+
break;
|
|
398
|
+
case 65:
|
|
399
|
+
this.$ = {
|
|
400
|
+
type: "GeometryCollection",
|
|
401
|
+
geometries: i[s - 1].toJSON(),
|
|
402
|
+
properties: {
|
|
403
|
+
z: !0,
|
|
404
|
+
m: !0
|
|
405
|
+
}
|
|
406
|
+
};
|
|
407
|
+
break;
|
|
408
|
+
case 66:
|
|
409
|
+
this.$ = {
|
|
410
|
+
type: "GeometryCollection",
|
|
411
|
+
geometries: []
|
|
412
|
+
};
|
|
413
|
+
break;
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
table: [{
|
|
417
|
+
3: 1,
|
|
418
|
+
4: 2,
|
|
419
|
+
6: 3,
|
|
420
|
+
7: 4,
|
|
421
|
+
8: 5,
|
|
422
|
+
9: 6,
|
|
423
|
+
10: 7,
|
|
424
|
+
11: 8,
|
|
425
|
+
20: v,
|
|
426
|
+
29: N,
|
|
427
|
+
30: M,
|
|
428
|
+
31: L,
|
|
429
|
+
32: I,
|
|
430
|
+
33: E,
|
|
431
|
+
36: x
|
|
432
|
+
}, {
|
|
433
|
+
1: [3]
|
|
434
|
+
}, {
|
|
435
|
+
5: [1, 16]
|
|
436
|
+
}, {
|
|
437
|
+
5: [1, 17]
|
|
438
|
+
}, {
|
|
439
|
+
5: [1, 18]
|
|
440
|
+
}, {
|
|
441
|
+
5: [1, 19]
|
|
442
|
+
}, {
|
|
443
|
+
5: [1, 20]
|
|
444
|
+
}, {
|
|
445
|
+
5: [1, 21]
|
|
446
|
+
}, {
|
|
447
|
+
5: [1, 22]
|
|
448
|
+
}, {
|
|
449
|
+
18: [1, 23],
|
|
450
|
+
21: [1, 24],
|
|
451
|
+
22: [1, 25],
|
|
452
|
+
23: [1, 26],
|
|
453
|
+
24: [1, 27]
|
|
454
|
+
}, {
|
|
455
|
+
18: [1, 28],
|
|
456
|
+
21: [1, 29],
|
|
457
|
+
22: [1, 31],
|
|
458
|
+
23: [1, 30],
|
|
459
|
+
24: [1, 32]
|
|
460
|
+
}, {
|
|
461
|
+
18: [1, 33],
|
|
462
|
+
21: [1, 34],
|
|
463
|
+
22: [1, 36],
|
|
464
|
+
23: [1, 35],
|
|
465
|
+
24: [1, 37]
|
|
466
|
+
}, {
|
|
467
|
+
18: [1, 38],
|
|
468
|
+
21: [1, 39],
|
|
469
|
+
22: [1, 41],
|
|
470
|
+
23: [1, 40],
|
|
471
|
+
24: [1, 42]
|
|
472
|
+
}, {
|
|
473
|
+
18: [1, 43],
|
|
474
|
+
21: [1, 44],
|
|
475
|
+
22: [1, 46],
|
|
476
|
+
23: [1, 45],
|
|
477
|
+
24: [1, 47]
|
|
478
|
+
}, {
|
|
479
|
+
18: [1, 48],
|
|
480
|
+
21: [1, 49],
|
|
481
|
+
22: [1, 51],
|
|
482
|
+
23: [1, 50],
|
|
483
|
+
24: [1, 52]
|
|
484
|
+
}, {
|
|
485
|
+
18: [1, 53],
|
|
486
|
+
21: [1, 54],
|
|
487
|
+
22: [1, 56],
|
|
488
|
+
23: [1, 55],
|
|
489
|
+
24: [1, 57]
|
|
490
|
+
}, {
|
|
491
|
+
1: [2, 1]
|
|
492
|
+
}, {
|
|
493
|
+
1: [2, 2]
|
|
494
|
+
}, {
|
|
495
|
+
1: [2, 3]
|
|
496
|
+
}, {
|
|
497
|
+
1: [2, 4]
|
|
498
|
+
}, {
|
|
499
|
+
1: [2, 5]
|
|
500
|
+
}, {
|
|
501
|
+
1: [2, 6]
|
|
502
|
+
}, {
|
|
503
|
+
1: [2, 7]
|
|
504
|
+
}, {
|
|
505
|
+
12: 59,
|
|
506
|
+
13: p,
|
|
507
|
+
14: 58
|
|
508
|
+
}, {
|
|
509
|
+
18: [1, 61]
|
|
510
|
+
}, {
|
|
511
|
+
18: [1, 62]
|
|
512
|
+
}, {
|
|
513
|
+
18: [1, 63]
|
|
514
|
+
}, n(c, [2, 20]), {
|
|
515
|
+
12: 66,
|
|
516
|
+
13: p,
|
|
517
|
+
18: b,
|
|
518
|
+
25: 65,
|
|
519
|
+
28: 64
|
|
520
|
+
}, {
|
|
521
|
+
18: [1, 68]
|
|
522
|
+
}, {
|
|
523
|
+
18: [1, 69]
|
|
524
|
+
}, {
|
|
525
|
+
18: [1, 70]
|
|
526
|
+
}, n(c, [2, 32]), {
|
|
527
|
+
16: 71,
|
|
528
|
+
17: 72,
|
|
529
|
+
18: g
|
|
530
|
+
}, {
|
|
531
|
+
18: [1, 74]
|
|
532
|
+
}, {
|
|
533
|
+
18: [1, 75]
|
|
534
|
+
}, {
|
|
535
|
+
18: [1, 76]
|
|
536
|
+
}, n(c, [2, 37]), {
|
|
537
|
+
12: 66,
|
|
538
|
+
13: p,
|
|
539
|
+
18: b,
|
|
540
|
+
25: 65,
|
|
541
|
+
28: 77
|
|
542
|
+
}, {
|
|
543
|
+
18: [1, 78]
|
|
544
|
+
}, {
|
|
545
|
+
18: [1, 79]
|
|
546
|
+
}, {
|
|
547
|
+
18: [1, 80]
|
|
548
|
+
}, n(c, [2, 42]), {
|
|
549
|
+
16: 81,
|
|
550
|
+
17: 72,
|
|
551
|
+
18: g
|
|
552
|
+
}, {
|
|
553
|
+
18: [1, 82]
|
|
554
|
+
}, {
|
|
555
|
+
18: [1, 83]
|
|
556
|
+
}, {
|
|
557
|
+
18: [1, 84]
|
|
558
|
+
}, n(c, [2, 47]), {
|
|
559
|
+
18: w,
|
|
560
|
+
26: 85,
|
|
561
|
+
27: 86
|
|
562
|
+
}, {
|
|
563
|
+
18: [1, 88]
|
|
564
|
+
}, {
|
|
565
|
+
18: [1, 89]
|
|
566
|
+
}, {
|
|
567
|
+
18: [1, 90]
|
|
568
|
+
}, n(c, [2, 52]), {
|
|
569
|
+
4: 93,
|
|
570
|
+
6: 94,
|
|
571
|
+
7: 95,
|
|
572
|
+
8: 96,
|
|
573
|
+
9: 97,
|
|
574
|
+
10: 98,
|
|
575
|
+
11: 99,
|
|
576
|
+
20: v,
|
|
577
|
+
29: N,
|
|
578
|
+
30: M,
|
|
579
|
+
31: L,
|
|
580
|
+
32: I,
|
|
581
|
+
33: E,
|
|
582
|
+
34: 92,
|
|
583
|
+
35: 91,
|
|
584
|
+
36: x
|
|
585
|
+
}, {
|
|
586
|
+
18: [1, 100]
|
|
587
|
+
}, {
|
|
588
|
+
18: [1, 101]
|
|
589
|
+
}, {
|
|
590
|
+
18: [1, 102]
|
|
591
|
+
}, n(c, [2, 66]), {
|
|
592
|
+
15: G,
|
|
593
|
+
19: [1, 103]
|
|
594
|
+
}, n(h, [2, 12]), {
|
|
595
|
+
13: [1, 105]
|
|
596
|
+
}, {
|
|
597
|
+
12: 59,
|
|
598
|
+
13: p,
|
|
599
|
+
14: 106
|
|
600
|
+
}, {
|
|
601
|
+
12: 59,
|
|
602
|
+
13: p,
|
|
603
|
+
14: 107
|
|
604
|
+
}, {
|
|
605
|
+
12: 59,
|
|
606
|
+
13: p,
|
|
607
|
+
14: 108
|
|
608
|
+
}, {
|
|
609
|
+
15: _,
|
|
610
|
+
19: [1, 109]
|
|
611
|
+
}, n(h, [2, 27]), n(h, [2, 21]), {
|
|
612
|
+
12: 111,
|
|
613
|
+
13: p
|
|
614
|
+
}, {
|
|
615
|
+
12: 66,
|
|
616
|
+
13: p,
|
|
617
|
+
18: b,
|
|
618
|
+
25: 65,
|
|
619
|
+
28: 112
|
|
620
|
+
}, {
|
|
621
|
+
12: 66,
|
|
622
|
+
13: p,
|
|
623
|
+
18: b,
|
|
624
|
+
25: 65,
|
|
625
|
+
28: 113
|
|
626
|
+
}, {
|
|
627
|
+
12: 66,
|
|
628
|
+
13: p,
|
|
629
|
+
18: b,
|
|
630
|
+
25: 65,
|
|
631
|
+
28: 114
|
|
632
|
+
}, {
|
|
633
|
+
15: k,
|
|
634
|
+
19: [1, 115]
|
|
635
|
+
}, n(h, [2, 14]), {
|
|
636
|
+
12: 59,
|
|
637
|
+
13: p,
|
|
638
|
+
14: 117
|
|
639
|
+
}, {
|
|
640
|
+
16: 118,
|
|
641
|
+
17: 72,
|
|
642
|
+
18: g
|
|
643
|
+
}, {
|
|
644
|
+
16: 119,
|
|
645
|
+
17: 72,
|
|
646
|
+
18: g
|
|
647
|
+
}, {
|
|
648
|
+
16: 120,
|
|
649
|
+
17: 72,
|
|
650
|
+
18: g
|
|
651
|
+
}, {
|
|
652
|
+
15: _,
|
|
653
|
+
19: [1, 121]
|
|
654
|
+
}, {
|
|
655
|
+
12: 66,
|
|
656
|
+
13: p,
|
|
657
|
+
18: b,
|
|
658
|
+
25: 65,
|
|
659
|
+
28: 122
|
|
660
|
+
}, {
|
|
661
|
+
12: 66,
|
|
662
|
+
13: p,
|
|
663
|
+
18: b,
|
|
664
|
+
25: 65,
|
|
665
|
+
28: 123
|
|
666
|
+
}, {
|
|
667
|
+
12: 66,
|
|
668
|
+
13: p,
|
|
669
|
+
18: b,
|
|
670
|
+
25: 65,
|
|
671
|
+
28: 124
|
|
672
|
+
}, {
|
|
673
|
+
15: k,
|
|
674
|
+
19: [1, 125]
|
|
675
|
+
}, {
|
|
676
|
+
16: 126,
|
|
677
|
+
17: 72,
|
|
678
|
+
18: g
|
|
679
|
+
}, {
|
|
680
|
+
16: 127,
|
|
681
|
+
17: 72,
|
|
682
|
+
18: g
|
|
683
|
+
}, {
|
|
684
|
+
16: 128,
|
|
685
|
+
17: 72,
|
|
686
|
+
18: g
|
|
687
|
+
}, {
|
|
688
|
+
15: V,
|
|
689
|
+
19: [1, 129]
|
|
690
|
+
}, n(h, [2, 24]), {
|
|
691
|
+
16: 131,
|
|
692
|
+
17: 72,
|
|
693
|
+
18: g
|
|
694
|
+
}, {
|
|
695
|
+
18: w,
|
|
696
|
+
26: 132,
|
|
697
|
+
27: 86
|
|
698
|
+
}, {
|
|
699
|
+
18: w,
|
|
700
|
+
26: 133,
|
|
701
|
+
27: 86
|
|
702
|
+
}, {
|
|
703
|
+
18: w,
|
|
704
|
+
26: 134,
|
|
705
|
+
27: 86
|
|
706
|
+
}, {
|
|
707
|
+
15: U,
|
|
708
|
+
19: [1, 135]
|
|
709
|
+
}, n(h, [2, 61]), n(h, [2, 53]), n(h, [2, 54]), n(h, [2, 55]), n(h, [2, 56]), n(h, [2, 57]), n(h, [2, 58]), n(h, [2, 59]), {
|
|
710
|
+
4: 93,
|
|
711
|
+
6: 94,
|
|
712
|
+
7: 95,
|
|
713
|
+
8: 96,
|
|
714
|
+
9: 97,
|
|
715
|
+
10: 98,
|
|
716
|
+
11: 99,
|
|
717
|
+
20: v,
|
|
718
|
+
29: N,
|
|
719
|
+
30: M,
|
|
720
|
+
31: L,
|
|
721
|
+
32: I,
|
|
722
|
+
33: E,
|
|
723
|
+
34: 92,
|
|
724
|
+
35: 137,
|
|
725
|
+
36: x
|
|
726
|
+
}, {
|
|
727
|
+
4: 93,
|
|
728
|
+
6: 94,
|
|
729
|
+
7: 95,
|
|
730
|
+
8: 96,
|
|
731
|
+
9: 97,
|
|
732
|
+
10: 98,
|
|
733
|
+
11: 99,
|
|
734
|
+
20: v,
|
|
735
|
+
29: N,
|
|
736
|
+
30: M,
|
|
737
|
+
31: L,
|
|
738
|
+
32: I,
|
|
739
|
+
33: E,
|
|
740
|
+
34: 92,
|
|
741
|
+
35: 138,
|
|
742
|
+
36: x
|
|
743
|
+
}, {
|
|
744
|
+
4: 93,
|
|
745
|
+
6: 94,
|
|
746
|
+
7: 95,
|
|
747
|
+
8: 96,
|
|
748
|
+
9: 97,
|
|
749
|
+
10: 98,
|
|
750
|
+
11: 99,
|
|
751
|
+
20: v,
|
|
752
|
+
29: N,
|
|
753
|
+
30: M,
|
|
754
|
+
31: L,
|
|
755
|
+
32: I,
|
|
756
|
+
33: E,
|
|
757
|
+
34: 92,
|
|
758
|
+
35: 139,
|
|
759
|
+
36: x
|
|
760
|
+
}, n(c, [2, 16]), {
|
|
761
|
+
12: 140,
|
|
762
|
+
13: p
|
|
763
|
+
}, n(h, [2, 8], {
|
|
764
|
+
13: [1, 141]
|
|
765
|
+
}), {
|
|
766
|
+
15: G,
|
|
767
|
+
19: [1, 142]
|
|
768
|
+
}, {
|
|
769
|
+
15: G,
|
|
770
|
+
19: [1, 143]
|
|
771
|
+
}, {
|
|
772
|
+
15: G,
|
|
773
|
+
19: [1, 144]
|
|
774
|
+
}, n(c, [2, 28]), {
|
|
775
|
+
12: 66,
|
|
776
|
+
13: p,
|
|
777
|
+
18: b,
|
|
778
|
+
25: 145
|
|
779
|
+
}, {
|
|
780
|
+
19: [1, 146]
|
|
781
|
+
}, {
|
|
782
|
+
15: _,
|
|
783
|
+
19: [1, 147]
|
|
784
|
+
}, {
|
|
785
|
+
15: _,
|
|
786
|
+
19: [1, 148]
|
|
787
|
+
}, {
|
|
788
|
+
15: _,
|
|
789
|
+
19: [1, 149]
|
|
790
|
+
}, n(c, [2, 33]), {
|
|
791
|
+
17: 150,
|
|
792
|
+
18: g
|
|
793
|
+
}, {
|
|
794
|
+
15: G,
|
|
795
|
+
19: [1, 151]
|
|
796
|
+
}, {
|
|
797
|
+
15: k,
|
|
798
|
+
19: [1, 152]
|
|
799
|
+
}, {
|
|
800
|
+
15: k,
|
|
801
|
+
19: [1, 153]
|
|
802
|
+
}, {
|
|
803
|
+
15: k,
|
|
804
|
+
19: [1, 154]
|
|
805
|
+
}, n(c, [2, 38]), {
|
|
806
|
+
15: _,
|
|
807
|
+
19: [1, 155]
|
|
808
|
+
}, {
|
|
809
|
+
15: _,
|
|
810
|
+
19: [1, 156]
|
|
811
|
+
}, {
|
|
812
|
+
15: _,
|
|
813
|
+
19: [1, 157]
|
|
814
|
+
}, n(c, [2, 43]), {
|
|
815
|
+
15: k,
|
|
816
|
+
19: [1, 158]
|
|
817
|
+
}, {
|
|
818
|
+
15: k,
|
|
819
|
+
19: [1, 159]
|
|
820
|
+
}, {
|
|
821
|
+
15: k,
|
|
822
|
+
19: [1, 160]
|
|
823
|
+
}, n(c, [2, 48]), {
|
|
824
|
+
18: w,
|
|
825
|
+
27: 161
|
|
826
|
+
}, {
|
|
827
|
+
15: k,
|
|
828
|
+
19: [1, 162]
|
|
829
|
+
}, {
|
|
830
|
+
15: V,
|
|
831
|
+
19: [1, 163]
|
|
832
|
+
}, {
|
|
833
|
+
15: V,
|
|
834
|
+
19: [1, 164]
|
|
835
|
+
}, {
|
|
836
|
+
15: V,
|
|
837
|
+
19: [1, 165]
|
|
838
|
+
}, n(c, [2, 62]), {
|
|
839
|
+
4: 93,
|
|
840
|
+
6: 94,
|
|
841
|
+
7: 95,
|
|
842
|
+
8: 96,
|
|
843
|
+
9: 97,
|
|
844
|
+
10: 98,
|
|
845
|
+
11: 99,
|
|
846
|
+
20: v,
|
|
847
|
+
29: N,
|
|
848
|
+
30: M,
|
|
849
|
+
31: L,
|
|
850
|
+
32: I,
|
|
851
|
+
33: E,
|
|
852
|
+
34: 166,
|
|
853
|
+
36: x
|
|
854
|
+
}, {
|
|
855
|
+
15: U,
|
|
856
|
+
19: [1, 167]
|
|
857
|
+
}, {
|
|
858
|
+
15: U,
|
|
859
|
+
19: [1, 168]
|
|
860
|
+
}, {
|
|
861
|
+
15: U,
|
|
862
|
+
19: [1, 169]
|
|
863
|
+
}, n(h, [2, 11]), n(h, [2, 9], {
|
|
864
|
+
13: [1, 170]
|
|
865
|
+
}), n(c, [2, 17]), n(c, [2, 18]), n(c, [2, 19]), n(h, [2, 26]), n(h, [2, 22]), n(c, [2, 29]), n(c, [2, 30]), n(c, [2, 31]), n(h, [2, 13]), n(h, [2, 15]), n(c, [2, 34]), n(c, [2, 35]), n(c, [2, 36]), n(c, [2, 39]), n(c, [2, 40]), n(c, [2, 41]), n(c, [2, 44]), n(c, [2, 45]), n(c, [2, 46]), n(h, [2, 23]), n(h, [2, 25]), n(c, [2, 49]), n(c, [2, 50]), n(c, [2, 51]), n(h, [2, 60]), n(c, [2, 63]), n(c, [2, 64]), n(c, [2, 65]), n(h, [2, 10])],
|
|
866
|
+
defaultActions: {
|
|
867
|
+
16: [2, 1],
|
|
868
|
+
17: [2, 2],
|
|
869
|
+
18: [2, 3],
|
|
870
|
+
19: [2, 4],
|
|
871
|
+
20: [2, 5],
|
|
872
|
+
21: [2, 6],
|
|
873
|
+
22: [2, 7]
|
|
874
|
+
},
|
|
875
|
+
parseError: function(e, t) {
|
|
876
|
+
if (t.recoverable)
|
|
877
|
+
this.trace(e);
|
|
878
|
+
else {
|
|
879
|
+
var r = new Error(e);
|
|
880
|
+
throw r.hash = t, r;
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
parse: function(e) {
|
|
884
|
+
var t = this, r = [0], o = [null], l = [], i = this.table, y = "", s = 0, B = 0, j = 2, q = 1, tt = l.slice.call(arguments, 1), u = Object.create(this.lexer), T = {
|
|
885
|
+
yy: {}
|
|
886
|
+
};
|
|
887
|
+
for (var Z in this.yy)
|
|
888
|
+
Object.prototype.hasOwnProperty.call(this.yy, Z) && (T.yy[Z] = this.yy[Z]);
|
|
889
|
+
u.setInput(e, T.yy), T.yy.lexer = u, T.yy.parser = this, typeof u.yylloc > "u" && (u.yylloc = {});
|
|
890
|
+
var z = u.yylloc;
|
|
891
|
+
l.push(z);
|
|
892
|
+
var et = u.options && u.options.ranges;
|
|
893
|
+
typeof T.yy.parseError == "function" ? this.parseError = T.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
|
|
894
|
+
for (var it = function() {
|
|
895
|
+
var O;
|
|
896
|
+
return O = u.lex() || q, typeof O != "number" && (O = t.symbols_[O] || O), O;
|
|
897
|
+
}, f, P, d, C, S = {}, $, m, H, A; ; ) {
|
|
898
|
+
if (P = r[r.length - 1], this.defaultActions[P] ? d = this.defaultActions[P] : ((f === null || typeof f > "u") && (f = it()), d = i[P] && i[P][f]), typeof d > "u" || !d.length || !d[0]) {
|
|
899
|
+
var K = "";
|
|
900
|
+
A = [];
|
|
901
|
+
for ($ in i[P])
|
|
902
|
+
this.terminals_[$] && $ > j && A.push("'" + this.terminals_[$] + "'");
|
|
903
|
+
u.showPosition ? K = "Parse error on line " + (s + 1) + `:
|
|
904
|
+
` + u.showPosition() + `
|
|
905
|
+
Expecting ` + A.join(", ") + ", got '" + (this.terminals_[f] || f) + "'" : K = "Parse error on line " + (s + 1) + ": Unexpected " + (f == q ? "end of input" : "'" + (this.terminals_[f] || f) + "'"), this.parseError(K, {
|
|
906
|
+
text: u.match,
|
|
907
|
+
token: this.terminals_[f] || f,
|
|
908
|
+
line: u.yylineno,
|
|
909
|
+
loc: z,
|
|
910
|
+
expected: A
|
|
911
|
+
});
|
|
912
|
+
}
|
|
913
|
+
if (d[0] instanceof Array && d.length > 1)
|
|
914
|
+
throw new Error("Parse Error: multiple actions possible at state: " + P + ", token: " + f);
|
|
915
|
+
switch (d[0]) {
|
|
916
|
+
case 1:
|
|
917
|
+
r.push(f), o.push(u.yytext), l.push(u.yylloc), r.push(d[1]), f = null, B = u.yyleng, y = u.yytext, s = u.yylineno, z = u.yylloc;
|
|
918
|
+
break;
|
|
919
|
+
case 2:
|
|
920
|
+
if (m = this.productions_[d[1]][1], S.$ = o[o.length - m], S._$ = {
|
|
921
|
+
first_line: l[l.length - (m || 1)].first_line,
|
|
922
|
+
last_line: l[l.length - 1].last_line,
|
|
923
|
+
first_column: l[l.length - (m || 1)].first_column,
|
|
924
|
+
last_column: l[l.length - 1].last_column
|
|
925
|
+
}, et && (S._$.range = [l[l.length - (m || 1)].range[0], l[l.length - 1].range[1]]), C = this.performAction.apply(S, [y, B, s, T.yy, d[1], o, l].concat(tt)), typeof C < "u")
|
|
926
|
+
return C;
|
|
927
|
+
m && (r = r.slice(0, -1 * m * 2), o = o.slice(0, -1 * m), l = l.slice(0, -1 * m)), r.push(this.productions_[d[1]][0]), o.push(S.$), l.push(S._$), H = i[r[r.length - 2]][r[r.length - 1]], r.push(H);
|
|
928
|
+
break;
|
|
929
|
+
case 3:
|
|
930
|
+
return !0;
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
return !0;
|
|
934
|
+
}
|
|
935
|
+
}, rt = function() {
|
|
936
|
+
var a = {
|
|
937
|
+
EOF: 1,
|
|
938
|
+
parseError: function(t, r) {
|
|
939
|
+
if (this.yy.parser)
|
|
940
|
+
this.yy.parser.parseError(t, r);
|
|
941
|
+
else
|
|
942
|
+
throw new Error(t);
|
|
943
|
+
},
|
|
944
|
+
// resets the lexer, sets new input
|
|
945
|
+
setInput: function(t, r) {
|
|
946
|
+
return this.yy = r || this.yy || {}, this._input = t, this._more = this._backtrack = this.done = !1, this.yylineno = this.yyleng = 0, this.yytext = this.matched = this.match = "", this.conditionStack = ["INITIAL"], this.yylloc = {
|
|
947
|
+
first_line: 1,
|
|
948
|
+
first_column: 0,
|
|
949
|
+
last_line: 1,
|
|
950
|
+
last_column: 0
|
|
951
|
+
}, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
|
|
952
|
+
},
|
|
953
|
+
// consumes and returns one char from the input
|
|
954
|
+
input: function() {
|
|
955
|
+
var t = this._input[0];
|
|
956
|
+
this.yytext += t, this.yyleng++, this.offset++, this.match += t, this.matched += t;
|
|
957
|
+
var r = t.match(/(?:\r\n?|\n).*/g);
|
|
958
|
+
return r ? (this.yylineno++, this.yylloc.last_line++) : this.yylloc.last_column++, this.options.ranges && this.yylloc.range[1]++, this._input = this._input.slice(1), t;
|
|
959
|
+
},
|
|
960
|
+
// unshifts one char (or a string) into the input
|
|
961
|
+
unput: function(t) {
|
|
962
|
+
var r = t.length, o = t.split(/(?:\r\n?|\n)/g);
|
|
963
|
+
this._input = t + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - r), this.offset -= r;
|
|
964
|
+
var l = this.match.split(/(?:\r\n?|\n)/g);
|
|
965
|
+
this.match = this.match.substr(0, this.match.length - 1), this.matched = this.matched.substr(0, this.matched.length - 1), o.length - 1 && (this.yylineno -= o.length - 1);
|
|
966
|
+
var i = this.yylloc.range;
|
|
967
|
+
return this.yylloc = {
|
|
968
|
+
first_line: this.yylloc.first_line,
|
|
969
|
+
last_line: this.yylineno + 1,
|
|
970
|
+
first_column: this.yylloc.first_column,
|
|
971
|
+
last_column: o ? (o.length === l.length ? this.yylloc.first_column : 0) + l[l.length - o.length].length - o[0].length : this.yylloc.first_column - r
|
|
972
|
+
}, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - r]), this.yyleng = this.yytext.length, this;
|
|
973
|
+
},
|
|
974
|
+
// When called from action, caches matched text and appends it on next action
|
|
975
|
+
more: function() {
|
|
976
|
+
return this._more = !0, this;
|
|
977
|
+
},
|
|
978
|
+
// When called from action, signals the lexer that this rule fails to match the input, so the next matching rule (regex) should be tested instead.
|
|
979
|
+
reject: function() {
|
|
980
|
+
if (this.options.backtrack_lexer)
|
|
981
|
+
this._backtrack = !0;
|
|
982
|
+
else
|
|
983
|
+
return this.parseError("Lexical error on line " + (this.yylineno + 1) + `. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).
|
|
984
|
+
` + this.showPosition(), {
|
|
985
|
+
text: "",
|
|
986
|
+
token: null,
|
|
987
|
+
line: this.yylineno
|
|
988
|
+
});
|
|
989
|
+
return this;
|
|
990
|
+
},
|
|
991
|
+
// retain first n characters of the match
|
|
992
|
+
less: function(t) {
|
|
993
|
+
this.unput(this.match.slice(t));
|
|
994
|
+
},
|
|
995
|
+
// displays already matched input, i.e. for error messages
|
|
996
|
+
pastInput: function() {
|
|
997
|
+
var t = this.matched.substr(0, this.matched.length - this.match.length);
|
|
998
|
+
return (t.length > 20 ? "..." : "") + t.substr(-20).replace(/\n/g, "");
|
|
999
|
+
},
|
|
1000
|
+
// displays upcoming input, i.e. for error messages
|
|
1001
|
+
upcomingInput: function() {
|
|
1002
|
+
var t = this.match;
|
|
1003
|
+
return t.length < 20 && (t += this._input.substr(0, 20 - t.length)), (t.substr(0, 20) + (t.length > 20 ? "..." : "")).replace(/\n/g, "");
|
|
1004
|
+
},
|
|
1005
|
+
// displays the character position where the lexing error occurred, i.e. for error messages
|
|
1006
|
+
showPosition: function() {
|
|
1007
|
+
var t = this.pastInput(), r = new Array(t.length + 1).join("-");
|
|
1008
|
+
return t + this.upcomingInput() + `
|
|
1009
|
+
` + r + "^";
|
|
1010
|
+
},
|
|
1011
|
+
// test the lexed token: return FALSE when not a match, otherwise return token
|
|
1012
|
+
test_match: function(t, r) {
|
|
1013
|
+
var o, l, i;
|
|
1014
|
+
if (this.options.backtrack_lexer && (i = {
|
|
1015
|
+
yylineno: this.yylineno,
|
|
1016
|
+
yylloc: {
|
|
1017
|
+
first_line: this.yylloc.first_line,
|
|
1018
|
+
last_line: this.last_line,
|
|
1019
|
+
first_column: this.yylloc.first_column,
|
|
1020
|
+
last_column: this.yylloc.last_column
|
|
1021
|
+
},
|
|
1022
|
+
yytext: this.yytext,
|
|
1023
|
+
match: this.match,
|
|
1024
|
+
matches: this.matches,
|
|
1025
|
+
matched: this.matched,
|
|
1026
|
+
yyleng: this.yyleng,
|
|
1027
|
+
offset: this.offset,
|
|
1028
|
+
_more: this._more,
|
|
1029
|
+
_input: this._input,
|
|
1030
|
+
yy: this.yy,
|
|
1031
|
+
conditionStack: this.conditionStack.slice(0),
|
|
1032
|
+
done: this.done
|
|
1033
|
+
}, this.options.ranges && (i.yylloc.range = this.yylloc.range.slice(0))), l = t[0].match(/(?:\r\n?|\n).*/g), l && (this.yylineno += l.length), this.yylloc = {
|
|
1034
|
+
first_line: this.yylloc.last_line,
|
|
1035
|
+
last_line: this.yylineno + 1,
|
|
1036
|
+
first_column: this.yylloc.last_column,
|
|
1037
|
+
last_column: l ? l[l.length - 1].length - l[l.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + t[0].length
|
|
1038
|
+
}, this.yytext += t[0], this.match += t[0], this.matches = t, this.yyleng = this.yytext.length, this.options.ranges && (this.yylloc.range = [this.offset, this.offset += this.yyleng]), this._more = !1, this._backtrack = !1, this._input = this._input.slice(t[0].length), this.matched += t[0], o = this.performAction.call(this, this.yy, this, r, this.conditionStack[this.conditionStack.length - 1]), this.done && this._input && (this.done = !1), o)
|
|
1039
|
+
return o;
|
|
1040
|
+
if (this._backtrack) {
|
|
1041
|
+
for (var y in i)
|
|
1042
|
+
this[y] = i[y];
|
|
1043
|
+
return !1;
|
|
1044
|
+
}
|
|
1045
|
+
return !1;
|
|
1046
|
+
},
|
|
1047
|
+
// return next match in input
|
|
1048
|
+
next: function() {
|
|
1049
|
+
if (this.done)
|
|
1050
|
+
return this.EOF;
|
|
1051
|
+
this._input || (this.done = !0);
|
|
1052
|
+
var t, r, o, l;
|
|
1053
|
+
this._more || (this.yytext = "", this.match = "");
|
|
1054
|
+
for (var i = this._currentRules(), y = 0; y < i.length; y++)
|
|
1055
|
+
if (o = this._input.match(this.rules[i[y]]), o && (!r || o[0].length > r[0].length)) {
|
|
1056
|
+
if (r = o, l = y, this.options.backtrack_lexer) {
|
|
1057
|
+
if (t = this.test_match(o, i[y]), t !== !1)
|
|
1058
|
+
return t;
|
|
1059
|
+
if (this._backtrack) {
|
|
1060
|
+
r = !1;
|
|
1061
|
+
continue;
|
|
1062
|
+
} else
|
|
1063
|
+
return !1;
|
|
1064
|
+
} else if (!this.options.flex)
|
|
1065
|
+
break;
|
|
1066
|
+
}
|
|
1067
|
+
return r ? (t = this.test_match(r, i[l]), t !== !1 ? t : !1) : this._input === "" ? this.EOF : this.parseError("Lexical error on line " + (this.yylineno + 1) + `. Unrecognized text.
|
|
1068
|
+
` + this.showPosition(), {
|
|
1069
|
+
text: "",
|
|
1070
|
+
token: null,
|
|
1071
|
+
line: this.yylineno
|
|
1072
|
+
});
|
|
1073
|
+
},
|
|
1074
|
+
// return next match that has a token
|
|
1075
|
+
lex: function() {
|
|
1076
|
+
var t = this.next();
|
|
1077
|
+
return t || this.lex();
|
|
1078
|
+
},
|
|
1079
|
+
// activates a new lexer condition state (pushes the new lexer condition state onto the condition stack)
|
|
1080
|
+
begin: function(t) {
|
|
1081
|
+
this.conditionStack.push(t);
|
|
1082
|
+
},
|
|
1083
|
+
// pop the previously active lexer condition state off the condition stack
|
|
1084
|
+
popState: function() {
|
|
1085
|
+
var t = this.conditionStack.length - 1;
|
|
1086
|
+
return t > 0 ? this.conditionStack.pop() : this.conditionStack[0];
|
|
1087
|
+
},
|
|
1088
|
+
// produce the lexer rule set which is active for the currently active lexer condition state
|
|
1089
|
+
_currentRules: function() {
|
|
1090
|
+
return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
|
|
1091
|
+
},
|
|
1092
|
+
// return the currently active lexer condition state; when an index argument is provided it produces the N-th previous condition state, if available
|
|
1093
|
+
topState: function(t) {
|
|
1094
|
+
return t = this.conditionStack.length - 1 - Math.abs(t || 0), t >= 0 ? this.conditionStack[t] : "INITIAL";
|
|
1095
|
+
},
|
|
1096
|
+
// alias for begin(condition)
|
|
1097
|
+
pushState: function(t) {
|
|
1098
|
+
this.begin(t);
|
|
1099
|
+
},
|
|
1100
|
+
// return the number of states currently on the stack
|
|
1101
|
+
stateStackSize: function() {
|
|
1102
|
+
return this.conditionStack.length;
|
|
1103
|
+
},
|
|
1104
|
+
options: {},
|
|
1105
|
+
performAction: function(t, r, o, l) {
|
|
1106
|
+
switch (o) {
|
|
1107
|
+
case 0:
|
|
1108
|
+
break;
|
|
1109
|
+
case 1:
|
|
1110
|
+
return 18;
|
|
1111
|
+
case 2:
|
|
1112
|
+
return 19;
|
|
1113
|
+
case 3:
|
|
1114
|
+
return 13;
|
|
1115
|
+
case 4:
|
|
1116
|
+
return 20;
|
|
1117
|
+
case 5:
|
|
1118
|
+
return 29;
|
|
1119
|
+
case 6:
|
|
1120
|
+
return 30;
|
|
1121
|
+
case 7:
|
|
1122
|
+
return 31;
|
|
1123
|
+
case 8:
|
|
1124
|
+
return 32;
|
|
1125
|
+
case 9:
|
|
1126
|
+
return 33;
|
|
1127
|
+
case 10:
|
|
1128
|
+
return 36;
|
|
1129
|
+
case 11:
|
|
1130
|
+
return 15;
|
|
1131
|
+
case 12:
|
|
1132
|
+
return 24;
|
|
1133
|
+
case 13:
|
|
1134
|
+
return 23;
|
|
1135
|
+
case 14:
|
|
1136
|
+
return 21;
|
|
1137
|
+
case 15:
|
|
1138
|
+
return 22;
|
|
1139
|
+
case 16:
|
|
1140
|
+
return 5;
|
|
1141
|
+
case 17:
|
|
1142
|
+
return "INVALID";
|
|
1143
|
+
}
|
|
1144
|
+
},
|
|
1145
|
+
rules: [/^(?:\s+)/, /^(?:\()/, /^(?:\))/, /^(?:-?[0-9]+(\.[0-9]+)?([eE][\-\+]?[0-9]+)?)/, /^(?:POINT\b)/, /^(?:LINESTRING\b)/, /^(?:POLYGON\b)/, /^(?:MULTIPOINT\b)/, /^(?:MULTILINESTRING\b)/, /^(?:MULTIPOLYGON\b)/, /^(?:GEOMETRYCOLLECTION\b)/, /^(?:,)/, /^(?:EMPTY\b)/, /^(?:M\b)/, /^(?:Z\b)/, /^(?:ZM\b)/, /^(?:$)/, /^(?:.)/],
|
|
1146
|
+
conditions: {
|
|
1147
|
+
INITIAL: {
|
|
1148
|
+
rules: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
|
|
1149
|
+
inclusive: !0
|
|
1150
|
+
}
|
|
1151
|
+
}
|
|
1152
|
+
};
|
|
1153
|
+
return a;
|
|
1154
|
+
}();
|
|
1155
|
+
J.lexer = rt;
|
|
1156
|
+
function Q() {
|
|
1157
|
+
this.yy = {};
|
|
1158
|
+
}
|
|
1159
|
+
Q.prototype = J;
|
|
1160
|
+
J.Parser = Q;
|
|
1161
|
+
J.yy.parseError = function(a) {
|
|
1162
|
+
throw a;
|
|
1163
|
+
};
|
|
1164
|
+
function R(a) {
|
|
1165
|
+
this.data = [a], this.type = "PointArray";
|
|
1166
|
+
}
|
|
1167
|
+
R.prototype.addPoint = function(a) {
|
|
1168
|
+
return a.type === "PointArray" ? this.data = this.data.concat(a.data) : this.data.push(a), this;
|
|
1169
|
+
};
|
|
1170
|
+
R.prototype.toJSON = function() {
|
|
1171
|
+
return this.data;
|
|
1172
|
+
};
|
|
1173
|
+
function X(a) {
|
|
1174
|
+
this.data = a, this.type = "Ring";
|
|
1175
|
+
}
|
|
1176
|
+
X.prototype.toJSON = function() {
|
|
1177
|
+
for (var a = [], e = 0; e < this.data.data.length; e++)
|
|
1178
|
+
a.push(this.data.data[e]);
|
|
1179
|
+
return a;
|
|
1180
|
+
};
|
|
1181
|
+
function W(a) {
|
|
1182
|
+
this.data = [a], this.type = "RingList";
|
|
1183
|
+
}
|
|
1184
|
+
W.prototype.addRing = function(a) {
|
|
1185
|
+
return this.data.push(a), this;
|
|
1186
|
+
};
|
|
1187
|
+
W.prototype.toJSON = function() {
|
|
1188
|
+
for (var a = [], e = 0; e < this.data.length; e++)
|
|
1189
|
+
a.push(this.data[e].toJSON());
|
|
1190
|
+
return a.length === 1, a;
|
|
1191
|
+
};
|
|
1192
|
+
function F(a) {
|
|
1193
|
+
this.data = [a], this.type = "GeometryList";
|
|
1194
|
+
}
|
|
1195
|
+
F.prototype.addGeometry = function(a) {
|
|
1196
|
+
return this.data.push(a), this;
|
|
1197
|
+
};
|
|
1198
|
+
F.prototype.toJSON = function() {
|
|
1199
|
+
return this.data;
|
|
1200
|
+
};
|
|
1201
|
+
function D(a) {
|
|
1202
|
+
this.data = [a], this.type = "PolygonList";
|
|
1203
|
+
}
|
|
1204
|
+
D.prototype.addPolygon = function(a) {
|
|
1205
|
+
return this.data.push(a), this;
|
|
1206
|
+
};
|
|
1207
|
+
D.prototype.toJSON = function() {
|
|
1208
|
+
for (var a = [], e = 0; e < this.data.length; e++)
|
|
1209
|
+
a = a.concat([this.data[e].toJSON()]);
|
|
1210
|
+
return a;
|
|
1211
|
+
};
|
|
1212
|
+
var ut = function(e) {
|
|
1213
|
+
var t;
|
|
1214
|
+
try {
|
|
1215
|
+
t = J.parse(e);
|
|
1216
|
+
} catch (r) {
|
|
1217
|
+
throw Error("Unable to parse: " + r);
|
|
1218
|
+
}
|
|
1219
|
+
return t;
|
|
1220
|
+
}, Y = function(e) {
|
|
1221
|
+
for (var t = [], r = "", o = 0; o < e.length; o++)
|
|
1222
|
+
t.push(e[o].join(" "));
|
|
1223
|
+
return r += "(" + t.join(", ") + ")", r;
|
|
1224
|
+
}, nt = function(e) {
|
|
1225
|
+
var t = "POINT ";
|
|
1226
|
+
return e.coordinates === void 0 || e.coordinates.length === 0 ? (t += "EMPTY", t) : (e.coordinates.length === 3 ? e.properties && e.properties.m === !0 ? t += "M " : t += "Z " : e.coordinates.length === 4 && (t += "ZM "), t += "(" + e.coordinates.join(" ") + ")", t);
|
|
1227
|
+
}, st = function(e) {
|
|
1228
|
+
var t = "LINESTRING ";
|
|
1229
|
+
return e.coordinates === void 0 || e.coordinates.length === 0 || e.coordinates[0].length === 0 ? (t += "EMPTY", t) : (e.coordinates[0].length === 3 ? e.properties && e.properties.m === !0 ? t += "M " : t += "Z " : e.coordinates[0].length === 4 && (t += "ZM "), t += Y(e.coordinates), t);
|
|
1230
|
+
}, ot = function(e) {
|
|
1231
|
+
var t = "POLYGON ";
|
|
1232
|
+
if (e.coordinates === void 0 || e.coordinates.length === 0 || e.coordinates[0].length === 0)
|
|
1233
|
+
return t += "EMPTY", t;
|
|
1234
|
+
e.coordinates[0][0].length === 3 ? e.properties && e.properties.m === !0 ? t += "M " : t += "Z " : e.coordinates[0][0].length === 4 && (t += "ZM "), t += "(";
|
|
1235
|
+
for (var r = [], o = 0; o < e.coordinates.length; o++)
|
|
1236
|
+
r.push(Y(e.coordinates[o]));
|
|
1237
|
+
return t += r.join(", "), t += ")", t;
|
|
1238
|
+
}, at = function(e) {
|
|
1239
|
+
var t = "MULTIPOINT ";
|
|
1240
|
+
return e.coordinates === void 0 || e.coordinates.length === 0 || e.coordinates[0].length === 0 ? (t += "EMPTY", t) : (e.coordinates[0].length === 3 ? e.properties && e.properties.m === !0 ? t += "M " : t += "Z " : e.coordinates[0].length === 4 && (t += "ZM "), t += Y(e.coordinates), t);
|
|
1241
|
+
}, lt = function(e) {
|
|
1242
|
+
var t = "MULTILINESTRING ";
|
|
1243
|
+
if (e.coordinates === void 0 || e.coordinates.length === 0 || e.coordinates[0].length === 0)
|
|
1244
|
+
return t += "EMPTY", t;
|
|
1245
|
+
e.coordinates[0][0].length === 3 ? e.properties && e.properties.m === !0 ? t += "M " : t += "Z " : e.coordinates[0][0].length === 4 && (t += "ZM "), t += "(";
|
|
1246
|
+
for (var r = [], o = 0; o < e.coordinates.length; o++)
|
|
1247
|
+
r.push(Y(e.coordinates[o]));
|
|
1248
|
+
return t += r.join(", "), t += ")", t;
|
|
1249
|
+
}, ct = function(e) {
|
|
1250
|
+
var t = "MULTIPOLYGON ";
|
|
1251
|
+
if (e.coordinates === void 0 || e.coordinates.length === 0 || e.coordinates[0].length === 0)
|
|
1252
|
+
return t += "EMPTY", t;
|
|
1253
|
+
e.coordinates[0][0][0].length === 3 ? e.properties && e.properties.m === !0 ? t += "M " : t += "Z " : e.coordinates[0][0][0].length === 4 && (t += "ZM "), t += "(";
|
|
1254
|
+
for (var r = [], o = 0; o < e.coordinates.length; o++) {
|
|
1255
|
+
for (var l = "(", i = [], y = 0; y < e.coordinates[o].length; y++)
|
|
1256
|
+
i.push(Y(e.coordinates[o][y]));
|
|
1257
|
+
l += i.join(", "), l += ")", r.push(l);
|
|
1258
|
+
}
|
|
1259
|
+
return t += r.join(", "), t += ")", t;
|
|
1260
|
+
}, yt = function a(e) {
|
|
1261
|
+
switch (e.type) {
|
|
1262
|
+
case "Point":
|
|
1263
|
+
return nt(e);
|
|
1264
|
+
case "LineString":
|
|
1265
|
+
return st(e);
|
|
1266
|
+
case "Polygon":
|
|
1267
|
+
return ot(e);
|
|
1268
|
+
case "MultiPoint":
|
|
1269
|
+
return at(e);
|
|
1270
|
+
case "MultiLineString":
|
|
1271
|
+
return lt(e);
|
|
1272
|
+
case "MultiPolygon":
|
|
1273
|
+
return ct(e);
|
|
1274
|
+
case "GeometryCollection":
|
|
1275
|
+
for (var t = "GEOMETRYCOLLECTION", r = [], o = 0; o < e.geometries.length; o++)
|
|
1276
|
+
r.push(a(e.geometries[o]));
|
|
1277
|
+
return t + "(" + r.join(", ") + ")";
|
|
1278
|
+
default:
|
|
1279
|
+
throw Error("Unknown Type: " + e.type);
|
|
1280
|
+
}
|
|
1281
|
+
};
|
|
1282
|
+
export {
|
|
1283
|
+
Q as Parser,
|
|
1284
|
+
yt as geojsonToWKT,
|
|
1285
|
+
J as parser,
|
|
1286
|
+
ut as wktToGeoJSON
|
|
1287
|
+
};
|