有人可以让我知道如何更改来自默认属性的 defaultCenter。如何更改默认属性并动态地从服务器提供值。
class SimpleMap extends React.Component {
static defaultProps = {
center: {lat: 59.95, lng: 30.33},
zoom: 11
};
render() {
return (
<GoogleMapReact
defaultCenter={this.props.center}
defaultZoom={this.props.zoom}
>
)
}
}