我很难理解为什么我从未点击下面的GETNEARCALLBACK
功能。逻辑是这样的:
INITIALIZE
INITIALIZE
愉快地执行并致电GETSTATIONS
GETSTATIONS
使用GETNEARESTSTAIONS
作为回调函数执行AJAX请求,并且Web服务器以JSON格式响应数据库查询的结果。GETNEARESTSTAIONS
获取结果并使用GETNEARCALLBACK
作为回调函数创建Google Maps API距离矩阵请求GETNEARCALLBACK
。 我认为我对Google Maps API的使用是正确的,因为如果我不从我的AJAX请求中调用GETNEARESTSTATIONS
,它就会正确执行。
function INITIALIZE(){ 为getPosition(); DRAWMAP(); GETADDR(); GETSTATIONS(); }
var xmlhttp;
function GETSTATIONS() {
if(window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = GETNEARESTSTATION();
xmlhttp.open("GET", "final.php", true);
xmlhttp.send();
}
var STATIONLIST;
function GETNEARESTSTATION() {
if(xmlhttp.readyState == 4 && xmlhttp.status == 200) {
STATIONLIST = eval("(" + xmlhttp.responseText + ")");
var LAT = parseFloat(document.getElementById("LATITUDE").value);
var LON = parseFloat(document.getElementById("LONGITUDE").value);
var latlng = new google.maps.LatLng(LAT, LON);
var destinationA = STATIONLIST[0].ADDRESS;
var service = new google.maps.DistanceMatrixService();
service.getDistanceMatrix({
origins: [latlng],
destinations: [destinationA],
travelMode: google.maps.TravelMode.DRIVING,
unitSystem: google.maps.UnitSystem.IMPERIAL,
avoidHighways: false,
avoidTolls: false
}, GETNEARCALLBACK);
}
}
function GETNEARCALLBACK(response, status) {
if(status == google.maps.DistanceMatrixStatus.OK) {
var destinations = response.destinationAddresses;
var results = response.rows[0].elements;
for(var j = 0; j < results.length; j++) {
var element = results[j];
document.getElementById("STATIONADDR").innerHTML = parseFloat(element.distance.value) + " " + response.destinationAddresses[j];
}
}
}
答案 0 :(得分:0)
需要函数变量,而不是函数返回值
//xmlhttp.onreadystatechange = GETNEARESTSTATION(); //error
xmlhttp.onreadystatechange = GETNEARESTSTATION;