@@ -23,9 +23,11 @@ import {
2323 * //doSomething
2424 * })
2525 * @extends L.supermap.ServiceBase
26- * @param url - {string} 要素数据集服务地址
27- * @param options - {Object} 创建要素数据集服务类可选参数。如:<br>
28- * serverType - {{@link SuperMap.ServerType}} 服务来源 iServer|iPortal|online
26+ * @param {string } url - 要素数据集服务地址
27+ * @param {Object } options - 创建要素数据集服务类可选参数。
28+ * @param {string } options.proxy - 服务代理地址。
29+ * @param {SuperMap.ServerType } [options.serverType=SuperMap.ServerType.ISERVER] - 服务来源 iServer|iPortal|online。
30+ * @param {boolean } [options.withCredentials=false] - 请求是否携带cookie。
2931 */
3032export var FeatureService = ServiceBase . extend ( {
3133
@@ -36,9 +38,9 @@ export var FeatureService = ServiceBase.extend({
3638 /**
3739 * @function L.supermap.featureService.prototype.getFeaturesByIDs
3840 * @description 数据集ID查询服务
39- * @param params {SuperMap.GetFeaturesByIDsParameters} ID 查询参数类
41+ * @param {SuperMap.GetFeaturesByIDsParameters } params ID 查询参数类。
4042 * @param {RequestCallback } callback 回调函数
41- * @param resultFormat {SuperMap.DataFormat} 返回结果类型
43+ * @param {SuperMap.DataFormat } resultFormat 返回结果类型
4244 */
4345 getFeaturesByIDs : function ( params , callback , resultFormat ) {
4446 var me = this ;
@@ -59,9 +61,9 @@ export var FeatureService = ServiceBase.extend({
5961 /**
6062 * @function L.supermap.featureService.prototype.getFeaturesByBounds
6163 * @description 数据集Bounds查询服务
62- * @param params {SuperMap.GetFeaturesByBoundsParameters} 数据集范围查询参数类
63- * @param {RequestCallback } callback 回调函数
64- * @param resultFormat {SuperMap.DataFormat} 返回结果类型
64+ * @param {SuperMap.GetFeaturesByBoundsParameters } params - 数据集范围查询参数类。
65+ * @param {RequestCallback } callback - 回调函数
66+ * @param {SuperMap.DataFormat } resultFormat - 返回结果类型
6567 */
6668 getFeaturesByBounds : function ( params , callback , resultFormat ) {
6769 var me = this ;
@@ -81,9 +83,9 @@ export var FeatureService = ServiceBase.extend({
8183 /**
8284 * @function L.supermap.featureService.prototype.getFeaturesByBuffer
8385 * @description 数据集Buffer查询服务
84- * @param params {SuperMap.GetFeaturesByBufferParameters} 数据服务中数据集缓冲区查询参数类
85- * @param {RequestCallback } callback 回调函数
86- * @param resultFormat {SuperMap.DataFormat} 返回结果类型
86+ * @param {SuperMap.GetFeaturesByBufferParameters } params - 数据服务中数据集缓冲区查询参数类。
87+ * @param {RequestCallback } callback - 回调函数
88+ * @param {SuperMap.DataFormat } resultFormat - 返回结果类型
8789 */
8890 getFeaturesByBuffer : function ( params , callback , resultFormat ) {
8991 var me = this ;
@@ -103,9 +105,9 @@ export var FeatureService = ServiceBase.extend({
103105 /**
104106 * @function L.supermap.featureService.prototype.getFeaturesBySQL
105107 * @description 数据集SQL查询服务
106- * @param params {SuperMap.GetFeaturesBySQLParameters} 数据服务中数据集SQL查询参数类
108+ * @param {SuperMap.GetFeaturesBySQLParameters } params - 数据服务中数据集SQL查询参数类。
107109 * @param {RequestCallback } callback 回调函数
108- * @param resultFormat {SuperMap.DataFormat} 返回结果类型
110+ * @param {SuperMap.DataFormat } resultFormat - 返回结果类型
109111 */
110112 getFeaturesBySQL : function ( params , callback , resultFormat ) {
111113 var me = this ;
@@ -125,9 +127,9 @@ export var FeatureService = ServiceBase.extend({
125127 /**
126128 * @function L.supermap.featureService.prototype.getFeaturesByGeometry
127129 * @description 数据集几何查询服务类
128- * @param params {SuperMap.GetFeaturesByGeometryParameters} 数据集几何查询参数类
130+ * @param {SuperMap.GetFeaturesByGeometryParameters } params - 数据集几何查询参数类。
129131 * @param {RequestCallback } callback 回调函数
130- * @param resultFormat {SuperMap.DataFormat} 返回结果类型
132+ * @param {SuperMap.DataFormat } resultFormat - 返回结果类型
131133 */
132134 getFeaturesByGeometry : function ( params , callback , resultFormat ) {
133135 var me = this ;
@@ -147,7 +149,7 @@ export var FeatureService = ServiceBase.extend({
147149 /**
148150 * @function L.supermap.featureService.prototype.editFeatures
149151 * @description 地物编辑服务
150- * @param params {SuperMap.EditFeaturesParameters} 数据服务中数据集添加、修改、删除参数类
152+ * @param {SuperMap.EditFeaturesParameters } params 数据服务中数据集添加、修改、删除参数类。
151153 * @param {RequestCallback } callback 回调函数
152154 */
153155 editFeatures : function ( params , callback ) {
0 commit comments