How can i do to ereas height 100% this div ?

A bit late I know but thought I would put this here anyway as I struggled with this. If I understand you correctly you can just use containerStyle.
The code below limits the height by 250px
<Map
google={this.props.google}
containerStyle={{width: '100%', height: '250px', position: 'relative'}}
zoom={14}
initialCenter={this.props.center}
>
Most helpful comment
A bit late I know but thought I would put this here anyway as I struggled with this. If I understand you correctly you can just use
containerStyle.The code below limits the height by 250px