Rossko schrieb:
>> "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)
>
>   
Yes, I know. The "static API no problem" statement was FYI, not meant as 
real comparison. The strange thing: The longitude is always OK. I assume 
there is some math with the lat, which goes wrong in Nokias browser.

> 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"));
>   
All correct 47.11 and 8.15 on IE6
>   
> showtwo(parseFloat("47,11") , parseFloat("8,15"));
>
>   
47 and 8 on IE6

On Nokia (German) the things are weird:

showtwo(47.11, 8.15);   ---> 47 and 8
showtwo(47.11 , 8.15);  ---> 47 and 8
showtwo(47.11,8.15);    ---> 47 and 8
showtwo(parseFloat("47.11") , parseFloat("8.15"));  --> 47.11 and 8.15
showtwo(parseFloat("47,11") , parseFloat("8,15"));  --> 47 and 8

Switched the phone to English: The same OK as for IE6.



showtwo(47.11, 8.15);   ---> 47 and 8
showtwo(47.11 , 8.15);  ---> 47 and 8
showtwo(47.11,8.15);    ---> 47 and 8
showtwo(parseFloat("47.11") , parseFloat("8.15"));  --> 47.11 and 8.15
showtwo(parseFloat("47,11") , parseFloat("8,15"));  --> 47 and 8


Regards

>   

--~--~---------~--~----~------------~-------~--~----~
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