最近在弄百度地图,需要把一组GPS点数组转换为百度的点数组,用到了如下js代码:调用transMore(points,type,callback)方法后回调函数好像没有按次序执行,那这样就得不到和原来相对应的转换后的百度坐标数组。那么怎么才能按先后顺序执行就是先发送先执行请高人给指点一下,多谢!
(function(){
function load_script(xyUrl, callback){
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = xyUrl;
//借鉴了jQuery的script跨域方法
script.onload = script.onreadystatechange = function(){
if((!this.readyState || this.readyState === "loaded" || this.readyState === "complete")){
callback && callback();";//这句是什么意思?
// Handle memory leak in IE
script.onload = script.onreadystatechange = null;
if ( head && script.parentNode ) {
head.removeChild( script );
}
}
};
// Use insertBefore instead of appendChild to circumvent an IE6 bug.
head.insertBefore( script, head.firstChild );
}
function transMore(points,type,callback){
var xyUrl = "http://api.map.baidu.com/ag/coord/convert?from=" + type + "&to=4&mode=1";
var xs = [];
var ys = [];
var maxCnt = 20;//每次发送的最大个数
var send = function(){
var url = xyUrl + "&x=" + xs.join(",") + "&y=" + ys.join(",") + "&callback=callback //动态创建script标签
load_script(url);
xs = [];
ys = [];
}
for(var index in points){
if(index % maxCnt == 0 && index != 0){
send();
}
xs.push(points[index].lng);
ys.push(points[index].lat);
if(index == points.length - 1){
send();
}
}
}
window.BMap = window.BMap || {};
BMap.Convertor = {};
BMap.Convertor.transMore = transMore;
})();
上述每次发送20个点后执行回调函数
你好,你的问题是怎么处理的