vis-core 0.31.10 → 0.31.12
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 +10 -4
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -894,6 +894,7 @@ export declare class MapManager {
|
|
|
894
894
|
private mapDistances;
|
|
895
895
|
private mapConfigs;
|
|
896
896
|
private mapReferenceAngle;
|
|
897
|
+
private mapBloomConfig;
|
|
897
898
|
private currentMap;
|
|
898
899
|
private currentZoom;
|
|
899
900
|
private mapPadding;
|
|
@@ -901,10 +902,15 @@ export declare class MapManager {
|
|
|
901
902
|
private rmTemplateIdentifier;
|
|
902
903
|
private geojsonExtensions;
|
|
903
904
|
private areaHoverEnabled;
|
|
905
|
+
private areaHoverMlistName?;
|
|
904
906
|
private showBuildingOnlyWithoutChildren;
|
|
905
907
|
private groups;
|
|
906
908
|
private eventHandlers;
|
|
907
909
|
private areaCloseTimer;
|
|
910
|
+
private key;
|
|
911
|
+
private topAdcode;
|
|
912
|
+
private clickHandleDrillDown;
|
|
913
|
+
private clickOusideBack;
|
|
908
914
|
static findAdcodeInfoByName: (name: string) => {
|
|
909
915
|
adcode: number;
|
|
910
916
|
lng: number;
|
|
@@ -927,8 +933,6 @@ export declare class MapManager {
|
|
|
927
933
|
b: number[];
|
|
928
934
|
} | undefined;
|
|
929
935
|
static extendsAdcodeAll: (cb: any) => void;
|
|
930
|
-
key: string;
|
|
931
|
-
topAdcode: number;
|
|
932
936
|
constructor(config: MapManagerConfig);
|
|
933
937
|
/**
|
|
934
938
|
* 设置事件处理器
|
|
@@ -1004,9 +1008,11 @@ export declare interface MapManagerConfig {
|
|
|
1004
1008
|
rmTemplateIdentifier?: boolean;
|
|
1005
1009
|
geojsonExtensions?: Record<string, any[]>;
|
|
1006
1010
|
mapConfigs?: Record<string, any>;
|
|
1007
|
-
|
|
1011
|
+
areaHoverMlistName?: string[];
|
|
1008
1012
|
topAdcode?: number;
|
|
1009
1013
|
showBuildingOnlyWithoutChildren?: boolean;
|
|
1014
|
+
clickHandleDrillDown?: boolean;
|
|
1015
|
+
clickOusideBack?: boolean;
|
|
1010
1016
|
}
|
|
1011
1017
|
|
|
1012
1018
|
declare interface MapOptions extends BaseOptions {
|
|
@@ -1489,7 +1495,7 @@ export { TWEEN }
|
|
|
1489
1495
|
|
|
1490
1496
|
export { Tween }
|
|
1491
1497
|
|
|
1492
|
-
export declare const VERSION = "0.31.
|
|
1498
|
+
export declare const VERSION = "0.31.12";
|
|
1493
1499
|
|
|
1494
1500
|
export { }
|
|
1495
1501
|
|