cesium-alpha-earth 1.0.63 → 1.0.65
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.
|
@@ -1,2 +1,21 @@
|
|
|
1
1
|
import Component from "./index.vue";
|
|
2
|
+
import { GeoJsonLayerOptionsType } from "@/core/CesiumAlphaGeoJsonLayer/type";
|
|
3
|
+
import { ModelInfoOption } from "@/core/CesiumAlphaViewer/type";
|
|
4
|
+
export type SceneInfoOption = {
|
|
5
|
+
sceneName: string;
|
|
6
|
+
sceneImg: string;
|
|
7
|
+
sceneId: string;
|
|
8
|
+
layer?: Array<GeoJsonLayerOptionsType>;
|
|
9
|
+
model?: Array<ModelInfoOption>;
|
|
10
|
+
tool?: Array<toolInfoOption>;
|
|
11
|
+
};
|
|
12
|
+
export type LayerInfoOption = {
|
|
13
|
+
url: string;
|
|
14
|
+
option: GeoJsonLayerOptionsType;
|
|
15
|
+
};
|
|
16
|
+
export type toolInfoOption = {
|
|
17
|
+
id: string;
|
|
18
|
+
name: string;
|
|
19
|
+
key: string;
|
|
20
|
+
};
|
|
2
21
|
export default Component;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/SceneController/index.ts"],"names":[],"mappings":"AAEA,OAAO,SAAS,MAAM,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/SceneController/index.ts"],"names":[],"mappings":"AAEA,OAAO,SAAS,MAAM,aAAa,CAAA;AAGnC,yBAAyB;AACzB,SAAS,CAAC,OAAO,GAAG,CAAC,GAAQ,EAAE,EAAE;IAC7B,GAAG,CAAC,SAAS,CAAC,SAAS,CAAC,IAAc,EAAE,SAAS,CAAC,CAAA,CAAC,MAAM;AAC7D,CAAC,CAAA;AAyBD,eAAe,SAAS,CAAA"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export { default as CesiumAlphaViewer } from "./core/CesiumAlphaViewer";
|
|
|
5
5
|
export { default as CesiumAlphaGeoJsonLayer } from "./core/CesiumAlphaGeoJsonLayer";
|
|
6
6
|
export { default as createImageryLayer } from "./util/createImageryLayer";
|
|
7
7
|
export { type GeoJsonLayerOptionsType } from "./core/CesiumAlphaGeoJsonLayer/type";
|
|
8
|
-
export { type SceneInfoOption } from "./components/SceneController/
|
|
8
|
+
export { type SceneInfoOption } from "./components/SceneController/index";
|
|
9
9
|
export { default as DrawEntity } from "./core/CesiumAlphaDraw/index";
|
|
10
10
|
export { default as Tooltip } from "./util/tooltip";
|
|
11
11
|
import { App } from "vue";
|