Google overlay display issue

notice the way the tooltip is rendering

For some strange reason, Google maps tend to load a tooltip. Also the zoom slider is also distorted. Has anyone encountered this problem before?

+5
source share
2 answers

Definitely seen this before :)

google maps api v3 map display problem

Add to your CSS

#map_canvas label { width: auto; display:inline; }
#map_canvas img { max-width: none; }  (sometimes max-height: none; is needed too)

(replacing map_canvasif your div div is called something else.)

+10
source

I had the same problem. And it worked for me.

#map_canvas label { width: auto; display:inline; }
#map_canvas img { max-width: none; max-height: none; background-color: transparent;}
+1
source

All Articles