React newbie here, please bear with me : ) Hopefully this will be very simple to solve
For the moment, I am simply trying to get the map to appear on screen, but when I run the code, the page is completely blank, and even my other divs do not appear. Here is my code, put in a gist: https://gist.github.com/JoeyBodnar/f76c5d434d57c6cc6108513ad79d4cb7
A few things to note: 1) from project directory, i already ran npm install --save react-google-maps 2) the code to make the map appear is taken from here: https://github.com/tomchentw/react-google-maps
so what exactly am I doing wrong? is my declaration of "const GettingStartedGoogleMap" in the wrong place? or am I doing something wrong in the div?
also note, if I remove all google maps related code from that file, everything works as normal.
any help is appreciated, thanks
Edit, here is my code, still showing blank screen even hard coding height:
return (
<GettingStartedGoogleMap
containerElement={
<div style={{ height: `400px` }} />
}
mapElement={
<div style={{ height: `400px` }} />
}
onMapLoad={_.noop}
onMapClick={_.noop}
markers={markers}
onMarkerRightClick={_.noop}
/>
);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…