Wasn't it Esa who wrote: > >Opera is famous to be strict with rules. > >W3C rules say that there are these colors: > >aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, >purple, red, silver, teal, white, and yellow.
Unless you're setting the flags to force Opera to use SVG, then the poly technology used in Opera uses the Google Server. http://mt.google.com/mld. Google think that the W3C rules don't apply to their image servers (they could well be right) and those servers only support colours in the format &color=RRR,GGG,BBB,TTT.T. If you pass the documented format, "#RRGGBB", to the API, then the API will convert that from hex to decimal, use your opacity setting to calculate the transparency, and send the right thing to the server. The API code that performs that conversion isn't expecting "white". It discards the "#" if there is one, then slices the rest into two-character slices and converts then from hex to decimal. "wh" and "it" fail to convert, and "e" is 14. The API ends up sending "&color=NaN,NaN,14,50.999999999999986" to the image server. -- http://econym.org.uk/gmap The Blackpool Community Church Javascript Team --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
