@idmwx/idmui-gl3 0.0.2
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.md +27 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5620 -0
- package/dist/index.umd.cjs +204 -0
- package/dist/mapbox/index.d.ts +6 -0
- package/dist/mapbox/src/components/layer.vue.d.ts +82 -0
- package/dist/mapbox/src/components/other/alertZone.vue.d.ts +38 -0
- package/dist/mapbox/src/components/other/ecaZone.vue.d.ts +32 -0
- package/dist/mapbox/src/components/other/enc.vue.d.ts +54 -0
- package/dist/mapbox/src/components/other/gmdssArea.vue.d.ts +32 -0
- package/dist/mapbox/src/components/other/latLng.vue.d.ts +73 -0
- package/dist/mapbox/src/components/other/loadLines.vue.d.ts +32 -0
- package/dist/mapbox/src/components/other/measure.vue.d.ts +52 -0
- package/dist/mapbox/src/components/other/point.vue.d.ts +49 -0
- package/dist/mapbox/src/components/other/port.vue.d.ts +41 -0
- package/dist/mapbox/src/components/other/specialArea.vue.d.ts +32 -0
- package/dist/mapbox/src/components/other/terminator.vue.d.ts +27 -0
- package/dist/mapbox/src/components/other/timezone.vue.d.ts +32 -0
- package/dist/mapbox/src/components/other/vra.vue.d.ts +32 -0
- package/dist/mapbox/src/components/other/warZone.vue.d.ts +32 -0
- package/dist/mapbox/src/components/weather/arctic.vue.d.ts +50 -0
- package/dist/mapbox/src/components/weather/current.vue.d.ts +77 -0
- package/dist/mapbox/src/components/weather/currentParticle.vue.d.ts +68 -0
- package/dist/mapbox/src/components/weather/iceberg.vue.d.ts +33 -0
- package/dist/mapbox/src/components/weather/precip3h.vue.d.ts +50 -0
- package/dist/mapbox/src/components/weather/prmsl.vue.d.ts +35 -0
- package/dist/mapbox/src/components/weather/sigWave.vue.d.ts +34 -0
- package/dist/mapbox/src/components/weather/swell.vue.d.ts +35 -0
- package/dist/mapbox/src/components/weather/temp.vue.d.ts +50 -0
- package/dist/mapbox/src/components/weather/tropical.vue.d.ts +66 -0
- package/dist/mapbox/src/components/weather/visibility.vue.d.ts +49 -0
- package/dist/mapbox/src/components/weather/waterTemp.vue.d.ts +50 -0
- package/dist/mapbox/src/components/weather/wind.vue.d.ts +78 -0
- package/dist/mapbox/src/components/weather/windParticle.vue.d.ts +68 -0
- package/dist/mapbox/src/helper.d.ts +161 -0
- package/dist/mapbox/src/index.vue.d.ts +94 -0
- package/dist/pi.svg +48 -0
- package/dist/style.css +1 -0
- package/dist/vite.svg +1 -0
- package/package.json +70 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Plugin } from 'vue';
|
|
2
|
+
import MapboxGL from './src/index.vue';
|
|
3
|
+
import TropicalGL from './src/components/weather/tropical.vue';
|
|
4
|
+
import LatLngGL from './src/components/other/latLng.vue';
|
|
5
|
+
export declare const MapboxGLPlugin: Plugin;
|
|
6
|
+
export { MapboxGL, TropicalGL, LatLngGL };
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace top {
|
|
9
|
+
const type_1: NumberConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
const _default: number;
|
|
12
|
+
export { _default as default };
|
|
13
|
+
}
|
|
14
|
+
namespace toggleMenu {
|
|
15
|
+
const type_2: BooleanConstructor;
|
|
16
|
+
export { type_2 as type };
|
|
17
|
+
const _default_1: boolean;
|
|
18
|
+
export { _default_1 as default };
|
|
19
|
+
}
|
|
20
|
+
namespace toggleVersion {
|
|
21
|
+
const type_3: NumberConstructor;
|
|
22
|
+
export { type_3 as type };
|
|
23
|
+
}
|
|
24
|
+
namespace isLogin {
|
|
25
|
+
const type_4: BooleanConstructor;
|
|
26
|
+
export { type_4 as type };
|
|
27
|
+
const _default_2: undefined;
|
|
28
|
+
export { _default_2 as default };
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
const emits: string[];
|
|
32
|
+
function data(): {
|
|
33
|
+
showLayers: boolean;
|
|
34
|
+
source: string;
|
|
35
|
+
weatherLayers: never[];
|
|
36
|
+
activeWeatherLayers: never[];
|
|
37
|
+
autoActive: boolean;
|
|
38
|
+
otherLayers: never[];
|
|
39
|
+
layers: {
|
|
40
|
+
weather: any[];
|
|
41
|
+
other: any[];
|
|
42
|
+
};
|
|
43
|
+
weatherLayersCache: string;
|
|
44
|
+
autoActiveCache: string;
|
|
45
|
+
otherLayersCache: string;
|
|
46
|
+
sourceCache: string;
|
|
47
|
+
showCoord: boolean;
|
|
48
|
+
showMeasure: boolean;
|
|
49
|
+
showPoint: boolean;
|
|
50
|
+
show3d: boolean;
|
|
51
|
+
version: {
|
|
52
|
+
v: string;
|
|
53
|
+
k: string;
|
|
54
|
+
};
|
|
55
|
+
right: number;
|
|
56
|
+
};
|
|
57
|
+
namespace computed {
|
|
58
|
+
function computeLayerClass(): (layer: any, layers: any) => "layer disabled" | "layer active" | "layer";
|
|
59
|
+
}
|
|
60
|
+
namespace watch {
|
|
61
|
+
export namespace showLayers {
|
|
62
|
+
function handler(): void;
|
|
63
|
+
}
|
|
64
|
+
export namespace toggleMenu_1 {
|
|
65
|
+
function handler(): void;
|
|
66
|
+
}
|
|
67
|
+
export { toggleMenu_1 as toggleMenu };
|
|
68
|
+
}
|
|
69
|
+
function mounted(): void;
|
|
70
|
+
namespace methods {
|
|
71
|
+
function handleConfirm(): void;
|
|
72
|
+
function handleWeatherLayerPick(layer: any): void;
|
|
73
|
+
function handleActiveWeatherLayerPick(layer: any): void;
|
|
74
|
+
function handleOtherLayerPick(layer: any): void;
|
|
75
|
+
function handleMenuToggle(): void;
|
|
76
|
+
function handleCoordToggle(): void;
|
|
77
|
+
function handlePointToggle(): void;
|
|
78
|
+
function handleMeasureToggle(): void;
|
|
79
|
+
function handle3DToggle(): void;
|
|
80
|
+
function handleSourceToggle(value: any): void;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace zone {
|
|
9
|
+
const type_1: ObjectConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace beforeLayer {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
function data(): {
|
|
18
|
+
source: string;
|
|
19
|
+
polygonLayer: string;
|
|
20
|
+
polygonLabelLayer: string;
|
|
21
|
+
lineLayer: string;
|
|
22
|
+
lineLabelLayer: string;
|
|
23
|
+
pointLayer: string;
|
|
24
|
+
showZone: boolean;
|
|
25
|
+
form: {};
|
|
26
|
+
};
|
|
27
|
+
namespace watch {
|
|
28
|
+
export namespace zone_1 {
|
|
29
|
+
function handler(): void;
|
|
30
|
+
}
|
|
31
|
+
export { zone_1 as zone };
|
|
32
|
+
}
|
|
33
|
+
namespace methods {
|
|
34
|
+
function handleClick(event: any): void;
|
|
35
|
+
function handleRender(): void;
|
|
36
|
+
function handleClear(): void;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace zone {
|
|
9
|
+
const type_1: ObjectConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace beforeLayer {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
function data(): {
|
|
18
|
+
source: string;
|
|
19
|
+
zoneLayer: string;
|
|
20
|
+
zoneLabelLayer: string;
|
|
21
|
+
};
|
|
22
|
+
namespace watch {
|
|
23
|
+
export namespace zone_1 {
|
|
24
|
+
function handler(): void;
|
|
25
|
+
}
|
|
26
|
+
export { zone_1 as zone };
|
|
27
|
+
}
|
|
28
|
+
namespace methods {
|
|
29
|
+
function handleRender(): void;
|
|
30
|
+
function handleClear(): void;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace enabled {
|
|
9
|
+
const type_1: BooleanConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace beforeLayer {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
const _default: string;
|
|
16
|
+
export { _default as default };
|
|
17
|
+
}
|
|
18
|
+
namespace bottom {
|
|
19
|
+
const type_3: StringConstructor;
|
|
20
|
+
export { type_3 as type };
|
|
21
|
+
const _default_1: string;
|
|
22
|
+
export { _default_1 as default };
|
|
23
|
+
}
|
|
24
|
+
namespace token {
|
|
25
|
+
const type_4: StringConstructor;
|
|
26
|
+
export { type_4 as type };
|
|
27
|
+
const _default_2: string;
|
|
28
|
+
export { _default_2 as default };
|
|
29
|
+
}
|
|
30
|
+
namespace toggleVersion {
|
|
31
|
+
const type_5: NumberConstructor;
|
|
32
|
+
export { type_5 as type };
|
|
33
|
+
}
|
|
34
|
+
namespace permission {
|
|
35
|
+
const type_6: NumberConstructor;
|
|
36
|
+
export { type_6 as type };
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
const emits: string[];
|
|
40
|
+
function data(): any;
|
|
41
|
+
namespace watch {
|
|
42
|
+
export namespace vendor {
|
|
43
|
+
function handler(): void;
|
|
44
|
+
const immediate: boolean;
|
|
45
|
+
}
|
|
46
|
+
export namespace toggleVersion_1 {
|
|
47
|
+
export function handler(): void;
|
|
48
|
+
const immediate_1: boolean;
|
|
49
|
+
export { immediate_1 as immediate };
|
|
50
|
+
}
|
|
51
|
+
export { toggleVersion_1 as toggleVersion };
|
|
52
|
+
}
|
|
53
|
+
const methods: {};
|
|
54
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace area {
|
|
9
|
+
const type_1: ObjectConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace beforeLayer {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
function data(): {
|
|
18
|
+
source: string;
|
|
19
|
+
areaLayer: string;
|
|
20
|
+
areaLabelLayer: string;
|
|
21
|
+
};
|
|
22
|
+
namespace watch {
|
|
23
|
+
export namespace area_1 {
|
|
24
|
+
function handler(): void;
|
|
25
|
+
}
|
|
26
|
+
export { area_1 as area };
|
|
27
|
+
}
|
|
28
|
+
namespace methods {
|
|
29
|
+
function handleRender(): void;
|
|
30
|
+
function handleClear(): void;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace show {
|
|
9
|
+
const type_1: BooleanConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace bottom {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
const _default: string;
|
|
16
|
+
export { _default as default };
|
|
17
|
+
}
|
|
18
|
+
namespace toggleVersion {
|
|
19
|
+
const type_3: NumberConstructor;
|
|
20
|
+
export { type_3 as type };
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
function data(): {
|
|
24
|
+
lngLat: undefined;
|
|
25
|
+
source: string;
|
|
26
|
+
layer: string;
|
|
27
|
+
labelLayer: string;
|
|
28
|
+
right: number;
|
|
29
|
+
};
|
|
30
|
+
namespace watch {
|
|
31
|
+
export namespace show_1 {
|
|
32
|
+
function handler(): void;
|
|
33
|
+
const immediate: boolean;
|
|
34
|
+
}
|
|
35
|
+
export { show_1 as show };
|
|
36
|
+
export namespace map_1 {
|
|
37
|
+
export function handler(): void;
|
|
38
|
+
const immediate_1: boolean;
|
|
39
|
+
export { immediate_1 as immediate };
|
|
40
|
+
}
|
|
41
|
+
export { map_1 as map };
|
|
42
|
+
export namespace toggleVersion_1 {
|
|
43
|
+
export function handler(): void;
|
|
44
|
+
const immediate_2: boolean;
|
|
45
|
+
export { immediate_2 as immediate };
|
|
46
|
+
}
|
|
47
|
+
export { toggleVersion_1 as toggleVersion };
|
|
48
|
+
}
|
|
49
|
+
namespace methods {
|
|
50
|
+
function handleBind(): void;
|
|
51
|
+
function handleMouseMove(e: any): void;
|
|
52
|
+
function handleComputeLatLngs(): ({
|
|
53
|
+
type: string;
|
|
54
|
+
geometry: {
|
|
55
|
+
type: string;
|
|
56
|
+
coordinates: number[][];
|
|
57
|
+
};
|
|
58
|
+
properties?: undefined;
|
|
59
|
+
} | {
|
|
60
|
+
type: string;
|
|
61
|
+
geometry: {
|
|
62
|
+
type: string;
|
|
63
|
+
coordinates: number[];
|
|
64
|
+
};
|
|
65
|
+
properties: {
|
|
66
|
+
val: string;
|
|
67
|
+
};
|
|
68
|
+
})[];
|
|
69
|
+
function handleZoomEnd(): void;
|
|
70
|
+
function handleRender(): void;
|
|
71
|
+
function handleClear(): void;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace line {
|
|
9
|
+
const type_1: ObjectConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace beforeLayer {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
function data(): {
|
|
18
|
+
source: string;
|
|
19
|
+
lineLayer: string;
|
|
20
|
+
lineLabelLayer: string;
|
|
21
|
+
};
|
|
22
|
+
namespace watch {
|
|
23
|
+
export namespace line_1 {
|
|
24
|
+
function handler(): void;
|
|
25
|
+
}
|
|
26
|
+
export { line_1 as line };
|
|
27
|
+
}
|
|
28
|
+
namespace methods {
|
|
29
|
+
function handleRender(): void;
|
|
30
|
+
function handleClear(): void;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace show {
|
|
9
|
+
const type_1: BooleanConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
function data(): {
|
|
14
|
+
geojson: never[];
|
|
15
|
+
source: string;
|
|
16
|
+
layer: string;
|
|
17
|
+
labelLayer: string;
|
|
18
|
+
tmpSource: string;
|
|
19
|
+
tmpLayer: string;
|
|
20
|
+
tmpLabelLayer: string;
|
|
21
|
+
closeMarkers: {};
|
|
22
|
+
pointMarkers: {};
|
|
23
|
+
tipMarker: undefined;
|
|
24
|
+
contextmenu: undefined;
|
|
25
|
+
navigation: string;
|
|
26
|
+
};
|
|
27
|
+
namespace watch {
|
|
28
|
+
export namespace show_1 {
|
|
29
|
+
function handler(): void;
|
|
30
|
+
const immediate: boolean;
|
|
31
|
+
}
|
|
32
|
+
export { show_1 as show };
|
|
33
|
+
export namespace map_1 {
|
|
34
|
+
function handler(): void;
|
|
35
|
+
}
|
|
36
|
+
export { map_1 as map };
|
|
37
|
+
}
|
|
38
|
+
namespace methods {
|
|
39
|
+
function handleBind(): void;
|
|
40
|
+
function handleKeydown(event: any): void;
|
|
41
|
+
function handleDrag(event: any): void;
|
|
42
|
+
function handleDragEnd(event: any): void;
|
|
43
|
+
function handleContextmenu(event: any): void;
|
|
44
|
+
function handleClick(event: any): void;
|
|
45
|
+
function handlePointUpdate(featureCollection: any): any;
|
|
46
|
+
function handleTmpPointUpdate(featureCollection: any, start: any, target: any, end: any): void;
|
|
47
|
+
function handleMove(event: any): void;
|
|
48
|
+
function handleDblClick(event: any): void;
|
|
49
|
+
function handleRender(featureCollection: any): void;
|
|
50
|
+
function handleClear(featureCollection: any, deep?: boolean): void;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
const emits: string[];
|
|
5
|
+
namespace props {
|
|
6
|
+
namespace map {
|
|
7
|
+
const type: ObjectConstructor;
|
|
8
|
+
}
|
|
9
|
+
namespace show {
|
|
10
|
+
const type_1: BooleanConstructor;
|
|
11
|
+
export { type_1 as type };
|
|
12
|
+
}
|
|
13
|
+
namespace meteo {
|
|
14
|
+
const type_2: ObjectConstructor;
|
|
15
|
+
export { type_2 as type };
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
function data(): {
|
|
19
|
+
showMeteo: boolean;
|
|
20
|
+
meteoMarker: undefined;
|
|
21
|
+
helper: any;
|
|
22
|
+
};
|
|
23
|
+
namespace watch {
|
|
24
|
+
export namespace show_1 {
|
|
25
|
+
function handler(): void;
|
|
26
|
+
const immediate: boolean;
|
|
27
|
+
}
|
|
28
|
+
export { show_1 as show };
|
|
29
|
+
export namespace map_1 {
|
|
30
|
+
function handler(): void;
|
|
31
|
+
}
|
|
32
|
+
export { map_1 as map };
|
|
33
|
+
export namespace meteo_1 {
|
|
34
|
+
function handler(): void;
|
|
35
|
+
}
|
|
36
|
+
export { meteo_1 as meteo };
|
|
37
|
+
}
|
|
38
|
+
namespace computed {
|
|
39
|
+
function computeTime(): (time: any) => string;
|
|
40
|
+
function computeLat(): (lat: any, precision?: number) => any;
|
|
41
|
+
function computeLng(): (lng: any, precision?: number) => any;
|
|
42
|
+
function roundPrecision(): (num: any, precision?: number) => any;
|
|
43
|
+
}
|
|
44
|
+
namespace methods {
|
|
45
|
+
function handleBind(): void;
|
|
46
|
+
function handleClick(event: any): void;
|
|
47
|
+
function handleRender(): void;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace port {
|
|
9
|
+
const type_1: ObjectConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace beforeLayer {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
const emits: string[];
|
|
18
|
+
function data(): {
|
|
19
|
+
source: string;
|
|
20
|
+
layer: string;
|
|
21
|
+
showPort: boolean;
|
|
22
|
+
form: {};
|
|
23
|
+
marker: undefined;
|
|
24
|
+
};
|
|
25
|
+
namespace computed {
|
|
26
|
+
function computeLat(): (lat: any) => any;
|
|
27
|
+
function computeLng(): (lng: any) => any;
|
|
28
|
+
}
|
|
29
|
+
namespace watch {
|
|
30
|
+
export namespace port_1 {
|
|
31
|
+
function handler(): void;
|
|
32
|
+
}
|
|
33
|
+
export { port_1 as port };
|
|
34
|
+
}
|
|
35
|
+
namespace methods {
|
|
36
|
+
function handleClick(event: any): void;
|
|
37
|
+
function handleEmit(): void;
|
|
38
|
+
function handleRender(): void;
|
|
39
|
+
function handleClear(): void;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace area {
|
|
9
|
+
const type_1: ObjectConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace beforeLayer {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
function data(): {
|
|
18
|
+
source: string;
|
|
19
|
+
areaLayer: string;
|
|
20
|
+
areaLabelLayer: string;
|
|
21
|
+
};
|
|
22
|
+
namespace watch {
|
|
23
|
+
export namespace area_1 {
|
|
24
|
+
function handler(): void;
|
|
25
|
+
}
|
|
26
|
+
export { area_1 as area };
|
|
27
|
+
}
|
|
28
|
+
namespace methods {
|
|
29
|
+
function handleRender(): void;
|
|
30
|
+
function handleClear(): void;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace area {
|
|
9
|
+
const type_1: ObjectConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
function data(): {
|
|
14
|
+
source: string;
|
|
15
|
+
layer: string;
|
|
16
|
+
};
|
|
17
|
+
namespace watch {
|
|
18
|
+
export namespace area_1 {
|
|
19
|
+
function handler(): void;
|
|
20
|
+
}
|
|
21
|
+
export { area_1 as area };
|
|
22
|
+
}
|
|
23
|
+
namespace methods {
|
|
24
|
+
function handleRender(): void;
|
|
25
|
+
function handleClear(): void;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace zone {
|
|
9
|
+
const type_1: ObjectConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace beforeLayer {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
function data(): {
|
|
18
|
+
source: string;
|
|
19
|
+
zoneLayer: string;
|
|
20
|
+
zoneLabelLayer: string;
|
|
21
|
+
};
|
|
22
|
+
namespace watch {
|
|
23
|
+
export namespace zone_1 {
|
|
24
|
+
function handler(): void;
|
|
25
|
+
}
|
|
26
|
+
export { zone_1 as zone };
|
|
27
|
+
}
|
|
28
|
+
namespace methods {
|
|
29
|
+
function handleRender(): void;
|
|
30
|
+
function handleClear(): void;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace area {
|
|
9
|
+
const type_1: ObjectConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace beforeLayer {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
function data(): {
|
|
18
|
+
source: string;
|
|
19
|
+
areaLayer: string;
|
|
20
|
+
areaLabelLayer: string;
|
|
21
|
+
};
|
|
22
|
+
namespace watch {
|
|
23
|
+
export namespace area_1 {
|
|
24
|
+
function handler(): void;
|
|
25
|
+
}
|
|
26
|
+
export { area_1 as area };
|
|
27
|
+
}
|
|
28
|
+
namespace methods {
|
|
29
|
+
function handleRender(): void;
|
|
30
|
+
function handleClear(): void;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
namespace props {
|
|
5
|
+
namespace map {
|
|
6
|
+
const type: ObjectConstructor;
|
|
7
|
+
}
|
|
8
|
+
namespace zone {
|
|
9
|
+
const type_1: ObjectConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
}
|
|
12
|
+
namespace beforeLayer {
|
|
13
|
+
const type_2: StringConstructor;
|
|
14
|
+
export { type_2 as type };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
function data(): {
|
|
18
|
+
source: string;
|
|
19
|
+
zoneLayer: string;
|
|
20
|
+
zoneLabelLayer: string;
|
|
21
|
+
};
|
|
22
|
+
namespace watch {
|
|
23
|
+
export namespace zone_1 {
|
|
24
|
+
function handler(): void;
|
|
25
|
+
}
|
|
26
|
+
export { zone_1 as zone };
|
|
27
|
+
}
|
|
28
|
+
namespace methods {
|
|
29
|
+
function handleRender(): void;
|
|
30
|
+
function handleClear(): void;
|
|
31
|
+
}
|
|
32
|
+
}
|