我正在使用goole-map-react npm使用以下代码,我正确地执行了所有步骤,但是未在浏览器中加载地图
这是我的代码:-
import React, { Component } from 'react'
import GoogleMapReact from 'google-map-react'
const AnyReactComponent = ({ text }) => <div>{text}</div>;
class GooogleMap extends Component {
static defaultProps = {
center: {
lat: 59.95,
lng: 30.33
},
zoom: 11
};
render() {
return (
// Important! Always set the container height explicitly
<div style={{ height: '100vh', width: '100%' }}>
<GoogleMapReact
bootstrapURLKeys={{ key:"my API_key"}}
defaultCenter={this.props.center}
defaultZoom={this.props.zoom}
>
<AnyReactComponent
lat={'59.955413'}
lng={'30.337844'}
text={'Kreyser Avrora'}
/>
</GoogleMapReact>
</div>
);
}
}
export default GooogleMap;
我在浏览器中开始使用这个东西:-