mirage2d 1.2.2 → 1.2.3

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.
Files changed (73) hide show
  1. package/dist/Enum/typeEnum.d.ts +63 -56
  2. package/dist/Layer/XMap.d.ts +146 -108
  3. package/dist/Layer/graphicLayer/ArcGisFeatureServiceLayer.d.ts +7 -7
  4. package/dist/Layer/graphicLayer/ClusterImageLayer.d.ts +9 -0
  5. package/dist/Layer/graphicLayer/ClusterLayer.d.ts +7 -0
  6. package/dist/Layer/graphicLayer/DayNightLayer.d.ts +7 -0
  7. package/dist/Layer/graphicLayer/DivLayer.d.ts +7 -0
  8. package/dist/Layer/graphicLayer/GraphicImageLayer.d.ts +7 -0
  9. package/dist/Layer/graphicLayer/GraphicLayer.d.ts +2 -2
  10. package/dist/Layer/graphicLayer/HeatmapLayer.d.ts +7 -0
  11. package/dist/Layer/graphicLayer/ImageCanvasLayer.d.ts +1 -1
  12. package/dist/Layer/graphicLayer/KmlLayer.d.ts +7 -0
  13. package/dist/Layer/graphicLayer/PathLayer.d.ts +44 -41
  14. package/dist/Layer/graphicLayer/WfsLayer.d.ts +18 -12
  15. package/dist/Layer/index.d.ts +10 -0
  16. package/dist/Layer/tileLayer/ArcGisMapServerLayer.d.ts +2 -1
  17. package/dist/Layer/tileLayer/ArcGisTileXyzLayer.d.ts +3 -3
  18. package/dist/Layer/tileLayer/GeoImageLayer.d.ts +17 -9
  19. package/dist/Layer/tileLayer/PbfLayer.d.ts +1 -1
  20. package/dist/Layer/tileLayer/TifLayer.d.ts +7 -0
  21. package/dist/Layer/tileLayer/TileBaiDuLayer.d.ts +3 -3
  22. package/dist/Layer/tileLayer/TileGroupLayer.d.ts +13 -2
  23. package/dist/Layer/tileLayer/TileTencentLayer.d.ts +10 -3
  24. package/dist/Layer/tileLayer/TileXyzLayer.d.ts +11 -4
  25. package/dist/Layer/tileLayer/WmsLayer.d.ts +8 -0
  26. package/dist/Layer/tileLayer/WmtsLayer.d.ts +8 -0
  27. package/dist/Layer/tileLayer/imageLayer.d.ts +7 -0
  28. package/dist/MirageHttp.es.js.map +205 -1
  29. package/dist/MirageHttp.umd.js.map +1263 -1
  30. package/dist/Tools/SpatialAnalysis.d.ts +235 -215
  31. package/dist/Tools/defaultStyle.d.ts +7 -0
  32. package/dist/Tools/measure.d.ts +7 -0
  33. package/dist/Tools/secret.d.ts +12 -6
  34. package/dist/Tools/toolbox.d.ts +2 -3
  35. package/dist/Tools/util/format.d.ts +21 -1
  36. package/dist/Tools/util/index.d.ts +10 -0
  37. package/dist/Tools/util/isutil.d.ts +27 -17
  38. package/dist/Tools/util/tools.d.ts +10 -0
  39. package/dist/base/EventType.d.ts +7 -0
  40. package/dist/base/FeatureEventType.d.ts +7 -0
  41. package/dist/base/LayerEventType.d.ts +7 -0
  42. package/dist/base/MapEventType.d.ts +7 -0
  43. package/dist/base/base.d.ts +30 -3
  44. package/dist/base/baseClass.d.ts +22 -5
  45. package/dist/base/baseGraphicLayer.d.ts +93 -77
  46. package/dist/base/baseLayer.d.ts +7 -0
  47. package/dist/base/baseMap.d.ts +7 -0
  48. package/dist/base/baseOptionType.d.ts +15 -5
  49. package/dist/base/baseTileLayer.d.ts +10 -0
  50. package/dist/base/eventTarget.d.ts +10 -0
  51. package/dist/extend/Control/baseLayerSwitch.d.ts +15 -1
  52. package/dist/extend/Control/drawText.d.ts +11 -1
  53. package/dist/extend/Control/imageHJ.d.ts +10 -3
  54. package/dist/extend/Control/index.d.ts +14 -4
  55. package/dist/extend/Control/locationbar.d.ts +10 -3
  56. package/dist/extend/Control/swipe.d.ts +16 -5
  57. package/dist/extend/interaction/SelectTransform.d.ts +4 -5
  58. package/dist/extend/tykg.d.ts +5 -5
  59. package/dist/graphic/Curve.d.ts +10 -0
  60. package/dist/graphic/DivGraphic.d.ts +13 -4
  61. package/dist/graphic/baseGraphic.d.ts +63 -60
  62. package/dist/graphic/index.d.ts +10 -0
  63. package/dist/index.d.ts +7 -0
  64. package/dist/lib/includeLibs.js +23 -24
  65. package/dist/mirage2d.cjs.js +37 -37
  66. package/dist/mirage2d.umd.js +37 -37
  67. package/dist/proj4/proj.d.ts +22 -10
  68. package/dist/query/GaodePOI.d.ts +10 -0
  69. package/dist/query/GaodeRoute.d.ts +17 -0
  70. package/dist/query/baseGaode.d.ts +7 -0
  71. package/dist/query/index.d.ts +10 -0
  72. package/package.json +26 -7
  73. package/readme.md +12 -12
