Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert GPS coordinates to a full address with php? [duplicate]

I have GPS coordinates in the form 54.1456123 10.413456.

How can I convert them with PHP to addresses with postal code, street and city?

like image 778
rubo77 Avatar asked Dec 05 '22 11:12

rubo77


1 Answers

use google API

$lat="54.1456123";
$long = "10.413456";

$url = "http://maps.googleapis.com/maps/api/geocode/json?latlng=$lat,$long&sensor=false";

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_ENCODING, "");
$curlData = curl_exec($curl);
curl_close($curl);

$address = json_decode($curlData);
print_r($address);
like image 164
Kevin_cl Avatar answered Dec 09 '22 15:12

Kevin_cl