rayshon-cesium-expander 1.17.0 → 1.17.1

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/index.ts +0 -278
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "rayshon-cesium-expander",
3
- "version": "1.17.0",
3
+ "version": "1.17.1",
4
4
  "description": "> TODO: description",
5
5
  "author": "rayshon<RayshonFrontend@136.com>",
6
6
  "homepage": "",
7
7
  "license": "ISC",
8
- "main": "src/index.ts",
9
- "module": "src/index.ts",
8
+ "main": "lib/index.js",
9
+ "module": "lib/index.js",
10
10
  "directories": {
11
11
  "lib": "lib",
12
12
  "test": "__tests__",
package/src/index.ts DELETED
@@ -1,278 +0,0 @@
1
- import Viewer from './Widgets/Viewer';
2
- import Timeline from './Widgets/Timeline';
3
- import NewTimeline from './Widgets/NewTimeline';
4
- import trigger from './common/trigger';
5
- import newTrigger from './common/NewTrigger';
6
-
7
- // plugins
8
- import CameraPlugin from './Plugins/camera.plugin';
9
- import TilePlugin from './Plugins/tile.plugin';
10
- import CursorPlugin from './Plugins/cursor.plugin';
11
- import GlobalCesiumMouseHandler from './Plugins/GlobalCesiumMouseHandler.plugin';
12
- import { BoundaryPlugin } from './Plugins';
13
- import RangingPlugin from './Plugins/ranging.plugin';
14
- import RangingPlugin2D from './Plugins/ranging2d.plugin';
15
- import MouseValuePlugin from './Plugins/mouseValue.plugin';
16
- import ProductBox from './Plugins/productBox.plugin';
17
-
18
- // primitives
19
- import CustomProfile from './Primitives/CustomProfile';
20
- import Profile from './Primitives/Profile';
21
- import SingleRadarPrimitive from './Primitives/SingleRadarPrimitive';
22
- import SingleRadarElevationPrimitive from './Primitives/SingleRadarElevationPrimitive';
23
- import SingleRadarServicePrimitive from './Primitives/SingleRadarServicePrimitive';
24
- import LayerPNG from './Primitives/LayerPNG';
25
- import CompressPNG from './Primitives/CompressPNG';
26
- import Compress2DPre from './Primitives/Compress2DPre';
27
- import LayerXYPNG from './Primitives/LayerXYPNG';
28
- import DrainageBasin from './Primitives/DrainageBasin';
29
- import GeoJson from './Primitives/GeoJson';
30
- import FlowLine from './Primitives/FlowLine';
31
- import IsoModel from './Primitives/IsoModel';
32
- import NewIsoModel from './Primitives/NewIsoModel';
33
- import StormIdentify from './Primitives/StormIdentify';
34
- import StormTrack from './Primitives/StormTrack';
35
- import StormForecast from './Primitives/StormForecast';
36
- import Wind from './Primitives/Wind';
37
- import WindLayer from './Primitives/WindLayer';
38
- import StationLabel from './Primitives/StationLabel';
39
- import StationShaft from './Primitives/StationShaft';
40
- import StationPoint from './Primitives/StationPoint';
41
- import StationText from './Primitives/StationText';
42
- import StationPointNowcast from './Primitives/StationPointNowcast';
43
- import StationPointHollow from './Primitives/StationPointHollow';
44
- import MarkPoint from './Primitives/MarkPoint';
45
- import RadarRange from './Primitives/RadarRange';
46
- import AlarmCircle from './Primitives/AlarmCircle';
47
- import MaxXYPrimitive from './Primitives/MaxXYPrimitive';
48
- import HeatmapLayer from './Primitives/HeatmapLayer';
49
- import MultiholeLayer from './Primitives/MultiholeLayer';
50
- import RainPhase from './Primitives/RainPhase';
51
- import LightningExtrapolate from './Primitives/LightningExtrapolate';
52
- import Disaster from './Primitives/Disaster';
53
- import ArchitectModel from './Primitives/ArchitectModel';
54
- import Pillars from './Primitives/Pillars';
55
- import VerticalLine from './Primitives/VerticalLine';
56
- import StationLabelHZ from './Primitives/StationLabelHZ';
57
- import AirRoute from './Primitives/AirRoute';
58
- import DegreesHandle from './Primitives/DmsToDegrees';
59
- import Airline from './Primitives/Airline.js';
60
- import Grid from './Primitives/Grid';
61
- import GridBox from './Primitives/GridBox';
62
- import TrackWarn from './Primitives/TrackWarn';
63
-
64
- // primitive API
65
- import PolygonPrimitiveCollection from './Primitives/PolygonPrimitiveCollection';
66
- import PolygonPrimitiveCollectionNew from './Primitives/PolygonPrimitiveCollectionNew';
67
- import {
68
- type PointPrimitiveCollectionParams,
69
- type PointType,
70
- PointPrimitiveCollection,
71
- } from './Primitives/PointPrimitiveCollection';
72
- import Diaphaneity from './Primitives/Diaphaneity';
73
- import {
74
- DynamicCirclePrimitiveCollection,
75
- type DynamicCirclePrimitiveCollectionParams,
76
- type CircleType,
77
- } from './Primitives/DynamicCirclePrimitiveCollection';
78
-
79
- import Mark from './Primitives/Mark';
80
- import LXCircle from './Primitives/LXCircle';
81
- import FocusRegion from './Primitives/FocusRegion';
82
- import Lightning from './Primitives/Lightning';
83
- import DrawArea from './Primitives/DrawArea';
84
- import FocusArea from './Primitives/FocusArea';
85
- import BrushPlugin from './Plugins/brush.plugin';
86
- import DrawPolyline from './Primitives/DrawPolyline';
87
- import CircleScan from './Primitives/CircleScan';
88
- import AlarmWall from './Primitives/AlarmWall';
89
- import ImgLayer from './Primitives/ImgLayer';
90
- import WarningLayer from './Primitives/WarningLayer';
91
- import IsoPack from './Primitives/IsoPack';
92
- import VolumeRendering from './Primitives/VolumeRendering';
93
- import CoordinateUtil from './common/coordinate';
94
- import TargetTrackPoint from './Primitives/TargetTrackPoint';
95
- import RadarScans from './Primitives/RadarScans';
96
- import LivePlane from './Primitives/LivePlane';
97
- import BoxArea from './Primitives/BoxArea';
98
- import RadarArc from './Primitives/RadarArc';
99
- import DrawRectangle from './Primitives/DrawRectangle';
100
- import WindyTileProvider from './Primitives/TilingScheme/WindyTileProvider';
101
-
102
- import LayerPrimitive from './Primitives/LayerPrimitive';
103
- import Layer3DPrimitive from './Primitives/Layer3DPrimitive';
104
- import Profile3D from './Primitives/Layer3DPrimitive/Profile';
105
- import ServiceProfile from './Primitives/Layer3DPrimitive/ServiceProfile';
106
- import Cappi from './Primitives/Layer3DPrimitive/Cappi';
107
- import BrushTool from './Primitives/BrushTool';
108
- import Typhoon from './Primitives/Typhoon/Typhoon';
109
- import StationLabelColor from './Primitives/StationLabelColor';
110
- import WindPrimitive from './Primitives/WindPrimitive';
111
- import WindProfile from './Primitives/WindProfile';
112
- import WindProfile3D from './Primitives/windProfile3d';
113
- import SimulatesCloud from './Primitives/SimulatesCloud';
114
- import CloudPrimitive from './CustomPrimitives/CloudPrimitive';
115
- import WeatherParticleLayer from './Primitives/WeatherParticleLayer';
116
- import VolumetricCloud from './Primitives/VolumetricCloud';
117
-
118
- export default Viewer;
119
- export {
120
- Timeline,
121
- NewTimeline,
122
- CameraPlugin,
123
- CursorPlugin,
124
- GlobalCesiumMouseHandler,
125
- TilePlugin,
126
- BoundaryPlugin,
127
- RangingPlugin,
128
- RangingPlugin2D,
129
- MouseValuePlugin,
130
- ProductBox,
131
- CustomProfile,
132
- Profile,
133
- SingleRadarPrimitive,
134
- SingleRadarElevationPrimitive,
135
- SingleRadarServicePrimitive,
136
- LayerPNG,
137
- CompressPNG,
138
- Compress2DPre,
139
- LayerXYPNG,
140
- DrainageBasin,
141
- GeoJson,
142
- FlowLine,
143
- IsoModel,
144
- NewIsoModel,
145
- StormIdentify,
146
- StormTrack,
147
- StormForecast,
148
- Wind,
149
- WindLayer,
150
- Mark,
151
- Lightning,
152
- trigger,
153
- newTrigger,
154
- StationLabel,
155
- StationLabelColor,
156
- StationText,
157
- StationPoint,
158
- StationPointNowcast,
159
- StationPointHollow,
160
- StationShaft,
161
- MarkPoint,
162
- RadarRange,
163
- AlarmCircle,
164
- MaxXYPrimitive,
165
- HeatmapLayer,
166
- MultiholeLayer,
167
- RainPhase,
168
- DrawArea,
169
- LXCircle,
170
- FocusArea,
171
- BrushPlugin,
172
- FocusRegion,
173
- DrawPolyline,
174
- LightningExtrapolate,
175
- Disaster,
176
- ArchitectModel,
177
- Pillars,
178
- VerticalLine,
179
- CircleScan,
180
- AlarmWall,
181
- StationLabelHZ,
182
- ImgLayer,
183
- WarningLayer,
184
- IsoPack,
185
- VolumeRendering,
186
- CoordinateUtil,
187
- Airline,
188
- GridBox,
189
- TrackWarn,
190
- AirRoute,
191
- DegreesHandle,
192
- TargetTrackPoint,
193
- RadarScans,
194
- LivePlane,
195
- Grid,
196
- BoxArea,
197
- RadarArc,
198
- DrawRectangle,
199
- WindyTileProvider,
200
- // primitive API
201
- PolygonPrimitiveCollection,
202
- PolygonPrimitiveCollectionNew,
203
- LayerPrimitive,
204
- Layer3DPrimitive,
205
- Profile3D,
206
- ServiceProfile,
207
- Cappi,
208
- PointPrimitiveCollection,
209
- PointPrimitiveCollectionParams,
210
- PointType,
211
- Diaphaneity,
212
- DynamicCirclePrimitiveCollectionParams,
213
- DynamicCirclePrimitiveCollection,
214
- CircleType,
215
- BrushTool,
216
- Typhoon,
217
- WindPrimitive,
218
- WindProfile,
219
- WindProfile3D,
220
- SimulatesCloud,
221
- CloudPrimitive,
222
- WeatherParticleLayer,
223
- VolumetricCloud,
224
- };
225
-
226
- export type {
227
- WindProfileData,
228
- WindProfileLabelTextFormatter,
229
- WindProfileParams,
230
- WindProfilePickInfo,
231
- WindProfileStyle,
232
- } from './Primitives/WindProfile';
233
-
234
- export {
235
- DEFAULT_WEATHER_PARTICLE_OPTIONS,
236
- WEATHER_PARTICLE_QUALITY_PRESETS,
237
- StaticWeatherFieldSampler,
238
- applyWeatherParticleQuality,
239
- estimateWeatherParticleCount,
240
- estimateWeatherParticleCountByArea,
241
- inferWeatherParticleMode,
242
- resolveWeatherParticleOptions,
243
- weatherSampleToParticleOptions,
244
- windVectorToSpeedDirection,
245
- } from './Primitives/WeatherParticleLayer';
246
-
247
- export {
248
- DEFAULT_VOLUMETRIC_CLOUD_ATMOSPHERE,
249
- DEFAULT_VOLUMETRIC_CLOUD_OPTIONS,
250
- DEFAULT_VOLUMETRIC_CLOUD_RENDERING,
251
- VOLUMETRIC_CLOUD_QUALITY_LEVELS,
252
- resolveVolumetricCloudOptions,
253
- } from './Primitives/VolumetricCloud';
254
-
255
- export type {
256
- ResolvedVolumetricCloudOptions,
257
- VolumetricCloudAtmosphereOptions,
258
- VolumetricCloudOptions,
259
- VolumetricCloudQuality,
260
- VolumetricCloudQualityConfig,
261
- VolumetricCloudRenderingOptions,
262
- } from './Primitives/VolumetricCloud';
263
-
264
- export type {
265
- ResolvedWeatherParticleOptions,
266
- WeatherFieldSampler,
267
- WeatherParticleCenter,
268
- WeatherParticleDistanceLodOptions,
269
- WeatherParticleMode,
270
- WeatherParticleOptions,
271
- WeatherParticleOptionsPatch,
272
- WeatherParticlePolygonPoint,
273
- WeatherParticleQuality,
274
- WeatherParticleQualityPreset,
275
- WeatherParticleZoneOptions,
276
- WeatherSample,
277
- WeatherSampleMappingOptions,
278
- } from './Primitives/WeatherParticleLayer';