mirage2d 1.1.81 → 1.1.83
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/Layer/XMap.d.ts
CHANGED
|
@@ -34,8 +34,8 @@ export declare class MirageMap extends baseMap {
|
|
|
34
34
|
locationbar: mapControls.Locationbar;
|
|
35
35
|
baseLayerSwitch: mapControls.baseLayerSwitch;
|
|
36
36
|
swipe: mapControls.swipeControl;
|
|
37
|
+
selectTransform: SelectTransform;
|
|
37
38
|
};
|
|
38
|
-
protected selectTransform: SelectTransform;
|
|
39
39
|
Proj: proj;
|
|
40
40
|
private splitInteraction;
|
|
41
41
|
constructor(mapID: string, option: any);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { baseTileLayer } from "../../base/baseTileLayer";
|
|
2
2
|
import { IGeoImageLayerOption } from "../../base/baseOptionType";
|
|
3
3
|
import { PolygonGraphic } from "../../graphic/Polygon";
|
|
4
|
-
import { SelectTransform } from "../../extend/interaction/SelectTransform";
|
|
5
4
|
import { GraphicLayer } from "../graphicLayer/GraphicLayer";
|
|
6
5
|
/**
|
|
7
6
|
* @classdesc
|
|
@@ -13,7 +12,6 @@ export declare class GeoImageLayer extends baseTileLayer {
|
|
|
13
12
|
option: IGeoImageLayerOption;
|
|
14
13
|
GraphicLayer: GraphicLayer;
|
|
15
14
|
graphic: PolygonGraphic;
|
|
16
|
-
mSelectTransform: SelectTransform;
|
|
17
15
|
constructor(layerid: any, options: IGeoImageLayerOption);
|
|
18
16
|
/**
|
|
19
17
|
* @description: 获取影像基本属性
|
|
@@ -23,7 +21,7 @@ export declare class GeoImageLayer extends baseTileLayer {
|
|
|
23
21
|
/**
|
|
24
22
|
* @description: 开始编辑
|
|
25
23
|
*/
|
|
26
|
-
startEdit(mGraphicLayer: GraphicLayer
|
|
24
|
+
startEdit(mGraphicLayer: GraphicLayer): void;
|
|
27
25
|
/**
|
|
28
26
|
* @description: 结束编辑
|
|
29
27
|
*/
|
|
@@ -3,7 +3,6 @@ import VectorSource from "ol/source/Vector";
|
|
|
3
3
|
import { IFeatureAttribute, IGraphicLayerOption, IlevelColor, ITooltipInfo } from "./baseOptionType";
|
|
4
4
|
import { Geometry } from "ol/geom";
|
|
5
5
|
import Feature from "ol/Feature";
|
|
6
|
-
import { SelectTransform } from "../extend/interaction/SelectTransform";
|
|
7
6
|
export declare class baseGraphicLayer extends baseLayer {
|
|
8
7
|
private _graphicLayerSelect;
|
|
9
8
|
selectFeature: Feature<Geometry>;
|
|
@@ -14,7 +13,6 @@ export declare class baseGraphicLayer extends baseLayer {
|
|
|
14
13
|
private _draw;
|
|
15
14
|
private _tipPoint;
|
|
16
15
|
option: IGraphicLayerOption;
|
|
17
|
-
private mSelectTransform;
|
|
18
16
|
constructor(layerid: string, Options?: IGraphicLayerOption);
|
|
19
17
|
initSelect(): void;
|
|
20
18
|
setSelectState(val?: boolean): void;
|
|
@@ -149,16 +147,8 @@ export declare class baseGraphicLayer extends baseLayer {
|
|
|
149
147
|
*/
|
|
150
148
|
startDraw(option: any): void;
|
|
151
149
|
changeGraphicData(option: any, drawFeature: any): void;
|
|
152
|
-
appendTo(map: any
|
|
150
|
+
appendTo(map: any): void;
|
|
153
151
|
toGeoJSON(): import("geojson").FeatureCollection<import("geojson").Geometry, {
|
|
154
152
|
[name: string]: any;
|
|
155
153
|
}>;
|
|
156
|
-
/**
|
|
157
|
-
* @description: 启动旋转缩放
|
|
158
|
-
*/
|
|
159
|
-
startTransform(): void;
|
|
160
|
-
/**
|
|
161
|
-
* @description: 结束旋转缩放
|
|
162
|
-
*/
|
|
163
|
-
endTransform(): void;
|
|
164
154
|
}
|