使用Google Maps API计算两个地址之间的距离

时间:2014-08-27 15:52:26

标签: php wordpress google-maps-api-3

背景:由于我处于NDA之下,我无法透露太多关于该项目的信息。

我正在使用this tutorial使用Google地图计算两个地址之间的距离。

我希望输出原始地址(一个固定点)和目标地址之间的距离,这取决于用户在_ct_text_53ea3270e6e6d字段中输入的内容。

从一个地址拉动它可以很好地工作,但是如果它从多个地图中拉出来,它只显示与其中一个地图的距离,而不是每个地图的距离。

以下是显示问题的屏幕截图:

enter image description here

这是我的代码:

$field_value = do_shortcode('[ct id="_ct_text_53ea3270e6e6d" property="title | description | value"]'); 

// Our parameters
$params = array(
    'origin'        => '900 South Crouse Ave, Syracuse, NY, 13210',
    'destination'   => $field_value,
    'sensor'        => 'true',
    'units'         => 'imperial'
);

// Join parameters into URL string
foreach($params as $var => $val){
    $params_string .= '&' . $var . '=' . urlencode($val);  
}

// Request URL
$url = "http://maps.googleapis.com/maps/api/directions/json?".ltrim($params_string, '&');

// Make our API request
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$return = curl_exec($curl);
curl_close($curl);

// Parse the JSON response
$directions = json_decode($return);

// Print distance
 print('<p><strong>Distance from Campus: </strong>' .$directions->routes[0]->legs[0]->distance->text. '</p>');  

1 个答案:

答案 0 :(得分:1)

不得不替换它:

// Join parameters into URL string
foreach($params as $var => $val){
    $params_string .= '&' . $var . '=' . urlencode($val);
}

使用:

$params_string = http_build_query($params);