vis-core 0.31.32 → 0.31.33
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 +6 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -684,6 +684,8 @@ declare class Map_2 extends Base {
|
|
|
684
684
|
* @returns 是否在板块内
|
|
685
685
|
*/
|
|
686
686
|
booleanPointInMap(location: [number, number]): boolean;
|
|
687
|
+
private _loadGeojsonFromConfig;
|
|
688
|
+
private _loadBaseGeojson;
|
|
687
689
|
private getGeojson;
|
|
688
690
|
private handleDrillDown;
|
|
689
691
|
saveCamvasState(type: 'userControls' | 'controls', index: number): void;
|
|
@@ -932,6 +934,7 @@ declare interface MapOptions extends BaseOptions {
|
|
|
932
934
|
center?: [number, number];
|
|
933
935
|
parentBg?: boolean | number;
|
|
934
936
|
parentBgDepth?: number;
|
|
937
|
+
worldBgFull?: boolean;
|
|
935
938
|
topSegments?: number;
|
|
936
939
|
continentsBg?: boolean;
|
|
937
940
|
continentsBgDepth?: number;
|
|
@@ -967,6 +970,8 @@ declare interface MapOptions extends BaseOptions {
|
|
|
967
970
|
bottomPlane?: boolean;
|
|
968
971
|
bottomPlaneWater?: boolean;
|
|
969
972
|
geojsonExtensions?: Record<string, GeoJSON_3 | string | number | (GeoJSON_3 | string | number)[]>;
|
|
973
|
+
geojsonMapReplace?: Record<string, GeoJSON_3 | string | number>;
|
|
974
|
+
extrudeLineGeojsonMapReplace?: Record<string, GeoJSON_3 | string | number>;
|
|
970
975
|
shadowMap?: boolean;
|
|
971
976
|
switchFixConfig?: SwitchFixConfig;
|
|
972
977
|
_currentAdcodes?: number[];
|
|
@@ -1381,7 +1386,7 @@ export { TWEEN }
|
|
|
1381
1386
|
|
|
1382
1387
|
export { Tween }
|
|
1383
1388
|
|
|
1384
|
-
export declare const VERSION = "0.31.
|
|
1389
|
+
export declare const VERSION = "0.31.33";
|
|
1385
1390
|
|
|
1386
1391
|
export { }
|
|
1387
1392
|
|