我想在我的 Angular 项目中使用 Google Maps API,所以我使用这两个命令来安装 npm 包:
npm install @agm/core --save-dev
npm install @types/googlemaps --save-dev
我将此行添加到我的组件中:
import {} from "@types/googlemaps";
但是我在 VS Code 中看到了这两个错误:
[ts] File 'h:/Angular Projects/Breakfast/client/breakfast/node_modules/@types/googlemaps/index.d.ts' is not a module.
[ts] Cannot import type declaration files. Consider importing 'googlemaps' instead of '@types/googlemaps'.
我添加了这些行
"types": ["googlemaps"]
"moduleResolution": "node"
到 tsconfig.json 和 tsconfig.spec.json,但仍然没有运气。在 Chrome 开发工具上,我看到以下错误:
Error: Uncaught (in promise): TypeError: Cannot read property 'Autocomplete' of undefined
TypeError: Cannot read property 'Autocomplete' of undefined
Angular 版本 6 打字稿版本 2.9.2
我也尝试过 Angular 5。