ry-vue-mapv3 0.0.3 → 0.0.4
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/directives/index.d.ts +5 -0
- package/dist/hooks/useMap.d.ts +1 -0
- package/dist/hooks/useMapEvent2.d.ts +1 -0
- package/dist/hooks/useMapTool.d.ts +13 -0
- package/dist/hooks/useMapWatch.d.ts +4 -0
- package/dist/index.d.ts +19 -1
- package/dist/index.js +21900 -1
- package/dist/index.mjs +14912 -9582
- package/dist/models/base/index.d.ts +10 -0
- package/dist/models/ryClusters/index.d.ts +49 -0
- package/dist/models/ryClustersMarker/index.d.ts +42 -0
- package/dist/models/ryCrossHair/index.d.ts +10 -0
- package/dist/models/ryKML/index.d.ts +19 -0
- package/dist/models/ryKMLs/index.d.ts +31 -0
- package/dist/models/ryLines/index.d.ts +51 -0
- package/dist/models/ryMap/index.d.ts +79 -0
- package/dist/models/ryMapTool/index.d.ts +90 -0
- package/dist/models/ryPolygon/index.d.ts +44 -0
- package/dist/models/ryPolygonGeo/index.d.ts +26 -0
- package/dist/models/ryPolygons/index.d.ts +95 -0
- package/dist/models/ryStaticLayer/index.d.ts +19 -0
- package/dist/models/ryStaticLayers/index.d.ts +31 -0
- package/dist/models/ryView/index.d.ts +26 -0
- package/dist/models/ryWMSs/index.d.ts +30 -0
- package/dist/models/ryWMTSs/index.d.ts +30 -0
- package/dist/models/switchMap/index.d.ts +35 -0
- package/dist/ry-vue-mapv3.css +953 -1
- package/dist/ryClusters/index.d.ts +3 -0
- package/dist/ryClusters/src/index.d.ts +101 -0
- package/dist/ryClustersMarker/index.d.ts +3 -0
- package/dist/ryClustersMarker/src/index.d.ts +100 -0
- package/dist/ryCrossHair/index.d.ts +3 -0
- package/dist/ryCrossHair/src/index.d.ts +28 -0
- package/dist/ryKML/index.d.ts +3 -0
- package/dist/ryKML/src/index.d.ts +60 -0
- package/dist/ryKMLs/index.d.ts +3 -0
- package/dist/ryKMLs/src/index.d.ts +87 -0
- package/dist/ryLines/index.d.ts +3 -0
- package/dist/ryLines/src/index.d.ts +135 -0
- package/dist/ryMap/index.d.ts +3 -0
- package/dist/ryMap/src/index.d.ts +1334 -0
- package/dist/ryMapTool/index.d.ts +3 -0
- package/dist/ryMapTool/src/index.d.ts +236 -0
- package/dist/ryPolygon/index.d.ts +3 -0
- package/dist/ryPolygon/src/index.d.ts +117 -0
- package/dist/ryPolygonGeo/index.d.ts +3 -0
- package/dist/ryPolygonGeo/src/index.d.ts +64 -0
- package/dist/ryPolygons/index.d.ts +3 -0
- package/dist/ryStaticLayer/index.d.ts +3 -0
- package/dist/ryStaticLayer/src/index.d.ts +60 -0
- package/dist/ryStaticLayers/index.d.ts +3 -0
- package/dist/ryStaticLayers/src/index.d.ts +87 -0
- package/dist/ryWMSs/index.d.ts +3 -0
- package/dist/ryWMSs/src/index.d.ts +69 -0
- package/dist/ryWMTSs/index.d.ts +3 -0
- package/dist/ryWMTSs/src/index.d.ts +69 -0
- package/dist/switchMap/index.d.ts +3 -0
- package/dist/switchMap/src/index.d.ts +82 -0
- package/dist/utils/lMapServices.d.ts +149 -0
- package/package.json +5 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (props: any): any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (props: any): any;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as MapToolDto } from '../models/ryMapTool/index';
|
|
2
|
+
export default function (props: MapToolDto): {
|
|
3
|
+
init: Function;
|
|
4
|
+
onPointEvent: Function;
|
|
5
|
+
onSave: Function;
|
|
6
|
+
onClick: Function;
|
|
7
|
+
getGeoJson: Function;
|
|
8
|
+
onCancel: Function;
|
|
9
|
+
onCreateLine: Function;
|
|
10
|
+
onCreateArea: Function;
|
|
11
|
+
selectGPSAll: Function;
|
|
12
|
+
onCreatePolygon: Function;
|
|
13
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,19 @@
|
|
|
1
|
-
|
|
1
|
+
import { Plugin } from 'vue';
|
|
2
|
+
import { default as Directives } from './directives/index';
|
|
3
|
+
import { RyMap } from './ryMap/index';
|
|
4
|
+
import { RyPolygonGeo } from './ryPolygonGeo/index';
|
|
5
|
+
import { RyWMSs } from './ryWMSs/index';
|
|
6
|
+
import { RyWMTSs } from './ryWMTSs/index';
|
|
7
|
+
import { RyLines } from './ryLines/index';
|
|
8
|
+
import { RyClusters } from './ryClusters/index';
|
|
9
|
+
import { RyClustersMarker } from './ryClustersMarker/index';
|
|
10
|
+
import { RyPolygon } from './ryPolygon/index';
|
|
11
|
+
import { RyPolygons } from './ryPolygons/index';
|
|
12
|
+
import { RyKML } from './ryKML/index';
|
|
13
|
+
import { RyKMLs } from './ryKMLs/index';
|
|
14
|
+
import { RyStaticLayer } from './ryStaticLayer/index';
|
|
15
|
+
import { RyStaticLayers } from './ryStaticLayers/index';
|
|
16
|
+
import { default as LMapServices } from './utils/lMapServices';
|
|
17
|
+
declare const RyUIMap: Plugin;
|
|
18
|
+
export { RyUIMap, LMapServices, Directives, RyMap, RyPolygonGeo, RyWMSs, RyWMTSs, RyLines, RyClusters, RyClustersMarker, RyPolygon, RyPolygons, RyKML, RyKMLs, RyStaticLayer, RyStaticLayers };
|
|
19
|
+
export default RyUIMap;
|