@jorgmoritz/gis-manager 0.1.21 → 0.1.26
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/{VertexDetailInfo-BoVDy22s.d.cts → VertexDetailInfo-CProWwqv.d.cts} +51 -1
- package/dist/{VertexDetailInfo-BoVDy22s.d.ts → VertexDetailInfo-CProWwqv.d.ts} +51 -1
- package/dist/index.cjs +347 -52
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +36 -12
- package/dist/index.d.ts +36 -12
- package/dist/index.js +347 -52
- package/dist/index.js.map +1 -1
- package/dist/vue/index.cjs +346 -51
- package/dist/vue/index.cjs.map +1 -1
- package/dist/vue/index.d.cts +1 -1
- package/dist/vue/index.d.ts +1 -1
- package/dist/vue/index.js +346 -51
- package/dist/vue/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -75,5 +75,55 @@ interface VertexOperationInfo {
|
|
|
75
75
|
/** 时间戳 */
|
|
76
76
|
timestamp: Date;
|
|
77
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* 🆕 顶点拖动中信息(实时)
|
|
80
|
+
* 用于在拖动过程中实时通知调用者位置变化
|
|
81
|
+
*/
|
|
82
|
+
interface VertexDragMoveInfo {
|
|
83
|
+
/** 顶点索引 */
|
|
84
|
+
index: number;
|
|
85
|
+
/** 显示编号 */
|
|
86
|
+
displayNumber: number;
|
|
87
|
+
/** 当前位置(Cesium.Cartesian3) */
|
|
88
|
+
position: Cesium.Cartesian3;
|
|
89
|
+
/** 经纬度高度坐标 */
|
|
90
|
+
coordinates: {
|
|
91
|
+
/** 经度(度) */
|
|
92
|
+
longitude: number;
|
|
93
|
+
/** 纬度(度) */
|
|
94
|
+
latitude: number;
|
|
95
|
+
/** 高度(米) */
|
|
96
|
+
height: number;
|
|
97
|
+
};
|
|
98
|
+
/** 时间戳 */
|
|
99
|
+
timestamp: Date;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* 🆕 航点更新数据
|
|
103
|
+
* 用于程序化更新航点属性
|
|
104
|
+
*/
|
|
105
|
+
interface WaypointUpdateData {
|
|
106
|
+
/** 位置(Cesium.Cartesian3) */
|
|
107
|
+
position?: Cesium.Cartesian3;
|
|
108
|
+
/** 航向角(度) */
|
|
109
|
+
heading?: number;
|
|
110
|
+
/** 俯仰角(度) */
|
|
111
|
+
pitch?: number;
|
|
112
|
+
/** 横滚角(度) */
|
|
113
|
+
roll?: number;
|
|
114
|
+
/** 视场角(度) */
|
|
115
|
+
fov?: number;
|
|
116
|
+
/** 高度(米)- 便捷字段,仅更新高度而保持经纬度不变 */
|
|
117
|
+
altitude?: number;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* 🆕 批量更新项
|
|
121
|
+
*/
|
|
122
|
+
interface WaypointBatchUpdate {
|
|
123
|
+
/** 航点索引 */
|
|
124
|
+
index: number;
|
|
125
|
+
/** 更新数据 */
|
|
126
|
+
data: Partial<WaypointUpdateData>;
|
|
127
|
+
}
|
|
78
128
|
|
|
79
|
-
export type { VertexDetailInfo as V, VertexOperationInfo as a };
|
|
129
|
+
export type { VertexDetailInfo as V, WaypointUpdateData as W, VertexOperationInfo as a, VertexDragMoveInfo as b, WaypointBatchUpdate as c };
|
|
@@ -75,5 +75,55 @@ interface VertexOperationInfo {
|
|
|
75
75
|
/** 时间戳 */
|
|
76
76
|
timestamp: Date;
|
|
77
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* 🆕 顶点拖动中信息(实时)
|
|
80
|
+
* 用于在拖动过程中实时通知调用者位置变化
|
|
81
|
+
*/
|
|
82
|
+
interface VertexDragMoveInfo {
|
|
83
|
+
/** 顶点索引 */
|
|
84
|
+
index: number;
|
|
85
|
+
/** 显示编号 */
|
|
86
|
+
displayNumber: number;
|
|
87
|
+
/** 当前位置(Cesium.Cartesian3) */
|
|
88
|
+
position: Cesium.Cartesian3;
|
|
89
|
+
/** 经纬度高度坐标 */
|
|
90
|
+
coordinates: {
|
|
91
|
+
/** 经度(度) */
|
|
92
|
+
longitude: number;
|
|
93
|
+
/** 纬度(度) */
|
|
94
|
+
latitude: number;
|
|
95
|
+
/** 高度(米) */
|
|
96
|
+
height: number;
|
|
97
|
+
};
|
|
98
|
+
/** 时间戳 */
|
|
99
|
+
timestamp: Date;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* 🆕 航点更新数据
|
|
103
|
+
* 用于程序化更新航点属性
|
|
104
|
+
*/
|
|
105
|
+
interface WaypointUpdateData {
|
|
106
|
+
/** 位置(Cesium.Cartesian3) */
|
|
107
|
+
position?: Cesium.Cartesian3;
|
|
108
|
+
/** 航向角(度) */
|
|
109
|
+
heading?: number;
|
|
110
|
+
/** 俯仰角(度) */
|
|
111
|
+
pitch?: number;
|
|
112
|
+
/** 横滚角(度) */
|
|
113
|
+
roll?: number;
|
|
114
|
+
/** 视场角(度) */
|
|
115
|
+
fov?: number;
|
|
116
|
+
/** 高度(米)- 便捷字段,仅更新高度而保持经纬度不变 */
|
|
117
|
+
altitude?: number;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* 🆕 批量更新项
|
|
121
|
+
*/
|
|
122
|
+
interface WaypointBatchUpdate {
|
|
123
|
+
/** 航点索引 */
|
|
124
|
+
index: number;
|
|
125
|
+
/** 更新数据 */
|
|
126
|
+
data: Partial<WaypointUpdateData>;
|
|
127
|
+
}
|
|
78
128
|
|
|
79
|
-
export type { VertexDetailInfo as V, VertexOperationInfo as a };
|
|
129
|
+
export type { VertexDetailInfo as V, WaypointUpdateData as W, VertexOperationInfo as a, VertexDragMoveInfo as b, WaypointBatchUpdate as c };
|