Skip to content

Commit fea6a10

Browse files
committed
[fix]文档注释修改 examples review by jinny
1 parent 1727af8 commit fea6a10

28 files changed

+35
-35
lines changed

examples/classic/analysis_interpolationAnalystByIDW.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ <h5 class='panel-title text-center' data-i18n="resources.text_interpolationAnaly
100100
resolution: 7923.84989108,
101101
//采取固定点数查找参与运算点的方式
102102
searchMode: "KDTREE_FIXED_COUNT",
103-
//固定点数查找方式下,参与差值运算的点数默认为12。
103+
//固定点数查找方式下,参与插值运算的点数默认为12
104104
expectedCount: 12,
105105
bounds: new SuperMap.Bounds(-2640403.6321084504, 1873792.1034850003, 3247669.390292245, 5921501.395578556)
106106
});

examples/classic/analysis_interpolationAnalystByRBF.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ <h5 class='panel-title text-center' data-i18n="resources.text_interpolationAnaly
9090
// },
9191
//存储用于进行插值分析的字段名称
9292
zValueFieldName: "AVG_TMP",
93-
//采取固定点数查找参与运算点的方式,此方式下,参与差值运算的点数默认为12。
93+
//采取固定点数查找参与运算点的方式,此方式下,参与插值运算的点数默认为12
9494
searchMode: "KDTREE_FIXED_COUNT",
9595
bounds:new SuperMap.Bounds(-2640403.6321084504, 1873792.1034850003, 3247669.390292245, 5921501.395578556)
9696
});

examples/classic/theme_ctl_GraphBar.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphBar"></h5>
112112
map.setCenter(new SuperMap.LonLat(104.067923, 34.679943), 2);
113113
}
114114

