@soonspacejs/plugin-tiles 2.15.0 → 2.15.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.
@@ -29,7 +29,14 @@ export type PlotPointOptions = GisPlotBaseOptions & {
29
29
  /** 线标绘:折线顶点 + 可选端点箭头(SDF) */
30
30
  export type PlotLineStrokeStyle = 'solid' | 'dashed' | 'dotted';
31
31
  export type PlotEndpointStyle = 'round' | 'square';
32
- export type PlotArrowStyle = 'simple' | 'filled' | 'open' | 'double' | 'diamond' | 'bar';
32
+ /**
33
+ * 折线端点箭头(仅四种;原 `filled` 已更名为 `filledArrow`)
34
+ * - `filledArrow` — 三角箭头
35
+ * - `filledDiamond` — 菱形
36
+ * - `filledCircle` — 实心圆
37
+ * - `bar` — 竖条 / 小段
38
+ */
39
+ export type PlotArrowStyle = 'filledArrow' | 'filledDiamond' | 'filledCircle' | 'bar';
33
40
  export type PlotLineOptions = GisPlotBaseOptions & {
34
41
  strokeStyle?: PlotLineStrokeStyle;
35
42
  endpointStyle?: PlotEndpointStyle;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@soonspacejs/plugin-tiles",
3
3
  "pluginName": "TilesPlugin",
4
- "version": "2.15.0",
4
+ "version": "2.15.1",
5
5
  "description": "3D Tiles plugin for SoonSpace.js",
6
6
  "main": "dist/index.esm.js",
7
7
  "module": "dist/index.esm.js",
@@ -18,8 +18,8 @@
18
18
  "license": "UNLICENSED",
19
19
  "gitHead": "4a87dd85050651088e11c3da777c49fab3db7e5d",
20
20
  "peerDependencies": {
21
- "um-3d-tiles-renderer": "^0.4.40",
21
+ "um-3d-tiles-renderer": "^0.4.41",
22
22
  "three": "^0.183.0",
23
- "soonspacejs": "2.15.0"
23
+ "soonspacejs": "2.15.1"
24
24
  }
25
25
  }