How to get Latitude/Longitude from an address (or Geocoding ) using PHP
While Google’s documents for maps API does good job in showing how to get lat/long from an address in JavaScript they do not really show any example of doing the same with PHP.
So to make you life simple here is a small script in PHP that does that.
$geocode=file_get_contents('http://maps.google.com/maps/api/geocode/json?address=573/1,+Jangli+Maharaj+Road,+Deccan+Gymkhana,+Pune,+Maharashtra,+India&sensor=false');
$output= json_decode($geocode);
$lat = $output->results[0]->geometry->location->lat;
$long = $output->results[0]->geometry->location->lng;
The line above makes a request to Google maps API. Passes the address, and receives the response in JSON format.
The URL has following options
http://maps.google.com/maps/api/geocode/output?parameters
where output can be 1) JSON or 2) XML
For more details about parameters check out the Google’s geocoding documentation.
Related posts
- Configuring wireless routers
- How To Catch PHP Fatal Error In CodeIgniter
- Integrating With Twitter API In CodeIgniter
- Where is MySQL Gone Away?
- Installing PEAR and PHPUnit on WAMP and Windows 7
Filed under how too?, php | Comments (16)
16 Responses to “How to get Latitude/Longitude from an address (or Geocoding ) using PHP”



fanatastic work my friend…. its very usefull blog for all web developers specially PHP developers..u said blog is under construction… is any help required? i know little wordpress..
Thanx so much, this was extremely helpful
Hi,
Thanks you very much
Have dream day.
I have been searching and searching trying to find a simple geocoder means for taking a city and state address and geocoding it for the latitude and longitude in PHP. I was about to give up and use the javascript, but then landed to your wonderful page.
Thank you!
Hi,
I put this code in one of my php file but its give me “no result”.
Any additional js requires to put.Help is appreciate.
Great piece of codes.
But when I tried to pass the address with special characters, for example German characters, it will not return any result. It returned as “Invalid Request”. Anyone knows how to pass special characters in address?
Thanks.
How can i identify a specific location is included in a kml file of google earth?.Is any code for that using php
Thank you so much for this code. After spending so long I managed to find your site and your example works within seconds! Amazing and thanks again.
Unfortunately – it gives incorrect coordinates…
I was hoping that it would be accurate!
Great work dude , however Google Maps has a request rate of only 2000 queries a day . I have written a similar code that gives me a geocoding
rate of 50,000 queries a day . You can get the code at
http://googlelatiude.blogspot.com/2011/04/geocode-address.html
Thanks @vaishakh your blog was really helpful .
@Dhanesh this may be of help to you
http://bestfromgoogle.blogspot.com/2011/05/google-my-maps-kml-integration-for-your_4609.html
$geocode=file_get_contents(‘http://maps.google.com/maps/api/geocode/json?address=573/1,+Jangli+Maharaj+Road,+Deccan+Gymkhana,+Pune,+Maharashtra,+India&sensor=false‘);
$output= json_decode($geocode);
$lat = $output->results[0]->geometry->location->lat;
$long = $output->results[0]->geometry->location->lng;
I paste The Code Into my PHP file How to Get Your Location Lat and Long . But It Did work It Shows Error= Fatal error: Call to undefined function json_decode() in C:\apachefriends\xampp\htdocs\studentPortal\test.php on line 4 please tell me what is wrong.
Thanks. this is a very neat bit of code, though I had problems which led me to exploring parsing json – ruthlessly exploiting my php error log. After changing the file to a local one (generated by calling the google site from a browser with the request) to prove the principle, I discovered that, in my case, the single quotes round the URL had to be double. The hour was not wasted, as I learnt a lot abour json!
how can we show the location on google map when visitor click on the address(address is coming from DB).when visitor click on the address,location should be shown on google map.Help is appreciated.