@@ -9,14 +9,14 @@ import {SecurityManager} from '../security/SecurityManager';
99 * @class DataFlowService
1010 * @deprecatedclass SuperMap.DataFlowService
1111 * @category iServer DataFlow
12- * @classdesc 数据流服务类
12+ * @classdesc 数据流服务类。
1313 * @extends {CommonServiceBase }
14- * @param {string } url - 数据流服务地址
14+ * @param {string } url - 数据流服务地址。
1515 * @param {Object } options - 参数。
1616 * @param {function } options.style - 设置数据加载样式。
1717 * @param {function } [options.onEachFeature] - 设置每个数据加载popup等。
1818 * @param {GeoJSONObject } [options.geometry] - 指定几何范围,该范围内的要素才能被订阅。
19- * @param {Object } [options.excludeField] - - 排除字段。
19+ * @param {Object } [options.excludeField] - 排除字段。
2020 * @param {boolean } [options.crossOrigin] - 是否允许跨域请求。
2121 * @param {Object } [options.headers] - 请求头。
2222 * @usage
@@ -42,13 +42,13 @@ export class DataFlowService extends CommonServiceBase {
4242
4343 /**
4444 * @member {Object} DataFlowService.prototype.prjCoordSys
45- * @description 动态投影参数
45+ * @description 动态投影参数。
4646 */
4747 this . prjCoordSys = null ;
4848
4949 /**
5050 * @member {Object} DataFlowService.prototype.excludeField
51- * @description 排除字段
51+ * @description 排除字段。
5252 */
5353 this . excludeField = null ;
5454
@@ -59,7 +59,7 @@ export class DataFlowService extends CommonServiceBase {
5959
6060 /**
6161 * @function DataFlowService.prototype.initBroadcast
62- * @description 初始化广播
62+ * @description 初始化广播。
6363 * @returns {DataFlowService }
6464 */
6565 initBroadcast ( ) {
@@ -101,7 +101,7 @@ export class DataFlowService extends CommonServiceBase {
101101
102102 /**
103103 * @function DataFlowService.prototype.initSubscribe
104- * @description 初始化订阅数据
104+ * @description 初始化订阅数据。
105105 * @returns {DataFlowService } DataFlowService的实例对象。
106106 */
107107 initSubscribe ( ) {
@@ -129,8 +129,8 @@ export class DataFlowService extends CommonServiceBase {
129129
130130 /**
131131 * @function DataFlowService.prototype.setExcludeField
132- * @description 设置排除字段
133- * @param {Object } excludeField - 排除字段
132+ * @description 设置排除字段。
133+ * @param {Object } excludeField - 排除字段。
134134 * @returns {DataFlowService } DataFlowService的实例对象。
135135 */
136136 setExcludeField ( excludeField ) {
@@ -141,7 +141,7 @@ export class DataFlowService extends CommonServiceBase {
141141
142142 /**
143143 * @function DataFlowService.prototype.setGeometry
144- * @description 设置添加的几何要素数据
144+ * @description 设置添加的几何要素数据。
145145 * @param {GeoJSONObject } geometry - 指定几何范围,该范围内的要素才能被订阅。
146146 * @returns {DataFlowService } DataFlowService的实例对象。
147147 */
@@ -153,7 +153,7 @@ export class DataFlowService extends CommonServiceBase {
153153
154154 /**
155155 * @function DataFlowService.prototype.unSubscribe
156- * @description 结束订阅数据
156+ * @description 结束订阅数据。
157157 */
158158 unSubscribe ( ) {
159159 if ( ! this . subscribeWebSocket ) {
@@ -165,7 +165,7 @@ export class DataFlowService extends CommonServiceBase {
165165
166166 /**
167167 * @function DataFlowService.prototype.unBroadcast
168- * @description 结束加载广播
168+ * @description 结束加载广播。
169169 */
170170 unBroadcast ( ) {
171171 if ( ! this . broadcastWebSocket ) {
0 commit comments