On May 8, 12:00 am, Fallyn DevAngel <[email protected]> wrote: > The plugin I use is googleDirections - To Here. The code that goes into the > article in Joomla, for this specific map, is: {googleDir_tohere width=400 > height=360 > home_label="Dale's Body > Shop~300 W Park. St~Olathe, KS 66061", > home_lat=38.882416, > home_long=-94.8222} > > so I suppose the answer to your question as to where the end of that > particular string end is, is at the zip code. The latitude and longitude are > a new string, as far as I can tell.
As Rossko said, you need to look at how the plugin translates that into the source of your page as delivered to the browser. Although you have specified your strings correctly, the plugin uses single-quotes to delimit strings, and the apostrophe in Dale's breaks it. You can fix that by coding it as Dale\'s or maybe even Dale's (or leaving the apostrophe out altogether, which is probably least desirable). Once the page actually parses correctly, we may be able to get to the bottom of your key problem. But valid code delivered to the browser is the starting point, really. -- 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.
