yaohuimo

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 阅读(...) 评论(...) 编辑 收藏

相关文章:

  • 2021-11-10
  • 2021-12-11
  • 2022-12-23
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
猜你喜欢
  • 2021-10-01
  • 2021-05-28
  • 2021-11-30
  • 2022-12-23
  • 2022-01-01
  • 2021-11-29
  • 2022-02-05
相关资源
相似解决方案