aircitytype 1.1.12 → 1.1.14
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/aircity/index.d.ts +12 -0
- package/package.json +2 -2
package/aircity/index.d.ts
CHANGED
@@ -552,6 +552,18 @@ interface CustomObject {
|
|
552
552
|
hide(ids: string[] | string, fn?: () => void): void;
|
553
553
|
restoreMaterial(ids: string | string[]): void;
|
554
554
|
addByTileLayer(data: CustomTileLayer | CustomTileLayer[]): void;
|
555
|
+
unhighlight(id:string|string[]):void;
|
556
|
+
|
557
|
+
|
558
|
+
/** Name Type Description
|
559
|
+
ids string | array
|
560
|
+
CustomObject对象的ID或者数组
|
561
|
+
newColor Color
|
562
|
+
新颜色值
|
563
|
+
fn function
|
564
|
+
可选的回调函数,请参考二次开发:异步接口调用方式
|
565
|
+
*/
|
566
|
+
setTintColor(ids:string|string[], newColor:string, fn?:()=>void):void;
|
555
567
|
|
556
568
|
/**
|
557
569
|
*
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "aircitytype",
|
3
|
-
"description": "
|
3
|
+
"description": "补充SettingsPanel",
|
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.
|
20
|
+
"version": "1.1.14"
|
21
21
|
}
|