Created
November 28, 2014 19:58
-
-
Save janisblaus/7ea75d5667bca0126607 to your computer and use it in GitHub Desktop.
Piemērs kā iegūt adreses informāciju
This file contains hidden or 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
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