yi-map-web 1.0.2 → 1.0.21
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.css +1240 -0
- package/dist/yi-map-web.mjs.map +1 -1
- package/dist/yi-map-web.umd.cjs +3 -0
- package/dist/yi-map-web.umd.cjs.map +1 -1
- package/package.json +8 -2
- package/dist/style.css +0 -4295
package/dist/index.d.ts
CHANGED
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
*
|
|
12
12
|
* // 按需引入
|
|
13
13
|
* import { MarsMapContainer, useMap } from '@your-org/mars3d-vue-components'
|
|
14
|
+
*
|
|
15
|
+
* // 样式导入(如果 CSS 未内联)
|
|
16
|
+
* import '@your-org/mars3d-vue-components/dist/yi-map-web.css';
|
|
14
17
|
*/
|
|
15
|
-
import "./styles/mars3d-theme.css";
|
|
16
|
-
import "mars3d-cesium/Build/Cesium/Widgets/widgets.css";
|
|
17
|
-
import "mars3d/mars3d.css";
|
|
18
18
|
export { default as MarsMapContainer } from "./components/mars-map/MarsMapContainer.vue";
|
|
19
19
|
export { default as ToolbarPanel } from "./components/mars-map/panels/ToolbarPanel.vue";
|
|
20
20
|
export { default as VisionPanel } from "./components/mars-map/panels/VisionPanel.vue";
|