On Sep 12, 2:30 pm, Alexandros <[email protected]> wrote:
>
> the second linkhttp://markers.gotdns.com:8079/default.aspx
>
> has no markers but if you check the source they are right there
>
> any thought?

This isn't easy to debug because although you have a global map
variable, you use a local variable in your function initialize().
There is an issue with your data: for Javascript you should use a
point not a comma in decimals. If you had tried with numbers instead
of strings you would have got an error:

{lat: 40,12345} is incorrect. {lat:"40,12345"} will not cause an
error, but parseFloat(lat) will return 40, not 40.12345. parseFloat
("40.12345") will produce 40.12345 (or 40,12345 in European usage).

So your markers are placed on the map, just not where you expect.

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