aircitytype 1.1.15 → 1.1.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.
@@ -335,6 +335,7 @@ type EventType =
335
335
  | "CameraTourFinished" //播放导览结束触发此事件
336
336
  | "EditHelperFinished"
337
337
  | "MarkerCallBack"
338
+ | "CameraMoving"
338
339
 
339
340
  interface AircityEvent {
340
341
  Id: string;
@@ -729,6 +730,8 @@ interface Marker {
729
730
  newVal: [number, number, number],
730
731
  fn?: () => void
731
732
  ): void;
733
+ updateBegin():void;
734
+ updateEnd():void;
732
735
  }
733
736
 
734
737
  interface Marker3D {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aircitytype",
3
- "description": "补齐PolyLineType",
3
+ "description": "增加marker的事件",
4
4
  "scripts": {
5
5
  "test": "echo \"Error: no test specified\" && exit 1"
6
6
  },
@@ -17,5 +17,5 @@
17
17
  "dependencies": {
18
18
  "jsonc-parser": "^3.3.1"
19
19
  },
20
- "version": "1.1.15"
20
+ "version": "1.1.17"
21
21
  }