aircitytype 1.1.20 → 1.1.21
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 +3 -0
- package/package.json +1 -1
package/aircity/index.d.ts
CHANGED
@@ -550,6 +550,7 @@ interface CustomObject {
|
|
550
550
|
resultMessage: string;
|
551
551
|
timestamp: number;
|
552
552
|
}>;
|
553
|
+
highlight(id: string | string[],fn:()=>void): void;
|
553
554
|
callBatchBPFunction(v: CustomObjectBPParam | CustomObjectBPParam[]): void;
|
554
555
|
setLocation(id: string | string[], arr: number[], smoothTime?: number): void;
|
555
556
|
show(ids: string[] | string, fn?: () => void): void;
|
@@ -712,6 +713,7 @@ interface VehicleData{
|
|
712
713
|
interface Marker {
|
713
714
|
clear(): void;
|
714
715
|
add(p: markType | markType[]): Promise<null>;
|
716
|
+
get(id:string):Promise<any>;
|
715
717
|
update(p: markType | markType[]): Promise<null>;
|
716
718
|
delete(p: string | string[]): Promise<void>;
|
717
719
|
deleteByGroupId(groupId: string, fn?: () => void): void;
|
@@ -726,6 +728,7 @@ interface Marker {
|
|
726
728
|
focus(id: string, o1?: number, o2?: number, rotation?: number[]): any;
|
727
729
|
show(ids: string[] | string, fn?: () => void): void;
|
728
730
|
hide(ids: string[] | string, fn?: () => void): void;
|
731
|
+
hidePopupWindow(id:string): void;
|
729
732
|
hideAllPopupWindow(): void;
|
730
733
|
setCoordinate(
|
731
734
|
id: string,
|
package/package.json
CHANGED