我想在我的 Angular 项目中使用 Google Maps API,所以我使用这两个命令来安装 npm 包:
npm install @agm/core --save-dev
npm install @types/googlemaps --save-dev
我在我的组件中添加了这一行:
import {} from "@types/googlemaps";
但是我在 VS 代码中看到了这两个错误:
[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"
在 Chrome 开发工具中,我看到了以下错误:
Error: Uncaught (in promise): TypeError: Cannot read property 'Autocomplete' of undefined
TypeError: Cannot read property 'Autocomplete' of undefined
角度版本6 2.9.2版
我也试过从角度5开始。