Members
-
Attributions
-
attribution版权相关配置
-
en
-
Namespace: SuperMap.Lang["en"] Dictionary for English. Keys for entries are used in calls to <SuperMap.Lang.translate>. Entry bodies are normal strings or strings formatted for use with <SuperMap.String.format> calls.
-
(constant) FileTypes
-
该文件用于存储一些公用常量
-
zh
-
Namespace: SuperMap.Lang["zh-CN"] Dictionary for Simplified Chinese. Keys for entries are used in calls to <SuperMap.Lang.translate>. Entry bodies are normal strings or strings formatted for use with <SuperMap.String.format> calls.
Type Definitions
-
RequestCallback(serviceResult)
common/iServer/CommonServiceBase.js, line 334 -
服务器请求回调函数
Name Type Description serviceResult
Object Name Type Description result
Object 服务器返回结果。
object
Object 发布应用程序事件的对象。
type
Object 事件类型。
element
Object 接受浏览器事件的 DOM 节点。
Example
var requestCallback = function (serviceResult){ console.log(serviceResult.result); } new QueryService(url).queryByBounds(param, requestCallback);