@vsleem-realsee-viewer/shared 2.1.2 → 2.1.4
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/README.internal.md +556 -27
- package/dist/index.d.ts +20 -3
- package/dist/index.mjs +147 -132
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -439,10 +439,11 @@ export declare type CoordinateModel = {
|
|
|
439
439
|
/** 坐标系模型类型枚举 */
|
|
440
440
|
export declare enum CoordinateModelType {
|
|
441
441
|
CADModel = 5 /** cad图片模型 */,
|
|
442
|
-
BIMModel = 6 /** bim
|
|
443
|
-
ForgeModel = 7 /** forge
|
|
442
|
+
BIMModel = 6 /** bim引擎模型 */,
|
|
443
|
+
ForgeModel = 7 /** forge引擎模型 */,
|
|
444
444
|
ThreeDModel = 8 /** 3d模型 */,
|
|
445
445
|
GeoModel = 9 /** 地图模型 */,
|
|
446
|
+
SoonspaceModel = 10 /**SoonSpace引擎模型 */,
|
|
446
447
|
ScaleModel = 101 /** 比例尺模型-前端自定义 */
|
|
447
448
|
}
|
|
448
449
|
|
|
@@ -738,6 +739,21 @@ export declare const MAP_PROVIDERS: {
|
|
|
738
739
|
CRSTypes: CRSTypes[];
|
|
739
740
|
}[];
|
|
740
741
|
|
|
742
|
+
/**地图瓦片图层配置 */
|
|
743
|
+
export declare const MAP_TILE_LAYERS: ({
|
|
744
|
+
url: string;
|
|
745
|
+
options: {
|
|
746
|
+
subdomains: string[];
|
|
747
|
+
attribution: string;
|
|
748
|
+
};
|
|
749
|
+
} | {
|
|
750
|
+
url: string;
|
|
751
|
+
options: {
|
|
752
|
+
subdomains: string[];
|
|
753
|
+
attribution?: undefined;
|
|
754
|
+
};
|
|
755
|
+
})[];
|
|
756
|
+
|
|
741
757
|
/**
|
|
742
758
|
* 坐标系映射
|
|
743
759
|
*/
|
|
@@ -753,7 +769,8 @@ declare type MappingRecord = {
|
|
|
753
769
|
srcCsId: number /** 源坐标系ID */;
|
|
754
770
|
};
|
|
755
771
|
|
|
756
|
-
|
|
772
|
+
/**地图服务商 */
|
|
773
|
+
export declare type MapProvider = {
|
|
757
774
|
name: string /**地图服务商名称 */;
|
|
758
775
|
patterns: string[] /**匹配的关键词 */;
|
|
759
776
|
CRSTypes: CRSTypes[] /**[中国大陆区域标准,中国大陆区域外标准] */;
|