On Sep 20, 11:49 am, Julien MARY <[EMAIL PROTECTED]> wrote: > I don't want to refresh a map or whatever on the page on which I am. > I have a database containing lat/long of some places and I want my > page to send the lat/long answer to my php script which will create > another page showing items within a given address. The distance > calculation will be done by the server.
In that case, in the callback function once lat and lng are available, just redirect the page elsewhere. You don't need a form at all. window.location="myscript.php?my_lat="+lat+"&my_lng="+lng; 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 -~----------~----~----~----~------~----~------~--~---
