这是我的反应地图组件。
import GoogleMapReact from 'google-map-react';
this.state = {
center: {
lat: 59.95,
lng: 30.33
},
}
<div style={{ height: '100vh', width: '100%', position:"absolute" }}>
<GoogleMapReact
bootstrapURLKeys={{ key: "some token" }}
defaultCenter={this.props.center}
defaultZoom={16}
>
</GoogleMapReact>
</div>
但没有任何渲染。为什么?在github页面文档中,他们说parrent元素必须有一个绝对位置'100vh',宽度:'100%'。什么都没有显示在页面上。