3

在我当前的项目(交付系统)中,我有一个可用的交付驱动程序列表,显示在订单页面上。但我需要的是显示每次送货到客户地址的距离。距离应显示在每个驾驶员姓名旁边。有人对我将如何处理有任何线索吗?

4

3 回答 3

6

假设您想要行驶距离而不是直线距离,您可以使用 Directions Web 服务:您需要从 PHP 脚本发出 http 或 https 请求并解析 JSON 或 XML 响应。

文档: https ://developers.google.com/maps/documentation/directions/

例如:马萨诸塞州波士顿到马萨诸塞州康科德,途经马萨诸塞州查尔斯敦和马萨诸塞州列克星敦 (JSON) http://maps.googleapis.com/maps/api/directions/json?origin=Boston,MA&destination=Concord,MA&waypoints=Charlestown ,MA|列克星敦,MA&sensor=false

马萨诸塞州波士顿通过马萨诸塞州查尔斯顿和马萨诸塞州列克星敦前往马萨诸塞州康科德 (XML) http://maps.googleapis.com/maps/api/directions/xml?origin=Boston,MA&destination=Concord,MA&waypoints=Charlestown,MA|列克星敦,MA&sensor=false

请注意,有使用限制。

于 2012-07-04T12:40:31.520 回答
3

您可以使用 Google Maps API 和 PHP 轻松计算两个地址之间的距离。

$addressFrom = 'Insert from address';
$addressTo = 'Insert to address';
$distance = getDistance($addressFrom, $addressTo, "K");
echo $distance;

您可以从这里获取 getDistance() 函数代码 - http://www.codexworld.com/distance-between-two-addresses-google-maps-api-php/

于 2015-07-18T09:41:03.723 回答
0

这将在 2 个位置之间输出几秒钟

$origin =urlencode('Optus Sydney International Airport, Airport Drive, Mascot NSW 2020, Australia');
$destination = urlencode('Sydney NSW, Australia');
$url = "https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial&origins=$origin&destinations=$destination&key=your_key";
$data = @file_get_contents($url);
$data = json_decode($data,true);
echo $data['rows'][0]['elements'][0]['duration']['value'];
于 2017-07-26T14:58:18.687 回答