Could some one let me know how to change the defaultCenter which is coming from the default property. How to change the default property and give the values from the server dynamically.
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}
>
)
}
}