Zoom control and streetview not showing on my Google map?
Solution 1:
That is definitely a CSS issue that you have with your code. Look for CSS that is applying to all images like:
img {
max-width: 100%;
}
Solution 2:
I had this problem, the fix was to include this CSS ...
.gmnoprint img { max-width: none; }
The CSS selector .gmnoprint img
gets to all images [img] on the Google Map [gm] controls that are non printing [noprint]. In my case max-width
had been set globally to 100%. Unsetting this fixed the issue.
Solution 3:
Best solution to reach only for google map
.gmnoprint img {
max-width: none;
}