ino-cesium 0.0.22-beta.0 → 0.0.22-beta.2
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/ino-cesium-full.js +1 -1
- package/dist/ino-cesium.d.ts +4 -2
- package/dist/ino-cesium.js +3 -3
- package/package.json +8 -8
package/dist/ino-cesium.d.ts
CHANGED
|
@@ -1616,6 +1616,8 @@ interface IDrawStyle {
|
|
|
1616
1616
|
* 点像素大小
|
|
1617
1617
|
*/
|
|
1618
1618
|
pixelSize: number;
|
|
1619
|
+
offsetX: number;
|
|
1620
|
+
offsetY: number;
|
|
1619
1621
|
/**
|
|
1620
1622
|
* 点轮廓颜色
|
|
1621
1623
|
*/
|
|
@@ -2524,7 +2526,7 @@ declare class RadereScanPrimitive extends BasePrimitive<any> {
|
|
|
2524
2526
|
private options;
|
|
2525
2527
|
constructor(options: IRaderScanPrimitiveOptions);
|
|
2526
2528
|
getGeometry(): Cesium.CircleGeometry;
|
|
2527
|
-
getPrimitive(): Cesium.
|
|
2529
|
+
getPrimitive(): Cesium.GroundPolylinePrimitive | Cesium.PrimitiveCollection | Cesium.Primitive | Cesium.GroundPrimitive | Cesium.PointPrimitiveCollection | Cesium.LabelCollection | undefined;
|
|
2528
2530
|
setAppearance(appearance?: Cesium.Appearance): void;
|
|
2529
2531
|
}
|
|
2530
2532
|
|
|
@@ -2654,7 +2656,7 @@ declare class CircleAperturePrimitive extends BasePrimitive<any> {
|
|
|
2654
2656
|
private options;
|
|
2655
2657
|
constructor(options: ICircleAperturePrimitiveOptions);
|
|
2656
2658
|
getGeometry(): Cesium.CircleGeometry;
|
|
2657
|
-
getPrimitive(): Cesium.
|
|
2659
|
+
getPrimitive(): Cesium.GroundPolylinePrimitive | Cesium.PrimitiveCollection | Cesium.Primitive | Cesium.GroundPrimitive | Cesium.PointPrimitiveCollection | Cesium.LabelCollection | undefined;
|
|
2658
2660
|
setAppearance(appearance?: Cesium.Appearance): void;
|
|
2659
2661
|
}
|
|
2660
2662
|
|