vue-geojson-view-ts 1.3.16 → 1.3.18
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/MapView.vue.d.ts +64 -0
- 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 +8609 -8562
- package/dist/vue-geojson-view-ts.umd.cjs +30 -30
- 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 +718 -701
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as L from "leaflet";
|
|
2
|
+
declare global {
|
|
3
|
+
interface Window {
|
|
4
|
+
type: boolean;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
8
|
+
loadPolygon: BooleanConstructor;
|
|
9
|
+
reverseCoordinatesPolygon: BooleanConstructor;
|
|
10
|
+
dataPolygon: ObjectConstructor;
|
|
11
|
+
configurationMap: any;
|
|
12
|
+
coordinatesMap: ArrayConstructor;
|
|
13
|
+
getGeoJSON: FunctionConstructor;
|
|
14
|
+
getCoodMarker: FunctionConstructor;
|
|
15
|
+
isSatelite: BooleanConstructor;
|
|
16
|
+
}, unknown, {
|
|
17
|
+
idMap: string;
|
|
18
|
+
mapRender: L.Map | null;
|
|
19
|
+
markerRender: L.Marker<any> | null;
|
|
20
|
+
renderCoordinates: unknown[] | undefined;
|
|
21
|
+
renderGeojson: any;
|
|
22
|
+
markerIcon: {
|
|
23
|
+
iconUrl: string;
|
|
24
|
+
iconSize: number[];
|
|
25
|
+
iconAnchor: number[];
|
|
26
|
+
};
|
|
27
|
+
layersFeatureGroup: any;
|
|
28
|
+
featuresData: any;
|
|
29
|
+
currentTileLayer: L.TileLayer | null;
|
|
30
|
+
isSatelliteView: boolean;
|
|
31
|
+
}, {}, {
|
|
32
|
+
createSatelliteControl(): L.Control;
|
|
33
|
+
toggleSatelliteView(): void;
|
|
34
|
+
getLayersFeaturesInGeoJson(): (import("geojson").GeometryCollection<import("geojson").Geometry> | import("geojson").FeatureCollection<import("geojson").Geometry, any> | import("geojson").Feature<import("geojson").MultiPoint, any>)[];
|
|
35
|
+
triggerSaveEdit(): void;
|
|
36
|
+
makeid(length: number): void;
|
|
37
|
+
renderMap(): void;
|
|
38
|
+
createMap(): void;
|
|
39
|
+
viewMap(): void;
|
|
40
|
+
getPointToLayer(feature: any, latlng: any): L.Marker<any>;
|
|
41
|
+
searchAddress(query: string): Promise<any>;
|
|
42
|
+
setCoordinates({ lat, lng, }: {
|
|
43
|
+
lat: number;
|
|
44
|
+
lng: number;
|
|
45
|
+
moveMarker?: boolean | undefined;
|
|
46
|
+
}): void;
|
|
47
|
+
getPopupContent(feature: any): string;
|
|
48
|
+
getPolygonTooltipContent(feature: any): string;
|
|
49
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
loadPolygon: BooleanConstructor;
|
|
51
|
+
reverseCoordinatesPolygon: BooleanConstructor;
|
|
52
|
+
dataPolygon: ObjectConstructor;
|
|
53
|
+
configurationMap: any;
|
|
54
|
+
coordinatesMap: ArrayConstructor;
|
|
55
|
+
getGeoJSON: FunctionConstructor;
|
|
56
|
+
getCoodMarker: FunctionConstructor;
|
|
57
|
+
isSatelite: BooleanConstructor;
|
|
58
|
+
}>>, {
|
|
59
|
+
loadPolygon: boolean;
|
|
60
|
+
reverseCoordinatesPolygon: boolean;
|
|
61
|
+
isSatelite: boolean;
|
|
62
|
+
configurationMap: any;
|
|
63
|
+
}, {}>;
|
|
64
|
+
export default _sfc_main;
|