我正在尝试使用webpack和typescript在我的反应应用中使用google maps api。
我已经尝试安装此软件包:
npm install googlemaps
npm install @types/googlemaps
然后在我的应用中
import * as GoogleMapsAPI from 'googlemaps';
我收到以下错误
[ts] File 'c:/MyAppFolder/node_modules/@types/GoogleMaps/index.d.ts' is not a module.
不确定我做错了什么
答案 0 :(得分:1)
您不需要从" googlemaps"导入。 google.maps
是在googlemaps / index.d.ts中声明的全局变量。因此,您可以立即在代码中使用google.maps
。
例如
const point = new google.maps.Point(0,0);
有关typescript模块和命名空间的更多信息。您可以按照link
进行操作