Reputation: 936
So, I implemented google maps to our website but for some reasons since yesterday a grid appeared on the map when I browse the website with chrome but not with firefox.
And If someone else browse the website with chrome the grid isn't displayed.
I'm having a hard time finding out why I see this grid
Here is a picture of the map
Upvotes: 0
Views: 2283
Reputation: 2016
It surely is a bug in webkit browsers not only Chrome. I managed to fix this by adding this css:
.gm-style div {
-webkit-transform: scale(1.002);
}
Upvotes: 2
Reputation: 161334
This is a bug in Chrome, see this issue in Google Maps Javascript API issue tracker
Upvotes: 4