vis-core 0.30.0-beta.53 → 0.30.0-beta.54
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 +59981 -59981
- 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 -1
- 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.54";
|
|
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;
|
|
@@ -64,6 +64,7 @@ interface MapCityOptions extends MapOptions {
|
|
|
64
64
|
showCityOnMapInnerLine?: boolean;
|
|
65
65
|
bloom?: boolean;
|
|
66
66
|
citySSAO?: boolean;
|
|
67
|
+
disabelCityVis?: number[];
|
|
67
68
|
}
|
|
68
69
|
export default class extends Base {
|
|
69
70
|
static VisName: string;
|
package/package.json
CHANGED
package/dist/vis/map/utils.d.ts
DELETED