我目前正在计算我的一个 wordpress 网站上的一个函数内两点之间的行驶距离。我通过调用使用谷歌距离矩阵来完成此操作
wp_remote_get(
"http://maps.googleapis.com/maps/api/distancematrix/json?origins=".
urlencode($origin).
"&destinations=".
urlencode($destination).
"&sensor=false&units=imperial"
)
然后将用户通过表单输入的起点和终点插入 url。是否可以使用类似的方法来计算“乌鸦飞翔”的距离,还是我必须重新设计我的功能?