SuperMap iClient 查询成功后如何传递参数?

一、iClient API文档中的接口描述

 

 

二、范例

//定义一个this对象

this.param = new SuperMap.LonLat(point.x, point.y);

queryService = new SuperMap.REST.QueryByGeometryService(queryurl, {
eventListeners : {
“processCompleted” : SuperMap.Function.bind(
pointQueryprocessCompleted, this),
“processFailed” : processFailed
}
});
queryService.processAsync(queryByGeometryParameters);

 

//在pointQueryprocessCompleted函数中获取传递的参数

var lonlat = this.param;

 

posted on 2018-03-30 14:09 yaohuimo 阅读() 评论() 编辑 收藏

版权声明:本文为yaohuimo原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/yaohuimo/p/8675865.html