mirage2d 1.2.20 → 1.2.21
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 +2 -0
- package/dist/extend/Control/CrossStars.d.ts +16 -0
- package/dist/mirage2d.cjs.js +25 -25
- package/dist/mirage2d.umd.js +24 -24
- package/package.json +1 -1
- package/dist/MirageHttp.es.js +0 -5268
- package/dist/MirageHttp.es.js.map +0 -205
- package/dist/MirageHttp.umd.js +0 -2
- package/dist/MirageHttp.umd.js.map +0 -1263
package/dist/Layer/XMap.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ import { Geometry, SimpleGeometry } from "ol/geom";
|
|
|
19
19
|
import * as mapControls from "../extend/Control";
|
|
20
20
|
import { SelectTransform } from "../extend/interaction/SelectTransform";
|
|
21
21
|
import { proj } from "../proj4/proj";
|
|
22
|
+
import { CrossStars } from "../extend/Control/CrossStars";
|
|
22
23
|
export declare class MirageMap extends baseMap {
|
|
23
24
|
private _mapOption;
|
|
24
25
|
private _layerArray;
|
|
@@ -43,6 +44,7 @@ export declare class MirageMap extends baseMap {
|
|
|
43
44
|
baseLayerSwitch: mapControls.baseLayerSwitch;
|
|
44
45
|
swipe: mapControls.swipeControl;
|
|
45
46
|
selectTransform: SelectTransform;
|
|
47
|
+
CrossStars: CrossStars;
|
|
46
48
|
};
|
|
47
49
|
Proj: proj;
|
|
48
50
|
private splitInteraction;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @author: xd
|
|
3
|
+
* @Date: 2022-09-15 20:15:34
|
|
4
|
+
* @LastEditors: xd
|
|
5
|
+
* @LastEditTime: 2023-05-25 15:49:43
|
|
6
|
+
* @FilePath: \Map2D\src\extend\Control\imageHJ.ts
|
|
7
|
+
* @Description:
|
|
8
|
+
*
|
|
9
|
+
* Copyright (c) 2022 by xd, All Rights Reserved.
|
|
10
|
+
*/
|
|
11
|
+
import { Control } from "ol/control";
|
|
12
|
+
export declare class CrossStars extends Control {
|
|
13
|
+
constructor(opt_options: any);
|
|
14
|
+
show(): void;
|
|
15
|
+
hide(): void;
|
|
16
|
+
}
|