vue-geojson-view-ts 1.3.1 → 1.3.3
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/components/MapHeatComponent.vue.d.ts +90 -0
- package/dist/data/bolivia.geojson +2084 -0
- package/dist/data/cities/be.geojson +246 -0
- package/dist/data/cities/cbba.geojson +165 -0
- package/dist/data/cities/ch.geojson +170 -0
- package/dist/data/cities/lp.geojson +314 -0
- package/dist/data/cities/or.geojson +253 -0
- package/dist/data/cities/pd.geojson +164 -0
- package/dist/data/cities/pt.geojson +379 -0
- package/dist/data/cities/sc.geojson +224 -0
- package/dist/data/cities/tj.geojson +86 -0
- package/dist/image/gmap01.png +0 -0
- package/dist/index.d.ts +2 -0
- package/dist/style.css +1 -1
- package/dist/vue-geojson-view-ts.js +29211 -4719
- package/dist/vue-geojson-view-ts.umd.cjs +441 -8
- package/package.json +8 -3
- package/src/components/MapHeatComponent.vue +653 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
coords: any;
|
|
3
|
+
loadMapa: any;
|
|
4
|
+
typeMap: StringConstructor;
|
|
5
|
+
abrirCerrarLoader: FunctionConstructor;
|
|
6
|
+
onClickMarket: FunctionConstructor;
|
|
7
|
+
configurationMap: {
|
|
8
|
+
default: () => {
|
|
9
|
+
strokeColor: string;
|
|
10
|
+
copyright: string;
|
|
11
|
+
height: string;
|
|
12
|
+
maxZoom: number;
|
|
13
|
+
iconMarker: {
|
|
14
|
+
iconUrl: string;
|
|
15
|
+
iconSize: number[];
|
|
16
|
+
iconAnchor: number[];
|
|
17
|
+
class: string;
|
|
18
|
+
type: string;
|
|
19
|
+
};
|
|
20
|
+
dragMarker: boolean;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
}, unknown, {
|
|
24
|
+
radius: number;
|
|
25
|
+
blur: number;
|
|
26
|
+
zoom: number;
|
|
27
|
+
type: string;
|
|
28
|
+
olMap: any;
|
|
29
|
+
heatLayer: any;
|
|
30
|
+
pointLayer: any;
|
|
31
|
+
countryLayer: any;
|
|
32
|
+
overlay: any;
|
|
33
|
+
showSetting: boolean;
|
|
34
|
+
cantidad: number;
|
|
35
|
+
}, {}, {
|
|
36
|
+
changeTypeMap(type: string): void;
|
|
37
|
+
initMap(): void;
|
|
38
|
+
initClick(): void;
|
|
39
|
+
closeOverlay(): false;
|
|
40
|
+
onClickListener(event: any): Promise<void>;
|
|
41
|
+
updateSource(coords: any): void;
|
|
42
|
+
updatePointSource(coords: any): void;
|
|
43
|
+
changeCountryLayer(data: any): Promise<void>;
|
|
44
|
+
fitMap(): void;
|
|
45
|
+
countryFunction(evt: any): void;
|
|
46
|
+
setRadius(radius: any): void;
|
|
47
|
+
setBlur(blur: any): void;
|
|
48
|
+
irACiudad(): void;
|
|
49
|
+
toggleSettings(): void;
|
|
50
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
51
|
+
coords: any;
|
|
52
|
+
loadMapa: any;
|
|
53
|
+
typeMap: StringConstructor;
|
|
54
|
+
abrirCerrarLoader: FunctionConstructor;
|
|
55
|
+
onClickMarket: FunctionConstructor;
|
|
56
|
+
configurationMap: {
|
|
57
|
+
default: () => {
|
|
58
|
+
strokeColor: string;
|
|
59
|
+
copyright: string;
|
|
60
|
+
height: string;
|
|
61
|
+
maxZoom: number;
|
|
62
|
+
iconMarker: {
|
|
63
|
+
iconUrl: string;
|
|
64
|
+
iconSize: number[];
|
|
65
|
+
iconAnchor: number[];
|
|
66
|
+
class: string;
|
|
67
|
+
type: string;
|
|
68
|
+
};
|
|
69
|
+
dragMarker: boolean;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
}>>, {
|
|
73
|
+
configurationMap: {
|
|
74
|
+
strokeColor: string;
|
|
75
|
+
copyright: string;
|
|
76
|
+
height: string;
|
|
77
|
+
maxZoom: number;
|
|
78
|
+
iconMarker: {
|
|
79
|
+
iconUrl: string;
|
|
80
|
+
iconSize: number[];
|
|
81
|
+
iconAnchor: number[];
|
|
82
|
+
class: string;
|
|
83
|
+
type: string;
|
|
84
|
+
};
|
|
85
|
+
dragMarker: boolean;
|
|
86
|
+
};
|
|
87
|
+
coords: any;
|
|
88
|
+
loadMapa: any;
|
|
89
|
+
}, {}>;
|
|
90
|
+
export default _sfc_main;
|