vue-geojson-view-ts 1.3.19 → 1.3.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/README.md +321 -321
- package/dist/components/MapSearchAddress.vue.d.ts +1 -1
- package/dist/components/MapView.vue.d.ts +58 -20
- package/dist/data/bolivia.geojson +2084 -2084
- package/dist/data/cities/be.geojson +246 -246
- package/dist/data/cities/cbba.geojson +165 -165
- package/dist/data/cities/ch.geojson +170 -170
- package/dist/data/cities/lp.geojson +314 -314
- package/dist/data/cities/or.geojson +253 -253
- package/dist/data/cities/pd.geojson +164 -164
- package/dist/data/cities/pt.geojson +379 -379
- package/dist/data/cities/sc.geojson +224 -224
- package/dist/data/cities/tj.geojson +86 -86
- package/dist/pin.svg +4 -4
- package/dist/style.css +1 -1
- package/dist/vite-env.d.ts +1 -1
- package/dist/vue-geojson-view-ts.js +10486 -10335
- package/dist/vue-geojson-view-ts.umd.cjs +23 -20
- package/package.json +78 -78
- package/src/components/CoordinatesVerifyPolygon.vue +86 -86
- package/src/components/MapHeatComponent.vue +664 -664
- package/src/components/MapSearchAddress.vue +309 -309
- package/src/components/MapView.vue +1054 -715
|
@@ -5,19 +5,39 @@ declare global {
|
|
|
5
5
|
}
|
|
6
6
|
}
|
|
7
7
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
coordinatesMap:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
8
|
+
configurationMap: {
|
|
9
|
+
type: ObjectConstructor;
|
|
10
|
+
required: false;
|
|
11
|
+
};
|
|
12
|
+
coordinatesMap: {
|
|
13
|
+
type: (ArrayConstructor | FunctionConstructor)[];
|
|
14
|
+
required: false;
|
|
15
|
+
};
|
|
16
|
+
dataPolygon: {
|
|
17
|
+
type: (ObjectConstructor | ArrayConstructor)[];
|
|
18
|
+
required: false;
|
|
19
|
+
};
|
|
20
|
+
isSatelite: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
required: false;
|
|
23
|
+
};
|
|
24
|
+
getCoodMarker: {
|
|
25
|
+
type: FunctionConstructor;
|
|
26
|
+
required: false;
|
|
27
|
+
};
|
|
28
|
+
getGeoJSON: {
|
|
29
|
+
type: FunctionConstructor;
|
|
30
|
+
required: false;
|
|
31
|
+
};
|
|
32
|
+
loadPolygon: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
required: false;
|
|
35
|
+
};
|
|
16
36
|
}, unknown, {
|
|
17
37
|
idMap: string;
|
|
18
38
|
mapRender: L.Map | null;
|
|
19
39
|
markerRender: L.Marker<any> | null;
|
|
20
|
-
renderCoordinates:
|
|
40
|
+
renderCoordinates: number[];
|
|
21
41
|
renderGeojson: any;
|
|
22
42
|
markerIcon: {
|
|
23
43
|
iconUrl: string;
|
|
@@ -47,18 +67,36 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
47
67
|
getPopupContent(feature: any): string;
|
|
48
68
|
getPolygonTooltipContent(feature: any): string;
|
|
49
69
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
coordinatesMap:
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
70
|
+
configurationMap: {
|
|
71
|
+
type: ObjectConstructor;
|
|
72
|
+
required: false;
|
|
73
|
+
};
|
|
74
|
+
coordinatesMap: {
|
|
75
|
+
type: (ArrayConstructor | FunctionConstructor)[];
|
|
76
|
+
required: false;
|
|
77
|
+
};
|
|
78
|
+
dataPolygon: {
|
|
79
|
+
type: (ObjectConstructor | ArrayConstructor)[];
|
|
80
|
+
required: false;
|
|
81
|
+
};
|
|
82
|
+
isSatelite: {
|
|
83
|
+
type: BooleanConstructor;
|
|
84
|
+
required: false;
|
|
85
|
+
};
|
|
86
|
+
getCoodMarker: {
|
|
87
|
+
type: FunctionConstructor;
|
|
88
|
+
required: false;
|
|
89
|
+
};
|
|
90
|
+
getGeoJSON: {
|
|
91
|
+
type: FunctionConstructor;
|
|
92
|
+
required: false;
|
|
93
|
+
};
|
|
94
|
+
loadPolygon: {
|
|
95
|
+
type: BooleanConstructor;
|
|
96
|
+
required: false;
|
|
97
|
+
};
|
|
58
98
|
}>>, {
|
|
59
|
-
loadPolygon: boolean;
|
|
60
|
-
reverseCoordinatesPolygon: boolean;
|
|
61
99
|
isSatelite: boolean;
|
|
62
|
-
|
|
100
|
+
loadPolygon: boolean;
|
|
63
101
|
}, {}>;
|
|
64
102
|
export default _sfc_main;
|