On Jul 12, 7:24 am, Lowery <[email protected]> wrote: > Hello, this map has been working for 6+ months and just stopped in the > past few days. I did search through the forum, but couldnt find a > solution. Also, tried using different versions with no luck. I would > appreciate any help someone could provide. > > http://www.wingstop.com/find_a_store.aspx?search=ABILENE,+TX
The problem may be due to your using a reserved word as a variable name: var undefined = "undefined"; because that makes it impossible for the API to test whether something is *actually* undefined. There is an issue about this, but it's generally not a good idea. I suggest using something like var undef = "undefined"; in your code so you don't conflict with other Javascript which wants to use undefined. 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 -~----------~----~----~----~------~----~------~--~---
