Find Longitude And Latitude Of PostCode or ZipCode Using Google Maps And PHP
Published by philipnorton42 on Thu, 09/04/2008 - 09:55Converting from PostCode to map reference is far from accurate, but it can be done using the Google Maps API. You can get a Google Maps API key from Google by just asking for it, although you are limited to a certain number of requests each day.
Google Maps usually works through JavaScript, but it is possible to ask Google to return the data in JSON format and then use the PHP function json_decode() to decode the information into a usable array format. To get Google to return the data in JSON you must pass the parameter "output=json" in your query string.
The following function can take a postal code and convert it into longitude and latitude.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | function getLatLong($code){ $mapsApiKey = 'your-google-maps-api-key'; $query = "http://maps.google.co.uk/maps/geo?q=".urlencode($code)."&output=json&key=".$mapsApiKey; $data = file_get_contents($query); // if data returned if($data){ // convert into readable format $data = json_decode($data); $long = $data->Placemark[0]->Point->coordinates[0]; $lat = $data->Placemark[0]->Point->coordinates[1]; return array('Latitude'=>$lat,'Longitude'=>$long); }else{ return false; } } |
The function can be used in the following way. To keep with the theme, the following two postal codes are one UK address and USA office locations of Google.
This produces the following output.
1 2 3 4 5 6 7 8 9 10 | Array ( [Latitude] => 51.489943 [Longitude] => -0.154065 ) Array ( [Latitude] => 40.746497 [Longitude] => -74.009447 ) |
I have tried this with UK and USA postal codes, but it would be interesting to see if it works with any other codes. Also, the query currently looks at google.co.uk, but that is only because I am based in the UK. You should change this to the nearest Google domain, so if you are based in the US then change this to google.com.
Comments
Thanks a lot!
Anjali (not verified) - Wed, 03/30/2011 - 06:08Hi,
Thannks a lot for this code... it helped me a lot... i was looking for it from last one week :'(...
oh im so happy..... thank u so much :) :)
Excellent
Zee Ally (not verified) - Wed, 04/13/2011 - 20:38Excellent is just one simple word to appreciate this work. I have been banging on certain forums just get this piece of thing you have mentioned about. I really appreciate it.
this is not working in server
aaa (not verified) - Sat, 04/23/2011 - 04:46this is not working in server wot to do?
Great
shiju (not verified) - Fri, 10/14/2011 - 13:54Thanks a lot,
This code very helpful to me to find lattitude amd longitude uk postcodes
Thanks again
Shiju Joy
India
Brilliant code!
dave (not verified) - Fri, 11/18/2011 - 08:46Thanks a lot :)
Thanks for this. I was using
Chris Shennan (not verified) - Fri, 01/13/2012 - 15:03Thanks for this. I was using your original street maps version for one of my sites last year but it seemed to be less reliable lately. This alternative works like a charm.
zipcode from lat & long
Anonymous (not verified) - Thu, 03/08/2012 - 11:38Hi,
How can we ge the zipcode using latitude & longitude..???
i mean vice versa of this process
Problem : Not being able to find out lt & lg.
Avani (not verified) - Wed, 03/28/2012 - 07:17Hi there,
My self avani and i m from india. I m using ur above mention code to find out lt & lg of perticular zip code.
When ever i input zipcode as '360007', its return nothing .
So can you please help me .
Regards & lots of thanks.
Simply Brilliant
vipin kohli (not verified) - Tue, 04/17/2012 - 20:31Thanks alot for the code spinnet, best example
Good luck friend..!
Not Working
Anonymous (not verified) - Wed, 04/18/2012 - 07:24Hello,
This is nice script but not working for us zip code.
Thanks
Add new comment