> "new GLatLng(47.11, 8.15)" not. Static API - no problem.

It's not the API.  It's the javascript interpreter running on the
Nokia.
Whatever language and interpreter the user has, he gets sent the same
code from Google and from the target website (which is where
GLatLng(47.11, 8.15) comes from)

In this case the combination of dots, commas, and space messes it up.
Here's a related issue using c++ on Symbian -
  http://discussion.forum.nokia.com/forum/showthread.php?t=60816

I don't have a Nokia so can't try it out.
If you want to investigate the phone, you might write a simple test
script something like -

function showtwo(x,y){
  alert (x);
  alert (y);
}
showtwo(47.11, 8.15);
showtwo(47.11 , 8.15);
showtwo(47.11,8.15);
showtwo(parseFloat("47.11") , parseFloat("8.15"));
showtwo(parseFloat("47,11") , parseFloat("8,15"));

I'd expect to see inconsistent results depending what language the
phone is switched to.

You could raise it as an API issue to get Google to turn off that
phone browser as compatible, if you wanted.
   http://code.google.com/p/gmaps-api-issues/issues/list
That might not be a good idea since only some phone browsers in some
language settings will have problems, with some webpages.

Perhaps the real problem is that webpage builders aren't specifying
language settings, or that the Symbian browser isn't dealing with page
settings properly.   I'd bet there's more info out there in the
'problem' languages (such as Finnish) but I don't know any to search
for them.

good luck, Ross K
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to