Skip to content

Instantly share code, notes, and snippets.

@janisblaus
Created November 28, 2014 19:58
Show Gist options
  • Save janisblaus/7ea75d5667bca0126607 to your computer and use it in GitHub Desktop.
Save janisblaus/7ea75d5667bca0126607 to your computer and use it in GitHub Desktop.
Piemērs kā iegūt adreses informāciju
public function postPostcode()
{
$address = Input::get('address');
$url = "http://maps.googleapis.com/maps/api/geocode/json?address=".urlencode($address)."&sensor=false";
$response = file_get_contents($url);
return $response;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment