计算从源纬度和经度到目的地的道路距离

时间:2013-06-24 06:10:43

标签: php google-maps google-api google-api-php-client roadmap

我使用了以下代码,但是这给了我从源到目的地的空中距离,但我需要道路距离,请帮我们这个。

这项工作,但这个空中距离,但我需要街道/公路距离。

$center_lat =$_POST['lat'];

//19.159519;//
$center_lng =$_POST['lng'];//72.995782;//
$radius = '3963.0';
$range=$_POST['range'];
//echo $center_lng;
// Set the active mySQL database
$db_selected = mysql_select_db("mapdb", $connection);

// Search the rows in the markers table
$query = sprintf("SELECT name,lat, lng, ( 3959 * acos( cos( radians('%s') ) * cos( radians( lat ) ) * cos( radians( lng ) - radians('%s') ) + sin( radians('%s') ) * sin( radians( lat ) ) ) ) AS distance FROM hospitals HAVING distance < '%s' ORDER BY distance LIMIT 0 , 20",
  mysql_real_escape_string($center_lat),
  mysql_real_escape_string($center_lng),
  mysql_real_escape_string($center_lat),
  mysql_real_escape_string($radius));
$result = mysql_query($query);

if (!$result) {
  die("Invalid query: " . mysql_error());
}
 else
 { 
  echo "Done";
 }
 // header('Content-type: application/json');
//$output = array();
$i=0;

 while($row = mysql_fetch_assoc($result)) {
     if($range > 0 )
      {
        $theta = $center_lng - $row['lng'];
        $distance = (sin(deg2rad($center_lat)) * sin(deg2rad($row['lat']))) + (cos(deg2rad($center_lat)) * cos(deg2rad($row['lat'])) * cos(deg2rad($theta)));   
        $distance = acos($distance);
        $distance = rad2deg($distance);
        $distance = $distance * 60 * 1.1515;
        $distance = $distance *1.609344;
        if($range > round($distance,2))
        {
            $info[$i] = "\"".$row['lat']."&".$row['lng']."@".$row['name'];
            $i=$i+1;            
        }
        $myTwitterResult1 = array($info);
    }
    else
    {   
        $info[$i] = "\"".$row['lat']."&".$row['lng']."@".$row['name'];
        $i=$i+1;
        $myTwitterResult1 = array($info);
    }
}
    $myJSONTweets = json_encode($myTwitterResult1);
    echo $myJSONTweets;

2 个答案:

答案 0 :(得分:0)

此功能可以帮助您

function distance($lat1, $lon1, $lat2, $lon2, $unit)
 {
  $angle = $lon1 - $lon2;
  $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) +  cos(deg2rad($lat1)) *        cos(deg2rad($lat2)) * cos(deg2rad($angle));
$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;
  }
 }
echo distance(32.9697, -96.80322, 29.46786, -98.53506, "K") . " Kilometers<br>";

更多信息here

答案 1 :(得分:0)

如果您要显示Google地图(请阅读Terms of Service

使用Directions Web ServiceDistance Matrix Web Service

如果您使用Google Maps API v3显示地图,则两者在API中都具有相同的服务。