On May 14, 5:25 pm, Altan Tanrıverdi <[email protected]> wrote: > > http://www.american-schools.net/schoolinfo.php?id=123210 > > is the link. OS is Linux and Browser is FF.
Thanks. This demonstrates the value of a link, as what is going wrong is nothing like your code snippets. This line is failing: var pnt = new GLatLng.fromUrlValue(pplat,pplng); because fromUrlValue needs a string, like "47,-92". You're trying to give it two numbers. In fact "point" is already a GLatLng, so you don't need to split it up and recombine it to get another one. Just use "point" where you have "pnt". 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 -~----------~----~----~----~------~----~------~--~---
