Skip to content

Instantly share code, notes, and snippets.

View mycarrysun's full-sized avatar
🖱️
Mousin around

Mike Harrison mycarrysun

🖱️
Mousin around
View GitHub Profile
@mycarrysun
mycarrysun / PHP-Get-Geocode-from-Address
Created December 27, 2017 19:59 — forked from madeinnordeste/PHP-Get-Geocode-from-Address
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;