Utilizing media queries, I have implemented an adaptive layout on my website.
However, when I adjust the size of the browser window beyond a specific media query, the google map begins to malfunction (refer to the image)
My Solution:
CSS:
#googleMap2{display: none;}
@media screen and (min-width: 919px){
#googleMap{display: none;}
#googleMap2{display: block;}
}
HTML:
<div id="googleMap">[google-map-v3 width="920" height="550" .......]</div>
<div id="googleMap2">[google-map-v3 width="768" height="320" .......]</div>