115-
// 构建 feature 数据, 专题图的数据必须是 SuperMap.Feature.Vector
115+
// 构建 feature 数据专题图的数据必须是 SuperMap.Feature.Vector
116116
function addThemeLayer() {
117117
clearThemeLayer();
118118

@@ -145,7 +145,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphBar"></h5>
145145
// 显示地图弹窗
146146
function showInfoWin(e) {
147147
// e.target 是图形对象,即数据的可视化对象,柱状图中是柱条;
148-
// 图形对象的 refDataID 属性是数据(feature)的 id 属性,它指明图形对象是由那个数据制作而来;
148+
// 图形对象的 refDataID 属性是数据(feature)的 ID 属性,它指明图形对象是由那个数据制作而来;
149149
// 图形对象的 dataInfo 属性是图形对象表示的具体数据,他有两个属性,field 和 value;
150150
if (e.target && e.target.refDataID && e.target.dataInfo) {
151151
closeInfoWin();

examples/classic/theme_ctl_GraphBar3D.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphBar3D"></h5>
111111
map.setCenter(new SuperMap.LonLat(104.067923, 34.679943), 2);
112112
}
113113

114-
//构建 feature 数据, 专题图的数据必须是 SuperMap.Feature.Vector
114+
//构建 feature 数据专题图的数据必须是 SuperMap.Feature.Vector
115115
function addThemeLayer() {
116116
clearThemeLayer();
117117

@@ -154,7 +154,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphBar3D"></h5>
154154
// 显示地图弹窗
155155
function showInfoWin(e) {
156156
// e.target 是图形对象,即数据的可视化对象,三维柱状图中是指三维柱条;
157-
// 图形对象的 refDataID 属性是数据(feature)的 id 属性,它指明图形对象是由那个数据制作而来;
157+
// 图形对象的 refDataID 属性是数据(feature)的 ID 属性,它指明图形对象是由那个数据制作而来;
158158
// 图形对象的 dataInfo 属性是图形对象表示的具体数据,他有两个属性,field 和 value;
159159
if (e.target && e.target.refDataID && e.target.dataInfo) {
160160
closeInfoWin();

examples/classic/theme_ctl_GraphLine.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphLine"></h5>
119119
map.setCenter(new SuperMap.LonLat(104.067923, 34.679943), 2);
120120
}
121121

122-
//构建 feature 数据, 专题图的数据必须是 SuperMap.Feature.Vector
122+
//构建 feature 数据专题图的数据必须是 SuperMap.Feature.Vector
123123
function addThemeLayer() {
124124
clearThemeLayer();
125125

@@ -152,7 +152,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphLine"></h5>
152152
// 显示地图弹窗
153153
function showInfoWin(e) {
154154
// e.target 是图形对象,即数据的可视化对象,折线图中是折线节点。
155-
// 图形对象的 refDataID 属性是数据(feature)的 id 属性,它指明图形对象是由那个数据制作而来;
155+
// 图形对象的 refDataID 属性是数据(feature)的 ID 属性,它指明图形对象是由那个数据制作而来;
156156
// 图形对象的 dataInfo 属性是图形对象表示的具体数据,他有两个属性,field 和 value;
157157
if (e.target && e.target.refDataID && e.target.dataInfo) {
158158
closeInfoWin();

examples/classic/theme_ctl_GraphPie.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphPie"></h5>
104104
map.setCenter(new SuperMap.LonLat(104.067923, 34.679943), 2);
105105
}
106106

107-
//构建 feature 数据, 专题图的数据必须是 SuperMap.Feature.Vector
107+
//构建 feature 数据专题图的数据必须是 SuperMap.Feature.Vector
108108
function addThemeLayer() {
109109
clearThemeLayer();
110110

@@ -137,7 +137,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphPie"></h5>
137137
// 显示地图弹窗
138138
function showInfoWin(e) {
139139
// e.target 是图形对象,即数据的可视化对象,饼状图中是扇形。
140-
// 图形对象的 refDataID 属性是数据(feature)的 id 属性,它指明图形对象是由那个数据制作而来;
140+
// 图形对象的 refDataID 属性是数据(feature)的 ID 属性,它指明图形对象是由那个数据制作而来;
141141
// 图形对象的 dataInfo 属性是图形对象表示的具体数据,他有两个属性,field 和 value;
142142
if (e.target && e.target.refDataID && e.target.dataInfo) {
143143
closeInfoWin();

examples/classic/theme_ctl_GraphPoint.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphPoint"></h5>
151151
// 显示地图弹窗
152152
function showInfoWin(e) {
153153
// e.target 是图形对象,即数据的可视化对象,点状图中是图形点。
154-
// 图形对象的 refDataID 属性是数据(feature)的 id 属性,它指明图形对象是由那个数据制作而来;
154+
// 图形对象的 refDataID 属性是数据(feature)的 ID 属性,它指明图形对象是由那个数据制作而来;
155155
// 图形对象的 dataInfo 属性是图形对象表示的具体数据,他有两个属性,field 和 value;
156156
if (e.target && e.target.refDataID && e.target.dataInfo) {
157157
closeInfoWin();

examples/classic/theme_ctl_GraphRing.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphRing"></h5>
104104
map.setCenter(new SuperMap.LonLat(104.067923, 34.679943), 2);
105105
}
106106

107-
//构建 feature 数据, 专题图的数据必须是 SuperMap.Feature.Vector
107+
//构建 feature 数据专题图的数据必须是 SuperMap.Feature.Vector
108108
function addThemeLayer() {
109109
clearThemeLayer();
110110

@@ -137,7 +137,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_GraphRing"></h5>
137137
// 显示地图弹窗
138138
function showInfoWin(e) {
139139
// e.target 是图形对象,即数据的可视化对象;
140-
// 图形对象的 refDataID 属性是数据(feature)的 id 属性,它指明图形对象是由那个数据制作而来;
140+
// 图形对象的 refDataID 属性是数据(feature)的 ID 属性,它指明图形对象是由那个数据制作而来;
141141
// 图形对象的 dataInfo 属性是图形对象表示的具体数据,他有两个属性,field 和 value;
142142
if (e.target && e.target.refDataID && e.target.dataInfo) {
143143
closeInfoWin();

examples/classic/theme_ctl_RankSymbol.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_RankSymbol"></h5>
100100
map.setCenter(new SuperMap.LonLat(104.067923, 34.679943), 2);
101101
}
102102

103-
//构建 feature 数据, 专题图的数据必须是 SuperMap.Feature.Vector
103+
//构建 feature 数据专题图的数据必须是 SuperMap.Feature.Vector
104104
function addThemeFeatures() {
105105
clearThemeLayer();
106106

@@ -129,7 +129,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_RankSymbol"></h5>
129129
// 显示地图弹窗
130130
function showInfoWin(e) {
131131
// e.target 是图形对象,即数据的可视化对象。
132-
// 图形对象的 refDataID 属性是数据(feature)的 id 属性,它指明图形对象是由那个数据制作而来;
132+
// 图形对象的 refDataID 属性是数据(feature)的 ID 属性,它指明图形对象是由那个数据制作而来;
133133
// 图形对象的 dataInfo 属性是图形对象表示的具体数据,他有两个属性,field、R 和 value;
134134
if (e.target && e.target.refDataID && e.target.dataInfo) {
135135
closeInfoWin();

examples/classic/theme_ctl_jingjinPopGraph.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_jingjinPopGraph">
158158
map.setCenter(new SuperMap.LonLat(117, 40.004), 0);
159159
}
160160

161-
//获取 feature 数据, 专题图的数据必须是 SuperMap.Feature.Vector
161+
//获取 feature 数据专题图的数据必须是 SuperMap.Feature.Vector
162162
function addThemeLayer() {
163163
clearThemeLayer();
164164

@@ -208,7 +208,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_jingjinPopGraph">
208208
// 显示地图弹窗
209209
function showInfoWin(e) {
210210
// e.target 是图形对象,即数据的可视化对象;
211-
// 图形对象的 refDataID 属性是数据(feature)的 id 属性,它指明图形对象是由那个数据制作而来;
211+
// 图形对象的 refDataID 属性是数据(feature)的 ID 属性,它指明图形对象是由那个数据制作而来;
212212
// 图形对象的 dataInfo 属性是图形对象表示的具体数据,他有两个属性,field 和 value;
213213
if (e.target && e.target.refDataID && e.target.dataInfo) {
214214

0 commit comments

Comments
 (0)