我正在尝试使用此库" react-google-maps" 在我的应用程序中显示谷歌地图。从github页面跟踪教程后,我在第一次运行时遇到此错误(这是一个create-react-app + typescript应用程序):
我有点迷失在这里。任何人之前都使用过这个库吗?这是我的代码:
import * as React from 'react';
import { GoogleMap, Marker, withGoogleMap, withScriptjs } from 'react-google-maps';
import { compose, withProps } from 'recompose';
const TerrMap: React.StatelessComponent<{
isMarkerShown: boolean
}> = compose(
withProps({
googleMapURL: "https://maps.googleapis.com/maps/api/js?key=__my_api_key__&v=3.exp&libraries=geometry,drawing,places",
loadingElement: <div style={{ height: `100%` }} />,
containerElement: <div style={{ height: `400px` }} />,
mapElement: <div style={{ height: `100%` }} />,
}),
withScriptjs,
withGoogleMap
)( (props: any) => {
return (
<GoogleMap
defaultZoom={8}
defaultCenter={{ lat: -34.397, lng: 150.644 }}
>
{props.isMarkerShown && <Marker position={{ lat: -34.397, lng: 150.644 }} />}
</GoogleMap>
);
} ) as any;
答案 0 :(得分:4)
如果尚未回答。这是解决此问题的方法。
"@types/googlemaps"
和"@types/markerclustererplus"
-
{
"compilerOptions":{
...,
"types":[
...
"googlemaps",
"markerclustererplus"
]
}
}
这应该可以解决您的问题。
答案 1 :(得分:0)
您必须在文件顶部添加此表示法
/*global google*/
我希望它适合你
答案 2 :(得分:0)
如果您使用打字稿,则必须安装:
npm install --save-dev @types/googlemaps
可以在这里找到更好的描述: react-google-maps-cannot-find-namespace-google