@@ -22,9 +22,9 @@ import {
2222 * .getFeaturesByIDs(param,function(result){
2323 * //doSomething
2424 * })
25- * @extends L.supermap.ServiceBase
25+ * @extends { L.supermap.ServiceBase }
2626 * @param {string } url - 要素数据集服务地址
27- * @param {Object } options - 创建要素数据集服务类可选参数 。
27+ * @param {Object } options - 参数 。
2828 * @param {string } options.proxy - 服务代理地址。
2929 * @param {SuperMap.ServerType } [options.serverType=SuperMap.ServerType.ISERVER] - 服务来源 iServer|iPortal|online。
3030 * @param {boolean } [options.withCredentials=false] - 请求是否携带cookie。
@@ -38,9 +38,9 @@ export var FeatureService = ServiceBase.extend({
3838 /**
3939 * @function L.supermap.featureService.prototype.getFeaturesByIDs
4040 * @description 数据集ID查询服务
41- * @param {SuperMap.GetFeaturesByIDsParameters } params ID 查询参数类。
42- * @param {RequestCallback } callback 回调函数
43- * @param {SuperMap.DataFormat } resultFormat 返回结果类型
41+ * @param {SuperMap.GetFeaturesByIDsParameters } params - ID 查询参数类。
42+ * @param {RequestCallback } callback - 回调函数。
43+ * @param {SuperMap.DataFormat } resultFormat - 返回结果类型。
4444 */
4545 getFeaturesByIDs : function ( params , callback , resultFormat ) {
4646 var me = this ;
@@ -63,7 +63,7 @@ export var FeatureService = ServiceBase.extend({
6363 * @description 数据集Bounds查询服务
6464 * @param {SuperMap.GetFeaturesByBoundsParameters } params - 数据集范围查询参数类。
6565 * @param {RequestCallback } callback - 回调函数
66- * @param {SuperMap.DataFormat } resultFormat - 返回结果类型
66+ * @param {SuperMap.DataFormat } resultFormat - 返回结果类型
6767 */
6868 getFeaturesByBounds : function ( params , callback , resultFormat ) {
6969 var me = this ;
@@ -83,7 +83,7 @@ export var FeatureService = ServiceBase.extend({
8383 /**
8484 * @function L.supermap.featureService.prototype.getFeaturesByBuffer
8585 * @description 数据集Buffer查询服务
86- * @param {SuperMap.GetFeaturesByBufferParameters } params - 数据服务中数据集缓冲区查询参数类。
86+ * @param {SuperMap.GetFeaturesByBufferParameters } params - 数据服务中数据集缓冲区查询参数类。
8787 * @param {RequestCallback } callback - 回调函数
8888 * @param {SuperMap.DataFormat } resultFormat - 返回结果类型
8989 */
@@ -106,7 +106,7 @@ export var FeatureService = ServiceBase.extend({
106106 * @function L.supermap.featureService.prototype.getFeaturesBySQL
107107 * @description 数据集SQL查询服务
108108 * @param {SuperMap.GetFeaturesBySQLParameters } params - 数据服务中数据集SQL查询参数类。
109- * @param {RequestCallback } callback 回调函数
109+ * @param {RequestCallback } callback - 回调函数
110110 * @param {SuperMap.DataFormat } resultFormat - 返回结果类型
111111 */
112112 getFeaturesBySQL : function ( params , callback , resultFormat ) {
@@ -128,7 +128,7 @@ export var FeatureService = ServiceBase.extend({
128128 * @function L.supermap.featureService.prototype.getFeaturesByGeometry
129129 * @description 数据集几何查询服务类
130130 * @param {SuperMap.GetFeaturesByGeometryParameters } params - 数据集几何查询参数类。
131- * @param {RequestCallback } callback 回调函数
131+ * @param {RequestCallback } callback - 回调函数
132132 * @param {SuperMap.DataFormat } resultFormat - 返回结果类型
133133 */
134134 getFeaturesByGeometry : function ( params , callback , resultFormat ) {
@@ -149,8 +149,8 @@ export var FeatureService = ServiceBase.extend({
149149 /**
150150 * @function L.supermap.featureService.prototype.editFeatures
151151 * @description 地物编辑服务
152- * @param {SuperMap.EditFeaturesParameters } params 数据服务中数据集添加、修改、删除参数类。
153- * @param {RequestCallback } callback 回调函数
152+ * @param {SuperMap.EditFeaturesParameters } params - 数据服务中数据集添加、修改、删除参数类。
153+ * @param {RequestCallback } callback - 回调函数
154154 */
155155 editFeatures : function ( params , callback ) {
156156
0 commit comments