@@ -16,8 +16,8 @@ import {SecurityManager} from '../security/SecurityManager';
1616 * @param {Object } options - 参数。
1717 * @param {function } options.style - 设置数据加载样式。
1818 * @param {function } [options.onEachFeature] - 设置每个数据加载 popup 等。
19- * @param {GeoJSONObject } [options.geometry] - 指定几何范围,只有在该范围内的要素才能被订阅 。
20- * @param {Object } [options.excludeField] - 排除字段 。
19+ * @param {GeoJSONObject } [options.geometry] - 空间范围,只有在该范围内的要素才能被接收 。
20+ * @param {Object } [options.excludeField] - 过滤字段。传入此参数,接收到的信息将不包含过滤掉的字段 。
2121 * @param {boolean } [options.crossOrigin] - 是否允许跨域请求。
2222 * @param {Object } [options.headers] - 请求头。
2323 * @usage
@@ -37,7 +37,7 @@ export class DataFlowService extends CommonServiceBase {
3737
3838 /**
3939 * @member {GeoJSONObject} DataFlowService.prototype.geometry
40- * @description 指定几何范围,只有在该范围内的要素才能被订阅 。
40+ * @description 空间范围,只有在该范围内的要素才能被接收 。
4141 */
4242 this . geometry = null ;
4343
@@ -49,7 +49,7 @@ export class DataFlowService extends CommonServiceBase {
4949
5050 /**
5151 * @member {Object} DataFlowService.prototype.excludeField
52- * @description 排除字段 。
52+ * @description 过滤字段。传入此参数,接收到的信息将不包含过滤掉的字段 。
5353 */
5454 this . excludeField = null ;
5555
@@ -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,8 +141,8 @@ export class DataFlowService extends CommonServiceBase {
141141
142142 /**
143143 * @function DataFlowService.prototype.setGeometry
144- * @description 设置添加的几何要素数据 。
145- * @param {GeoJSONObject } geometry - 指定几何范围,只有在该范围内的要素才能被订阅 。
144+ * @description 设置空间范围,只有在该范围内的要素才能被接收 。
145+ * @param {GeoJSONObject } geometry - 空间范围 。
146146 * @returns {DataFlowService } DataFlowService 的实例对象。
147147 */
148148 setGeometry ( geometry ) {
0 commit comments