//获取楼宇位置并注册到地图
function getBuildingPositon(){
$.ajax({
type : "post",
async : false, //同步执行
url : ctx+"/fire/showLocation.do",
data : {},
dataType : "json", //返回数据形式为json
success : function(result) {
if (result) {
return result;
}
},
error : function() {
// alert("请求数据失败!");
}
});
}ajax