tags:

views:

62

answers:

1

I made this little Cocoa app with a WebView that displays Google Maps in fullscreen. All nice and dandy but the tiles that are still being loaded are grayish which is very bright which is a pain on large displays. Is there any way to make them black?

+1  A: 

Figured it out:

map = new GMap2(document.getElementById("map"), { backgroundColor: "#000000" });
sjmulder