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.
Files changed (60) hide show
  1. package/dist/directives/index.d.ts +5 -0
  2. package/dist/hooks/useMap.d.ts +1 -0
  3. package/dist/hooks/useMapEvent2.d.ts +1 -0
  4. package/dist/hooks/useMapTool.d.ts +13 -0
  5. package/dist/hooks/useMapWatch.d.ts +4 -0
  6. package/dist/index.d.ts +19 -1
  7. package/dist/index.js +21900 -1
  8. package/dist/index.mjs +14912 -9582
  9. package/dist/models/base/index.d.ts +10 -0
  10. package/dist/models/ryClusters/index.d.ts +49 -0
  11. package/dist/models/ryClustersMarker/index.d.ts +42 -0
  12. package/dist/models/ryCrossHair/index.d.ts +10 -0
  13. package/dist/models/ryKML/index.d.ts +19 -0
  14. package/dist/models/ryKMLs/index.d.ts +31 -0
  15. package/dist/models/ryLines/index.d.ts +51 -0
  16. package/dist/models/ryMap/index.d.ts +79 -0
  17. package/dist/models/ryMapTool/index.d.ts +90 -0
  18. package/dist/models/ryPolygon/index.d.ts +44 -0
  19. package/dist/models/ryPolygonGeo/index.d.ts +26 -0
  20. package/dist/models/ryPolygons/index.d.ts +95 -0
  21. package/dist/models/ryStaticLayer/index.d.ts +19 -0
  22. package/dist/models/ryStaticLayers/index.d.ts +31 -0
  23. package/dist/models/ryView/index.d.ts +26 -0
  24. package/dist/models/ryWMSs/index.d.ts +30 -0
  25. package/dist/models/ryWMTSs/index.d.ts +30 -0
  26. package/dist/models/switchMap/index.d.ts +35 -0
  27. package/dist/ry-vue-mapv3.css +953 -1
  28. package/dist/ryClusters/index.d.ts +3 -0
  29. package/dist/ryClusters/src/index.d.ts +101 -0
  30. package/dist/ryClustersMarker/index.d.ts +3 -0
  31. package/dist/ryClustersMarker/src/index.d.ts +100 -0
  32. package/dist/ryCrossHair/index.d.ts +3 -0
  33. package/dist/ryCrossHair/src/index.d.ts +28 -0
  34. package/dist/ryKML/index.d.ts +3 -0
  35. package/dist/ryKML/src/index.d.ts +60 -0
  36. package/dist/ryKMLs/index.d.ts +3 -0
  37. package/dist/ryKMLs/src/index.d.ts +87 -0
  38. package/dist/ryLines/index.d.ts +3 -0
  39. package/dist/ryLines/src/index.d.ts +135 -0
  40. package/dist/ryMap/index.d.ts +3 -0
  41. package/dist/ryMap/src/index.d.ts +1334 -0
  42. package/dist/ryMapTool/index.d.ts +3 -0
  43. package/dist/ryMapTool/src/index.d.ts +236 -0
  44. package/dist/ryPolygon/index.d.ts +3 -0
  45. package/dist/ryPolygon/src/index.d.ts +117 -0
  46. package/dist/ryPolygonGeo/index.d.ts +3 -0
  47. package/dist/ryPolygonGeo/src/index.d.ts +64 -0
  48. package/dist/ryPolygons/index.d.ts +3 -0
  49. package/dist/ryStaticLayer/index.d.ts +3 -0
  50. package/dist/ryStaticLayer/src/index.d.ts +60 -0
  51. package/dist/ryStaticLayers/index.d.ts +3 -0
  52. package/dist/ryStaticLayers/src/index.d.ts +87 -0
  53. package/dist/ryWMSs/index.d.ts +3 -0
  54. package/dist/ryWMSs/src/index.d.ts +69 -0
  55. package/dist/ryWMTSs/index.d.ts +3 -0
  56. package/dist/ryWMTSs/src/index.d.ts +69 -0
  57. package/dist/switchMap/index.d.ts +3 -0
  58. package/dist/switchMap/src/index.d.ts +82 -0
  59. package/dist/utils/lMapServices.d.ts +149 -0
  60. package/package.json +5 -5
@@ -0,0 +1,5 @@
1
+ import { App } from 'vue';
2
+ declare const _default: {
3
+ install(app: App): void;
4
+ };
5
+ export default _default;
@@ -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
+ };
@@ -0,0 +1,4 @@
1
+ export default function (props: any): {
2
+ setMap: Function;
3
+ setLMap: Function;
4
+ };
package/dist/index.d.ts CHANGED
@@ -1 +1,19 @@
1
- export {}
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;