我想在我的项目中实现 ManpMyIndia 驾驶距离矩阵 API。我正在开发一个网页,我想要 2 latng 之间的距离。下面是同样的ajax。
var url = 'https://apis.mapmyindia.com/advancedmaps/v1/<API_KEY>/distance?center=19.121694747345824,72.85332576871612&pts=19.1209841659807,72.8531851553014&rtype=0';
$.ajax({
type: "POST",
dataType: 'text',
url: "getResponse.php",
async: false,
data: {
url: JSON.stringify(api_url),
},
success: function (result) {
console.log(result);
var resdata = JSON.parse(result);
if (resdata.status == 'success') {
var jsondata = JSON.parse(resdata.data);
if (jsondata.responseCode == 200) {
console.log(jsondata.results);
}
else {
var res = 'Something went wrong in the response';
console.log(res);
}
}
else {
var error_response = "No Response from API Server. kindly check the keys or request server url"
console.log(error_response);
}
}
});
我无法弄清楚 getResponse.php 中应该使用什么代码。我想知道我应该在 getResponse.php 中写什么代码。我是网络开发的新手。
提前谢谢你。