在新的谷歌地图中,有几种旅行模式,如驾驶、骑自行车、步行和过境,但他们也增加了飞行模式。我可以在新的谷歌地图中选择飞行模式,但我无法在谷歌地图 v3 api 中获得飞行旅行模式。我想在我的网站上显示两个城市之间的飞行距离,就像谷歌地图上显示的谷歌地图一样。
$base_url = 'http://maps.googleapis.com/maps/api/directions/xml?sensor=false';
$xml = simplexml_load_file("$base_url&origin=Lahore&destination=Multan");
echo $distance = (string)$xml->route->leg->distance->text;
echo $duration = (string)$xml->route->leg->duration->text
驾驶、步行和其他模式都在工作,但飞行不工作。