It sounded from your initial post as if you wanted to remember the data permanently. To just pass data from one page to another use a parameter like:
http://econym.org.uk/gmap/example_linktothis.htm?lat=53.816134&lng=-3.055 567&zoom=18&type=k It's best to geocode the data in the first page, so that you can handle failures there, and pass the lat/lng info. If you must pass the address data, remember to perform encodeURIComponent() on it in case it contains any non-URL characters, like spaces. -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
