I am trying to implement google-map-react
but the map is not showing up and I couldn't find the answer to my problem. I have set both height and width and markers are showing up but the map is not. Any idea?
What I see on screen: https://ibb.co/LN1CK3X
<div className="results__map-handler">
<GoogleMapReact
bootstrapURLKeys={{key: 'MY_KEY'}}
defaultCenter={{lat: 59.95, lon: 30.33}}
defaultZoom={11}
>
<AnyReactComponent
lat={59.955413}
lng={30.337844}
text={'MY MARKER'}
/>
</GoogleMapReact>
</div>
.results__map-handler {
width: 100%;
height: 100vh;
}