我在我的网络应用程序中使用 Google 路线 API,有什么方法可以缩短 Google 提供的路线描述吗?
我的意思是,例如,
Take the 2nd right.
Take the 2nd left toward ...
我可以缩短它吗?它太长了。
我可以这样做吗:
2nd right>2nd left>
有没有办法修改结果?我使用 PHP 开发 Web 应用程序,使用 JSON 格式显示 API 结果。编辑:API 结果正确显示。但我想删除某些常用词,例如“Take”、“The”、“at”等 API 结果显示我的部分代码:if ($data->status === 'OK') {
$route = $data->routes[0];
foreach ($route->legs as $leg) {
foreach ($leg->steps as $step) {
echo $step->html_instructions . "<br>\n";