yi-map-web 1.0.0 → 1.0.2
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/index.d.ts +3 -3
- package/dist/yi-map-web.mjs +2 -2
- package/dist/yi-map-web.mjs.map +1 -1
- package/dist/yi-map-web.umd.cjs +3 -3
- package/dist/yi-map-web.umd.cjs.map +1 -1
- package/package.json +5 -15
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*
|
|
12
12
|
* // 按需引入
|
|
13
13
|
* import { MarsMapContainer, useMap } from '@your-org/mars3d-vue-components'
|
|
14
|
-
*/
|
|
14
|
+
*/
|
|
15
15
|
import "./styles/mars3d-theme.css";
|
|
16
16
|
import "mars3d-cesium/Build/Cesium/Widgets/widgets.css";
|
|
17
17
|
import "mars3d/mars3d.css";
|
|
@@ -33,9 +33,9 @@ export type { DrawType } from "./components/mars-map/composables/useDraw";
|
|
|
33
33
|
export type { PoiItem, UsePoiMarkerReturn, } from "./components/business/poi-marker/usePoiMarker";
|
|
34
34
|
export type { TrackPoint, TrackItem, UseTrackReturn, } from "./components/business/track/useTrack";
|
|
35
35
|
import type { App } from "vue";
|
|
36
|
-
declare const
|
|
36
|
+
declare const YiMapWeb: {
|
|
37
37
|
install(app: App, options?: {
|
|
38
38
|
prefix?: string;
|
|
39
39
|
}): void;
|
|
40
40
|
};
|
|
41
|
-
export default
|
|
41
|
+
export default YiMapWeb;
|
package/dist/yi-map-web.mjs
CHANGED
|
@@ -2080,7 +2080,7 @@ const components = {
|
|
|
2080
2080
|
TrackLayer: _sfc_main$1,
|
|
2081
2081
|
TrackPanel
|
|
2082
2082
|
};
|
|
2083
|
-
const
|
|
2083
|
+
const YiMapWeb = {
|
|
2084
2084
|
install(app, options) {
|
|
2085
2085
|
const prefix = (options == null ? void 0 : options.prefix) ?? "";
|
|
2086
2086
|
for (const [name, component] of Object.entries(components)) {
|
|
@@ -2096,7 +2096,7 @@ export {
|
|
|
2096
2096
|
_sfc_main$1 as TrackLayer,
|
|
2097
2097
|
TrackPanel,
|
|
2098
2098
|
VisionPanel,
|
|
2099
|
-
|
|
2099
|
+
YiMapWeb as default,
|
|
2100
2100
|
useDraw,
|
|
2101
2101
|
useMap,
|
|
2102
2102
|
useMeasure,
|