File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 107
107
108
108
109
109
/**
110
- * @description Cross browser event element detection.
110
+ * @description 监听浏览器 DOM 事件。
111
111
* @param {Event } event - Event 对象。
112
112
* @returns {HTMLElement } 触发事件的 DOM 元素。
113
113
*/
176
176
} ,
177
177
178
178
/**
179
+ * @description 查询触发指定事件的 DOM 元素。
179
180
* @param {Event } event - Event 对象。
180
181
* @param {string } tagName - html 标签名。
181
182
* @returns {HTMLElement } DOM 元素。
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import {TransportationAnalystParameter} from './TransportationAnalystParameter';
13
13
* 顺序访问 1、2、3、4 四个结点的最佳路径就是 R = R1—2 + R2—3 + R3—4。
14
14
* 阻抗就是指从一点到另一点的耗费,在实际应用中我们可以将距离、时间、花费等作为阻抗条件。
15
15
* 阻抗最小也就可以理解为从一点到另一点距离最短、时间最少、花费最低等。当两点间距离最短时为最短路径,它是最佳路径问题的一个特例。
16
- * 阻抗值通过 TransportationAnalystParameter. weightFieldName 设置。
16
+ * 阻抗值通过 { @link TransportationAnalystParameter# weightFieldName} 设置。
17
17
* 计算最佳路径除了受阻抗影响外,还受转向字段的影响。转向值通过 {@link TransportationAnalystParameter#turnWeightField} 设置。
18
18
*
19
19
* @param {Object } options - 参数。
Original file line number Diff line number Diff line change @@ -25,9 +25,8 @@ import { GeometryBatchAnalystService } from '@supermap/iclient-common/iServer/Ge
25
25
/**
26
26
* @class SpatialAnalystService
27
27
* @deprecatedclassinstance L.supermap.spatialAnalystService
28
- * @classdesc 空间分析服务类。
28
+ * @classdesc 空间分析服务类。提供:地区太阳辐射、缓冲区分析、点密度分析、动态分段分析、空间关系分析、插值分析、栅格代数运算、叠加分析、路由定位、路由测量计算、表面分析、地形曲率计算、泰森多边形分析。
29
29
* @category iServer SpatialAnalyst
30
- * @description 提供:地区太阳辐射、缓冲区分析、点密度分析、动态分段分析、空间关系分析、插值分析、栅格代数运算、叠加分析、路由定位、路由测量计算、表面分析、地形曲率计算、泰森多边形分析。
31
30
* @example
32
31
* new SpatialAnalystService(url)
33
32
* .bufferAnalysis(params,function(result){
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ import {Graph} from './Graph';
32
32
* @param {ol.source.State } [opt_options.state] - 资源状态。
33
33
* @param {boolean } [opt_options.isOverLay=true] - 是否进行压盖处理,如果设为 true,图表绘制过程中将隐藏对已在图层中绘制的图表产生压盖的图表。
34
34
* @param {(string|Object) } [opt_options.attributions='Map Data <span>© <a href='http://support.supermap.com.cn/product/iServer.aspx' target='_blank'>SuperMap iServer</a></span> with <span>© <a href='https://iclient.supermap.io' target='_blank'>SuperMap iClient</a></span>'] - 版权信息。
35
- * @extends {Graph }
35
+ * @extends {ol.source. Graph }
36
36
*/
37
37
export class RankSymbol extends Graph {
38
38
You can’t perform that action at this time.
0 commit comments