Hi, I am working on some Google Maps API applications.
I would like to know "How to use php pages to submit address to google and receive lat/long from google?"
Google Maps API has these Geocode class that could convert address to latitude and longitude and vice versa. But these are client side class.
Meaning in my php page, I have to in the client side use javascript and google class to convert address to lat/long, or get the error message. And then I have to use client side technology such as javascript form auto sumbit to submit the results to the my own server and save the result in the database.
Are there any direct ways to use php pages to submit address to google and receive lat/long from google directly?
Thanks!