vis-core 0.30.0-beta.53 → 0.30.0-beta.55
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 +2 -2
- package/dist/index.js +3 -3
- package/dist/index.module.js +59989 -59984
- package/dist/version.d.ts +1 -1
- package/dist/vis/all/json/index.d.ts +1 -0
- package/dist/vis/map/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/vis/map/utils.d.ts +0 -2
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "0.30.0-beta.
|
|
1
|
+
declare const _default: "0.30.0-beta.55";
|
|
2
2
|
export default _default;
|
package/dist/vis/map/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { findAdcodeInfo } from "../all/json";
|
|
1
2
|
import Base, { type BaseOptions } from "../base";
|
|
2
3
|
import leadObjs from "./objects";
|
|
3
4
|
import type ContinentsBg from "./objects/ContinentsBg";
|
|
@@ -8,7 +9,6 @@ import { type ExtrudePolygon, type Group, MeshLineMaterial } from 'gl-draw/dist/
|
|
|
8
9
|
import { getProjection } from 'gl-draw/dist/utils';
|
|
9
10
|
import * as THREE from 'three';
|
|
10
11
|
import City from './city';
|
|
11
|
-
import { findAdcodeInfo } from './utils';
|
|
12
12
|
type GeoJSON = FeatureCollection<Polygon | MultiPolygon>;
|
|
13
13
|
export interface MapOptions extends BaseOptions {
|
|
14
14
|
adcode: number;
|
|
@@ -168,7 +168,7 @@ export default class extends Base {
|
|
|
168
168
|
initSettingsObj: Record<string, any>;
|
|
169
169
|
handleSetting(key: string, value: any): Promise<any>;
|
|
170
170
|
init(): Promise<void>;
|
|
171
|
-
initCityVis(adcode: number, grey?: boolean): Promise<City
|
|
171
|
+
initCityVis(adcode: number, grey?: boolean): Promise<City>;
|
|
172
172
|
initCityOnMap(adcode: number): Promise<void>;
|
|
173
173
|
initVisBg(): Promise<void>;
|
|
174
174
|
initVis(adcode: number): Promise<void>;
|
package/package.json
CHANGED
package/dist/vis/map/utils.d.ts
DELETED