WithCredential |
用于定义安全验证信息相关的对象及其属性,如果服务器开启了安全认证,用户必须设置此类属性才能访问相关的服务。
属性 | 类型 | 说明 |
credential |
object<string> |
根据地图服务的安全验证方式 "token" 或 "key" ,填写对应的 string 类型的安全验证信息 {"token":""} 或 {"key":""}。 |
使用 token 访问开启了安全认证的数据流服务,创建一个符合 WebMap 规范的图层。
{
"layers": [
{
"layerType": "DATAFLOW_HEAT",
"visible": true,
"url": "http://server:8090/iserver/services/dataflow/rest",
"name": "sample",
"themeSetting": {
"customSettings": {
"2": "#d0021b",
"4": "#000000"
},
"weight": "经度",
"colors": [
"#0000ff",
"#00ffff",
"#00ff00",
"#ffff00",
"#ff0000"
],
"radius": 10
},
"filterCondition": "城市 = \"哈尔滨\"",
"credential": {
"token": "token_value"
}
}
],
}