yue1123 / vue3-baidu-map-gl

🎉百度地图 GL版 Vue3 组件库,baidu map gl components libary based on Vue3.0
https://yue1123.github.io/vue3-baidu-map-gl/
MIT License
378 stars 45 forks source link

文档示例中‘import ('bmap-draw')’存在红线提示:找不到声明文件 #100

Closed gensuineixin closed 3 weeks ago

gensuineixin commented 3 weeks ago

import('bmap-draw').then(({ DrawScene, DistanceMeasure, AreaMeasure }) 红线提示为:Could not find a declaration file for module 'bmap-draw'. 'd:/***/node_modules/bmap-draw/dist/bmap-draw.min.js' implicitly has an 'any' type. 新建位图图像

yue1123 commented 3 weeks ago

需要在 d.ts 中添加定义,参考文档的dts文件

declare module 'bmap-draw'
gensuineixin commented 3 weeks ago

根据该方法,问题已解决。感谢。