@@ -1,7 +1,7 @@
1
1
  import { IImageCanvasLayerOption } from "../../base/baseOptionType";
2
2
  import { baseLayer } from "../../base/baseLayer";
3
3
  import Scale from "ol-ext/control/Scale";
4
- import { drawTextControl } from '../../extend/Control/drawText';
4
+ import { drawTextControl } from "../../extend/Control/drawText";
5
5
  export declare class ImageCanvasLayer extends baseLayer {
6
6
  scale: Scale;
7
7
  ppi: number;
@@ -1,3 +1,10 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-01-13 22:43:45
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2022-12-10 16:59:14
6
+ * @Description: 功能
7
+ */
1
8
  import { baseGraphicLayer } from "../../base/baseGraphicLayer";
2
9
  import { IGraphicLayerOption } from "../../base/baseOptionType";
3
10
  export declare class kmlLayer extends baseGraphicLayer {
@@ -1,5 +1,13 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-01-13 22:43:45
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2023-01-19 11:10:20
6
+ * @Description: 功能
7
+ */
8
+ /// <reference types="node" />
1
9
  import Feature from "ol/Feature";
2
- import { LineString, Point } from "ol/geom";
10
+ import { Geometry, LineString, Point } from "ol/geom";
3
11
  import { Coordinate } from "ol/coordinate";
4
12
  import { IPathLayerOption } from "../../base/baseOptionType";
5
13
  import { baseLayer } from "../../base/baseLayer";
@@ -22,7 +30,6 @@ export declare class PathLayer extends baseLayer {
22
30
  private pathLineFeature;
23
31
  private lastAngle;
24
32
  private pathIndex;
25
- private timer;
26
33
  private pathNodeInfo;
27
34
  private geoMarkerCircle;
28
35
  private moveNodeInfo;
@@ -32,6 +39,7 @@ export declare class PathLayer extends baseLayer {
32
39
  private routeFeatures;
33
40
  private _source;
34
41
  private multiLinePathData;
42
+ timer: NodeJS.Timer;
35
43
  constructor(layerid: any, options: IPathLayerOption);
36
44
  private styleFunc;
37
45
  private moveFeature;
@@ -49,67 +57,62 @@ export declare class PathLayer extends baseLayer {
49
57
  private moveFeature2;
50
58
  private ComputDirection;
51
59
  /**
52
- * @description:根据坐标或点获取网络路径上的最近点
53
- * @param {Feature<Point> | Coordinate} Coordinate
54
- * @return {Feature<Point>} Point
55
- */
60
+ * :根据坐标或点获取网络路径上的最近点
61
+ * @param {Feature<Point> | Coordinate} Coordinate
62
+ * @returns {Feature<Point>} Point
63
+ */
56
64
  getNearestPointOnPathNetWork(Coordinate: Feature<Point> | Coordinate): Feature<Point>;
57
65
  /**
58
- * @description:添加导航mark,仅能存在一个
59
- * @param {Feature<Point> | Coordinate} Coordinate
60
- * @param {number} angle 角度
61
- * @param {boolean} addUserMarker 是否添加新的marker
62
- * @return {Feature<Point>} Point
63
- */
66
+ * 添加导航mark,仅能存在一个
67
+ */
64
68
  addNavigationMarker(): void;
65
69
  /**
66
- * @description:设置导航mark位置及角度
67
- * @param {Feature<Point> | Coordinate} Coordinate
68
- * @param {number} angle 角度
69
- * @return {Feature<Point>} Point
70
- */
70
+ * :设置导航mark位置及角度
71
+ * @param {Feature<Point> | Coordinate} Coordinate
72
+ * @param {number} angle 角度
73
+ * @returns {Feature<Point>} Point
74
+ */
71
75
  setNavigationMarker(Coordinate: Feature<Point> | Coordinate, angle?: number): void;
72
76
  /**
73
- * @description:设置导航mark位置及角度
74
- * @param {Feature<Point> | Coordinate} Coordinate
75
- * @param {number} angle 角度
76
- * @param {boolean} addUserMarker 是否添加新的marker
77
- * @return {Feature<Point>} Point
78
- */
77
+ * 更新导航点
78
+ * @param {Feature<Point>} currentPoint
79
+ * @returns {Feature<Point>} Point
80
+ */
79
81
  private updateNavigationMarker;
80
82
  /**
81
- * @description:返回导航路径
82
- */
83
+ * 返回导航路径
84
+ * @returns {LineString} 线
85
+ */
83
86
  getPathLine(): LineString;
84
87
  /**
85
- * @description:计算导航路径
86
- * @param {Coordinate} startCoordinate startCoordinate
87
- * @param {Coordinate} endPointCoordinate 标准GeoJson格式
88
- */
88
+ * :计算导航路径
89
+ * @param {Coordinate} startCoordinate startCoordinate
90
+ * @param {Coordinate} endPointCoordinate 标准GeoJson格式
91
+ */
89
92
  computerPath(startCoordinate: Coordinate | Feature<Point>, endPointCoordinate: Coordinate | Feature<Point>): void;
90
93
  computerPath2(startCoordinate: any, endPointCoordinate: any): void;
91
94
  /**
92
- * @description: 添加GeoJSON数据,需要数据库样式匹配
93
- * @param {string} classname 图层编号
94
- * @param {any} GeoJson 标准GeoJson格式
95
- */
96
- addGeoJsonUrl(classname: any, url: any): void;
95
+ * : 添加GeoJSON数据,需要数据库样式匹配
96
+ * @param {string} classname 图层编号
97
+ * @param {string} url json地址
98
+ */
99
+ addGeoJsonUrl(classname: string, url: string | URL): void;
97
100
  /**
98
- * @description: 添加GeoJSON数据,需要数据库样式匹配
101
+ * : 添加GeoJSON数据,需要数据库样式匹配
99
102
  * @param {string} classname 图层编号
100
103
  * @param {any} GeoJson 标准GeoJson格式
101
104
  */
102
- addGeoJson(classname: any, GeoJson: any): void;
105
+ addGeoJson(classname: string, GeoJson: any): void;
103
106
  convertGeoJsontoFeatures(GeoJson: any): any;
104
107
  addFeatures(classname: any, featuresList: any): void;
105
108
  addFeature(classname: any, feature: any): void;
106
109
  /**
107
- * @description:
108
- * @param {*} classname 分类名
109
- * @return {*} 返回要素数组
110
+ * 按classname返回要素
111
+ * @param {string} classname 分类名
112
+ * @returns {Feature<Geometry>[]} 返回要素数组
110
113
  */
111
- getFeaturesByClassName(classname: any): any;
112
- getFeatures(name: any): any;
114
+ getFeaturesByClassName(classname: string): Feature<Geometry>[];
115
+ getFeatures(name: string): any;
113
116
  getFeature(name: any): any;
114
117
  /**删除GeoJSON数据
115
118
  * @description:
@@ -1,3 +1,10 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-01-13 22:43:45
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2023-06-02 16:40:19
6
+ * @Description: 功能
7
+ */
1
8
  import { IWFSFeatureOption } from "../../base/baseOptionType";
2
9
  import { GraphicLayer } from "./GraphicLayer";
3
10
  export declare class WfsLayer extends GraphicLayer {
@@ -18,11 +25,11 @@ export declare class WfsLayer extends GraphicLayer {
18
25
  defaultExtent: any;
19
26
  isLoading: boolean;
20
27
  /**
21
- * @description:设置要素属性
22
- * @param {string} classname 分类名
23
- * @param {IWFSFeatureOption} attribute 要素属性数组
24
- * @example IWFSFeatureOption 中queryParams默认属性
25
- * queryParams = {
28
+ * 设置要素属性
29
+ * @param {string} layerid
30
+ * @param {IWFSFeatureOption} options 要素属性数组
31
+ * @example IWFSFeatureOption 中queryParams默认属性
32
+ * queryParams = {
26
33
  service: "WFS",
27
34
  request: "GetFeature",
28
35
  version: "1.0.0",
@@ -35,14 +42,14 @@ export declare class WfsLayer extends GraphicLayer {
35
42
  querykeyword: "",//属性查询字段关键字
36
43
  autoShowFeature: false//自动显示,默认关闭,打开时会根据视图变化自动加载数据
37
44
  }
38
- */
45
+ */
39
46
  constructor(layerid: string, options?: IWFSFeatureOption);
40
47
  private queryData;
41
48
  /**
42
- * @description:查询数据方法
43
- * @param {any} queryParams 可根据wfs查询参数自定义配置
44
- * @example 默认属性
45
- * queryParams = {
49
+ * :查询数据方法
50
+ * @param {any} queryParams 可根据wfs查询参数自定义配置
51
+ * @example 默认属性
52
+ * queryParams = {
46
53
  service: "WFS",
47
54
  request: "GetFeature",
48
55
  version: "1.0.0",
@@ -56,7 +63,6 @@ export declare class WfsLayer extends GraphicLayer {
56
63
  querykeyword: "",//属性查询字段关键字
57
64
  autoShowFeature: false//自动显示,默认关闭,打开时会根据视图变化自动加载数据
58
65
  }
59
- */
66
+ */
60
67
  query(queryParams?: {}): void;
61
- loadData(): void;
62
68
  }
@@ -1,3 +1,13 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-07-20 09:17:37
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2023-04-07 18:40:11
6
+ * @FilePath: \Map2D\src\Layer\index.ts
7
+ * @Description:
8
+ *
9
+ * Copyright (c) 2022 by xd, All Rights Reserved.
10
+ */
1
11
  export { ClusterLayer } from "./graphicLayer/ClusterLayer";
2
12
  export { HeatmapLayer } from "./graphicLayer/HeatmapLayer";
3
13
  export { WfsLayer } from "./graphicLayer/WfsLayer";
@@ -1,7 +1,7 @@
1
1
  import { baseTileLayer } from "../../base/baseTileLayer";
2
2
  import { ITileLayerOption } from "src/base/baseOptionType";
3
3
  /**
4
- * @typedef {Object} Options
4
+ * @typedef {object} Options
5
5
  * @property {string} [url=''] 影像地址
6
6
  * @property {number} [zIndex=1] 排序位置
7
7
  * @property {Array<number>} [ImageExtent] 显示范围[minX, minY, maxX, maxY]
@@ -14,6 +14,7 @@ import { ITileLayerOption } from "src/base/baseOptionType";
14
14
  */
15
15
  export declare class ArcGisMapServerLayer extends baseTileLayer {
16
16
  /**
17
+ * ArcGisMapServerLayer
17
18
  * @template {Options} Options
18
19
  * @param {string} [layerid='ArcGisTileXyzLayer'] 默认图层id
19
20
  * @param {Options} [Options] Options 配置项
@@ -1,7 +1,7 @@
1
1
  import { baseTileLayer } from "../../base/baseTileLayer";
2
2
  import { ITileLayerOption } from "src/base/baseOptionType";
3
3
  /**
4
- * @typedef {Object} Options
4
+ * @typedef {object} Options
5
5
  * @property {string} [url=''] 影像地址
6
6
  * @property {number} [zIndex=1] 排序位置
7
7
  * @property {Array<number>} [ImageExtent] 显示范围[minX, minY, maxX, maxY]
@@ -9,12 +9,12 @@ import { ITileLayerOption } from "src/base/baseOptionType";
9
9
  /**
10
10
  * @classdesc
11
11
  * xyz影像数据类
12
- * @extends xBaseTileLayer
12
+ * @extends baseTileLayer
13
13
  * @api
14
14
  */
15
15
  export declare class ArcGisTileXyzLayer extends baseTileLayer {
16
16
  /**
17
- * @template {Options} Options
17
+ * ArcGisTileXyzLayer
18
18
  * @param {string} [layerid='ArcGisTileXyzLayer'] 默认图层id
19
19
  * @param {ITileLayerOption} [Options] Options 配置项
20
20
  */
@@ -1,3 +1,10 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-01-13 22:43:45
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2023-05-05 11:44:55
6
+ * @Description: 功能
7
+ */
1
8
  import { baseTileLayer } from "../../base/baseTileLayer";
2
9
  import { IGeoImageLayerOption } from "../../base/baseOptionType";
3
10
  import { PolygonGraphic } from "../../graphic/Polygon";
@@ -14,21 +21,22 @@ export declare class GeoImageLayer extends baseTileLayer {
14
21
  graphic: PolygonGraphic;
15
22
  constructor(layerid: any, options: IGeoImageLayerOption);
16
23
  /**
17
- * @description: 获取影像基本属性
18
- * @return {any} 配置属性json
19
- */
24
+ * : 获取影像基本属性
25
+ * @returns {any} 配置属性json
26
+ */
20
27
  getAttribute(): IGeoImageLayerOption;
21
28
  /**
22
- * @description: 开始编辑 必须先bindGraphicLayer
23
- */
29
+ * 开始编辑 必须先bindGraphicLayer
30
+ * @param {GraphicLayer} mGraphicLayer
31
+ */
24
32
  startEdit(mGraphicLayer: GraphicLayer): void;
25
33
  /**
26
- * @description: 结束编辑
27
- */
34
+ * 结束编辑
35
+ */
28
36
  endEdit(): void;
29
37
  /**
30
- * @description: 设置影像显示比例范围,设置后可编辑
31
- */
38
+ * 设置影像显示比例范围,设置后可编辑
39
+ */
32
40
  setExtent(): void;
33
41
  setScale(scale: number): void;
34
42
  computeAutoScale(mapExtent: any): void;
@@ -1,4 +1,4 @@
1
- import { baseLayer } from '../../base/baseLayer';
1
+ import { baseLayer } from "../../base/baseLayer";
2
2
  export declare class PbfLayer extends baseLayer {
3
3
  private _source;
4
4
  constructor(layerid: string, options: {
@@ -1,3 +1,10 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-01-13 22:43:45
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2023-04-27 19:45:44
6
+ * @Description: 功能
7
+ */
1
8
  import { baseTileLayer } from "../../base/baseTileLayer";
2
9
  import { ITileLayerOption } from "src/base/baseOptionType";
3
10
  /**
@@ -1,7 +1,7 @@
1
1
  import { baseTileLayer } from "../../base/baseTileLayer";
2
2
  import { ITileLayerOption } from "src/base/baseOptionType";
3
3
  /**
4
- * @typedef {Object} Options
4
+ * @typedef {object} Options
5
5
  * @property {string} [url=''] 影像地址
6
6
  * @property {number} [zIndex=1] 排序位置
7
7
  * @property {Array<number>} [ImageExtent] 显示范围[minX, minY, maxX, maxY]
@@ -9,12 +9,12 @@ import { ITileLayerOption } from "src/base/baseOptionType";
9
9
  /**
10
10
  * @classdesc
11
11
  * xyz影像数据类
12
- * @extends base
12
+ * @extends baseTileLayer
13
13
  * @api
14
14
  */
15
15
  export declare class TileBaiDuLayer extends baseTileLayer {
16
16
  /**
17
- * @template {Options} Options
17
+ * TileBaiDuLayer
18
18
  * @param {string} [layerid='TileXyzLayer'] 默认图层id
19
19
  * @param {Options} [Options] Options 配置项
20
20
  */
@@ -1,6 +1,16 @@
1
+ /**
2
+ * @author: xd
3
+ * @date: Do not edit
4
+ * @lastEditors: xd
5
+ * @lastEditTime: Do not edit
6
+ * @filePath: Do not edit
7
+ * @description:
8
+ *
9
+ * Copyright (c) 2023 by xd, All Rights Reserved.
10
+ */
1
11
  import { baseTileLayer } from "../../base/baseTileLayer";
2
12
  /**
3
- * @typedef {Object} Options
13
+ * @typedef {object} Options
4
14
  * @property {string} [url=''] 影像地址
5
15
  * @property {number} [zIndex=1] 排序位置
6
16
  * @property {Array<number>} [ImageExtent] 显示范围[minX, minY, maxX, maxY]
@@ -8,11 +18,12 @@ import { baseTileLayer } from "../../base/baseTileLayer";
8
18
  /**
9
19
  * @classdesc
10
20
  * xyz影像数据类
11
- * @extends base
21
+ * @extends baseTileLayer
12
22
  * @api
13
23
  */
14
24
  export declare class TileGroupLayer extends baseTileLayer {
15
25
  /**
26
+ * TileGroupLayer
16
27
  * @template {Options} Options
17
28
  * @param {string} [layerid='TileGroupLayer'] 默认图层id
18
29
  * @param {Options} [Options] Options 配置项
@@ -1,7 +1,14 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-01-13 22:43:45
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2023-04-26 12:53:19
6
+ * @Description: 功能
7
+ */
1
8
  import { ITileLayerOption } from "src/base/baseOptionType";
2
9
  import { TileXyzLayer } from "./TileXyzLayer";
3
10
  /**
4
- * @typedef {Object} Options
11
+ * @typedef {object} Options
5
12
  * @property {string} [url=''] 影像地址
6
13
  * @property {number} [zIndex=1] 排序位置
7
14
  * @property {Array<number>} [ImageExtent] 显示范围[minX, minY, maxX, maxY]
@@ -9,12 +16,12 @@ import { TileXyzLayer } from "./TileXyzLayer";
9
16
  /**
10
17
  * @classdesc
11
18
  * xyz影像数据类
12
- * @extends base
19
+ * @extends TileXyzLayer
13
20
  * @api
14
21
  */
15
22
  export declare class TileTencentLayer extends TileXyzLayer {
16
23
  /**
17
- * @template {Options} Options
24
+ * TileTencentLayer
18
25
  * @param {string} [layerid='TileXyzLayer'] 默认图层id
19
26
  * @param {Options} [Options] Options 配置项
20
27
  */
@@ -1,8 +1,15 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-01-13 22:43:45
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2023-05-18 16:27:07
6
+ * @Description: 功能
7
+ */
1
8
  import { Projection } from "ol/proj";
2
9
  import { baseTileLayer } from "../../base/baseTileLayer";
3
10
  import { ITileLayerOption } from "src/base/baseOptionType";
4
11
  /**
5
- * @typedef {Object} Options
12
+ * @typedef {object} Options
6
13
  * @property {string} [url=''] 影像地址
7
14
  * @property {number} [zIndex=1] 排序位置
8
15
  * @property {Array<number>} [ImageExtent] 显示范围[minX, minY, maxX, maxY]
@@ -10,15 +17,15 @@ import { ITileLayerOption } from "src/base/baseOptionType";
10
17
  /**
11
18
  * @classdesc
12
19
  * xyz影像数据类
13
- * @extends base
20
+ * @extends baseTileLayer
14
21
  * @api
15
22
  */
16
23
  export declare class TileXyzLayer extends baseTileLayer {
17
24
  projection: Projection | string;
18
25
  /**
19
- * @template {Options} Options
26
+ * TileXyzLayer
20
27
  * @param {string} [layerid='TileXyzLayer'] 默认图层id
21
- * @param {Options} [Options] Options 配置项
28
+ * @param {ITileLayerOption} [Options] Options 配置项
22
29
  */
23
30
  constructor(layerid: string, Options: ITileLayerOption);
24
31
  private setGCJ02;
@@ -1,6 +1,14 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-01-13 22:43:45
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2022-11-26 13:07:34
6
+ * @Description: 功能
7
+ */
1
8
  import { baseTileLayer } from "../../base/baseTileLayer";
2
9
  export declare class WmsLayer extends baseTileLayer {
3
10
  /**
11
+ * WmsLayer
4
12
  * @template {Options} Options
5
13
  * @param {string} [layerid='ImageWMSLayer'] 默认图层id
6
14
  * @param {Options} [Options] Options 配置项
@@ -1,8 +1,16 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-01-13 22:43:45
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2022-11-26 13:06:10
6
+ * @Description: 功能
7
+ */
1
8
  import { baseTileLayer } from "../../base/baseTileLayer";
2
9
  import { IWmtsLayerOption } from "src/base/baseOptionType";
3
10
  export declare class WmtsLayer extends baseTileLayer {
4
11
  option: IWmtsLayerOption;
5
12
  /**
13
+ * WmtsLayer
6
14
  * @template {Options} Options
7
15
  * @param {string} [layerid='ImageWMSLayer'] 默认图层id
8
16
  * @param {IWmtsLayerOption} [Options] Options 配置项
@@ -1,3 +1,10 @@
1
+ /**
2
+ * @author: xd
3
+ * @Date: 2022-01-13 22:43:45
4
+ * @LastEditors: xd
5
+ * @LastEditTime: 2023-04-27 19:37:16
6
+ * @Description: 功能
7
+ */
1
8
  import { baseTileLayer } from "../../base/baseTileLayer";
2
9
  import { ITileLayerOption } from "../../base/baseOptionType";
3
10
  /**