mirage2d 1.1.81 → 1.1.82

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.
@@ -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);
@@ -23,7 +23,7 @@ export declare class GeoImageLayer extends baseTileLayer {
23
23
  /**
24
24
  * @description: 开始编辑
25
25
  */
26
- startEdit(mGraphicLayer: GraphicLayer, mSelectTransform: SelectTransform): void;
26
+ startEdit(mGraphicLayer: GraphicLayer): void;
27
27
  /**
28
28
  * @description: 结束编辑
29
29
  */
@@ -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, mSelectTransform: SelectTransform): void;
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
  }