gis-cesium-helper 4.1.2 → 4.1.3

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.
@@ -17,6 +17,7 @@ export interface IRadarCircleOptions extends IBaseGraphicOptions {
17
17
  */
18
18
  axis?: {
19
19
  color?: string;
20
+ show?: boolean;
20
21
  };
21
22
  /**
22
23
  * 距离环及刻度
@@ -24,6 +25,7 @@ export interface IRadarCircleOptions extends IBaseGraphicOptions {
24
25
  */
25
26
  scale?: {
26
27
  splitNum: number;
28
+ show?: boolean;
27
29
  label?: (value: number) => string;
28
30
  lineColor?: string;
29
31
  labelColor?: string;
@@ -9,6 +9,8 @@ export default class BaseGraphic {
9
9
  options: IBaseGraphicOptions;
10
10
  addHook(e: BaseLayer): void;
11
11
  removeHook(e: BaseLayer): void;
12
+ setStyle(style: any): void;
13
+ setVisible(visible: boolean): void;
12
14
  constructor(options?: {});
13
15
  private initializeOptions;
14
16
  addTo(e: BaseLayer): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gis-cesium-helper",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "author": "Guo.Yan <luv02@vip.qq.com>",
5
5
  "license": "MIT",
6
6
  "private": false,