[Solved] Google Map is not showing up [closed]


Your parent container does not have any height, thats why you don´t see the map.
Try to set the height of the div with the id of ‘map’ to some value and you will the see the map

#map {
 height: 200px;
}

enter image description here

7

solved Google Map is not showing up [closed]