bl0b
bl0b

Reputation: 936

Grey grid showing up on google maps

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 enter image description here

Upvotes: 0

Views: 2283

Answers (2)

Beejee
Beejee

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

geocodezip
geocodezip

Reputation: 161334

This is a bug in Chrome, see this issue in Google Maps Javascript API issue tracker

Upvotes: 4

Related Questions