在我当前的项目中,这是一个交付系统,我有一个可用的交付驱动程序列表,显示在订单页面上。但我需要的是显示每个交付距离客户地址的距离。应在每个驾驶员姓名旁边显示距离。任何人都有任何线索可以解决这个问题吗?
答案 0 :(得分:6)
假设您想要行驶距离而不是直线距离,可以使用路线网络服务: 您需要从PHP脚本发出http或https请求,并解析JSON或XML响应。
文档: https://developers.google.com/maps/documentation/directions/
例如: 马萨诸塞州波士顿,通过Charlestown,MA和马萨诸塞州列克星敦(JSON)到康科德 http://maps.googleapis.com/maps/api/directions/json?origin=Boston,MA&destination=Concord,MA&waypoints=Charlestown,MA|Lexington,MA&sensor=false
波士顿,马萨诸塞州马萨诸塞州康科德市,马萨诸塞州查尔斯顿市和马萨诸塞州列克星敦市(XML) http://maps.googleapis.com/maps/api/directions/xml?origin=Boston,MA&destination=Concord,MA&waypoints=Charlestown,MA|Lexington,MA&sensor=false
请注意,有使用限制。
答案 1 :(得分: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/
答案 2 :(得分:0)
这将在两个位置之间的秒数
$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'];