sat-earth 0.9.8 → 0.9.10
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/packages/utils/map/analysis-spatial/index.d.ts +2 -2
- package/dist/packages/utils/map/analysis-spatial/section.d.ts +4 -2
- package/dist/packages/utils/map/index.d.ts +2 -0
- package/dist/sat-earth.mjs +2509 -2390
- package/dist/sat-earth.umd.js +6 -6
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -3,16 +3,18 @@ import * as mars3d from 'mars3d';
|
|
|
3
3
|
import { type LoadingInstance } from '../../../hooks/ui/useLoading';
|
|
4
4
|
import { MessageHandler } from 'element-plus';
|
|
5
5
|
import * as echarts from 'echarts';
|
|
6
|
+
import { SatMap } from '../../../utils/map';
|
|
6
7
|
export declare class Section {
|
|
7
8
|
#private;
|
|
8
|
-
map
|
|
9
|
+
map?: Mars3dMap;
|
|
10
|
+
mapCanvasEleId: string;
|
|
9
11
|
measure: mars3d.thing.Measure | undefined;
|
|
10
12
|
loading: LoadingInstance | undefined;
|
|
11
13
|
loadingMessage: MessageHandler | undefined;
|
|
12
14
|
currentGraphic: mars3d.graphic.BillboardEntity | undefined;
|
|
13
15
|
sectionCharts: echarts.ECharts | undefined;
|
|
14
16
|
chartsElementId: string;
|
|
15
|
-
constructor(
|
|
17
|
+
constructor(satMap: SatMap);
|
|
16
18
|
measureSection(resultDataShowArea: string): void;
|
|
17
19
|
destroy(): void;
|
|
18
20
|
}
|
|
@@ -13,6 +13,7 @@ export declare class SatMap {
|
|
|
13
13
|
static webglreport(): boolean;
|
|
14
14
|
static webglerror(): void;
|
|
15
15
|
static getInstanceById(eleId: string): SatMap | undefined;
|
|
16
|
+
mapCanvasEleId: string;
|
|
16
17
|
configOptions: SatMapOptions;
|
|
17
18
|
map: Mars3dMap | undefined;
|
|
18
19
|
layer: Layer | undefined;
|
|
@@ -27,4 +28,5 @@ export declare class SatMap {
|
|
|
27
28
|
addSplitLayerToolbar(map: Mars3dMap, flag?: boolean): void;
|
|
28
29
|
addCameraBookmarkToolbar(map: Mars3dMap, flag?: boolean): void;
|
|
29
30
|
addKeyboardRoam(map: Mars3dMap, flag?: boolean): void;
|
|
31
|
+
initMapCompShowHide(map: Mars3dMap, options: SatMapOptions): void;
|
|
30
32
|
}
|