NHold

GPS Google

May 26th, 2018
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. // Функция определения адреса по координатам
  2. function Getgeocode($lat, $lon)  {
  3. $URL = "http://maps.googleapis.com/maps/api/geocode/json?latlng=$lat,$lon&sensor=false&language=ru";
  4. $data = getUrl( $URL );
  5. $json = json_decode( $data );
  6. $res = $json->results[0]->formatted_address;
  7. return $res;
  8. }
Add Comment
Please, Sign In to add comment