Created
May 27, 2016 21:17
-
-
Save timramseyjr/ac8ca4832515b26fd1450c702498e687 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getLatLng($zip){ | |
$url = "http://maps.googleapis.com/maps/api/geocode/json?address=".urlencode($zip)."&sensor=false"; | |
$result_string = file_get_contents($url); | |
$result = json_decode($result_string, true); | |
$result1[]=$result['results'][0]; | |
$result2[]=$result1[0]['geometry']; | |
$result3[]=$result2[0]['location']; | |
return $result3[0]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment