Andrei Zisu
Andrei Zisu

Reputation: 4383

Google Maps controls changed their look, how can I get them back?

A few months ago the Google Maps v3 controls had a nice CSS# polished look. Now they look horrible (see attached pic). I don't think I did anything that would change their look. How can I get them back? Has anybody else encountered this behaviour?

Old look vs new look

Upvotes: 1

Views: 140

Answers (1)

dmitry
dmitry

Reputation: 5049

It happened after release of 3.7 version of Maps JS API: if you look into changelog, there are line: New visual style of default controls.

Assuming you didn't know the fact and don't use some new functionality, you can specify previous version of api when loading libraries, use similar url in script tag or as params with google js loader:

http://maps.googleapis.com/maps/api/js?v=3.6&sensor=true_or_false

API Versioning

Upvotes: 3

Related Questions