I have 10 records in database along with their addresses. I have one latitude and longitude of a place. Now I have to arrange those 10 records order by distance according to the location(this location should be calculated by that mentioned latitude and longitude).
Still, I'm able to find out the distance between record's location and the location whose latitude and longitude has been provided.
I am trying through the following codes:
file_get_contents('http://maps.google.com/maps/api/geocode/json?address='.$bill_suburb.'&sensor=false');
where $bill_suburb means the address.
And:
function distance($lat1, $lon1, $lat2, $lon2, $unit) {
$theta = $lon1 - $lon2;
$dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta));
$dist = acos($dist);
$dist = rad2deg($dist);
$miles = $dist * 60 * 1.1515;
$unit = strtoupper($unit);
if ($unit == "K") {
return ($miles * 1.609344);
} else if ($unit == "N") {
return ($miles * 0.8684);
} else {
return $miles;
}
}