vis-core 0.31.26 → 0.31.27
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/index.d.ts +1 -23
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -405,15 +405,6 @@ export declare class Earth extends Base {
|
|
|
405
405
|
animationIn(): void;
|
|
406
406
|
initLight(): Promise<void>;
|
|
407
407
|
getLocationPosition(location: [number, number], dr?: number): [number, number, number];
|
|
408
|
-
setAreaMaterialByProperty(key: string, value: any, ops: {
|
|
409
|
-
color?: string;
|
|
410
|
-
emissive?: string;
|
|
411
|
-
emissiveIntensity?: number;
|
|
412
|
-
} | 'origin'): void;
|
|
413
|
-
setLineMaterialByProperty(key: string, value: any, ops: {
|
|
414
|
-
color?: string;
|
|
415
|
-
width?: number;
|
|
416
|
-
} | 'origin'): void;
|
|
417
408
|
getRadius(): number;
|
|
418
409
|
checkBehindEarth(objArr: () => BaseObject[], cb: (obj: BaseObject[], res: boolean[]) => any): void;
|
|
419
410
|
/**
|
|
@@ -622,15 +613,6 @@ declare class Map_2 extends Base {
|
|
|
622
613
|
private _clearContinentsBgInScene;
|
|
623
614
|
private _ensureContinentsBgInScene;
|
|
624
615
|
consoleMousePostion(): void;
|
|
625
|
-
setAreaMaterialByProperty(key: string, value: any, ops: {
|
|
626
|
-
color?: string;
|
|
627
|
-
emissive?: string;
|
|
628
|
-
emissiveIntensity?: number;
|
|
629
|
-
} | 'origin'): void;
|
|
630
|
-
setLineMaterialByProperty(key: string, value: any, ops: {
|
|
631
|
-
color?: string;
|
|
632
|
-
width?: number;
|
|
633
|
-
} | 'origin'): void;
|
|
634
616
|
caId: string | number | undefined;
|
|
635
617
|
showAction(): Promise<void>;
|
|
636
618
|
hide(): Promise<void>;
|
|
@@ -1218,11 +1200,8 @@ declare class PlaneMap extends GroupObject {
|
|
|
1218
1200
|
}[];
|
|
1219
1201
|
update(_delta: number, elapsed: number): void;
|
|
1220
1202
|
findGroup(adcode: string | number, fix?: boolean): GroupObject | undefined;
|
|
1221
|
-
setAreaMaterial(key: string, material: THREE.Material[] | THREE.Material): void;
|
|
1222
1203
|
useAreaMaterial(key: string): void;
|
|
1223
|
-
setLineMaterial(key: string, material: THREE.Material): void;
|
|
1224
1204
|
useLineMaterial(key: string): void;
|
|
1225
|
-
setExtrudeLineMaterial(key: string, material: THREE.Material): void;
|
|
1226
1205
|
useExtrudeLineMaterial(key: string): void;
|
|
1227
1206
|
changeLineAnimateParams({ speed, extrude, }: {
|
|
1228
1207
|
speed?: number;
|
|
@@ -1283,7 +1262,6 @@ declare interface SelectedMeta {
|
|
|
1283
1262
|
key: string;
|
|
1284
1263
|
object: THREE.Mesh;
|
|
1285
1264
|
baseObject: BaseObject;
|
|
1286
|
-
useMaterialType: string;
|
|
1287
1265
|
visible: boolean;
|
|
1288
1266
|
disabledC: boolean;
|
|
1289
1267
|
disabledR: boolean;
|
|
@@ -1364,7 +1342,7 @@ export { TWEEN }
|
|
|
1364
1342
|
|
|
1365
1343
|
export { Tween }
|
|
1366
1344
|
|
|
1367
|
-
export declare const VERSION = "0.31.
|
|
1345
|
+
export declare const VERSION = "0.31.27";
|
|
1368
1346
|
|
|
1369
1347
|
export { }
|
|
1370
1348
|
|