我一直在尝试使用Google Maps api,但是在我的工作代码中使用gm_authFailure()函数时遇到了一些麻烦。
我试图将函数放在下面的代码中,但是在编译时总是会出现一些错误。
export default class Map extends Component {
render(){
return(
<MyMapComponent
{...this.props}
googleMapURL="https://maps.googleapis.com/maps/api/js?key=AIzaSyC_ECg0ZGIReSnKf5Ax-Bj0Q3DLXuxvajI" //google maps api key
loadingElement={<div style={{ height: `100%` }} />}
containerElement={<div style={{ height: `100%`, width: `75%` }} />} //map properties
mapElement={<div style={{ height: `100%` }} />}
/>
)
}
}