如何在以下代码中添加gm_authFailure?

时间:2019-01-03 08:13:52

标签: reactjs google-maps-api-3

我一直在尝试使用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%` }} />}
      />
      )
  }

}

0 个答案:

没有答案