Created
May 27, 2016 23:33
-
-
Save timramseyjr/a9ca3299081d4b05ebca5088443e76cc 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 GetDrivingDistance($lat1, $lat2, $long1, $long2){ | |
$url = "https://maps.googleapis.com/maps/api/distancematrix/json?origins=".$lat1.",".$long1."&destinations=".$lat2.",".$long2."&mode=driving&language=pl-PL"; | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, $url); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLOPT_PROXYPORT, 3128); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); | |
$response = curl_exec($ch); | |
curl_close($ch); | |
$response_a = json_decode($response, true); | |
$dist = $response_a['rows'][0]['elements'][0]['distance']['text']; | |
$time = $response_a['rows'][0]['elements'][0]['duration']['text']; | |
return array('distance' => $dist, 'time' => $time); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment