Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google maps overlay rendering issue

Tags:

google-maps

notice the way the tooltip is rendering

For some strange reason google maps tends to load the tooltip like that. Also the zoom slider is skewed as well. Has anyone run into this problem before?

like image 644
Robert Avatar asked May 24 '12 21:05

Robert


1 Answers

Definitely seen it before :)

google maps api v3 map display issue

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_canvas if your map div is named something else.)

like image 50
Tina CG Hoehr Avatar answered Sep 29 '22 00:09

Tina CG Hoehr