由于一些奇怪的原因谷歌地图倾向于加载这样的工具提示。缩放滑块也是偏斜的。有没有人遇到过这个问题?
答案 0 :(得分:10)
以前绝对看过:)
google maps api v3 map display issue
添加到您的CSS
#map_canvas label { width: auto; display:inline; }
#map_canvas img { max-width: none; } (sometimes max-height: none; is needed too)
(如果您的地图div被命名为其他内容,则替换map_canvas
。)
答案 1 :(得分:1)
我有同样的问题。这对我有用。
#map_canvas label { width: auto; display:inline; }
#map_canvas img { max-width: none; max-height: none; background-color: transparent;}