Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brunocmoraes/5c85a463d17ba90b4bb0bb9bc9b8534b to your computer and use it in GitHub Desktop.
Save brunocmoraes/5c85a463d17ba90b4bb0bb9bc9b8534b to your computer and use it in GitHub Desktop.
PHP - Get Geocode (lat, long) from Address
<?php
$address = 'avenida+gustavo+paiva,maceio,alagoas,brasil';
$geocode = file_get_contents('http://maps.google.com/maps/api/geocode/json?address='.$address.'&sensor=false');
$output= json_decode($geocode);
$lat = $output->results[0]->geometry->location->lat;
$long = $output->results[0]->geometry->location->lng;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment