Skip to content

Commit 390ae8a

Browse files
committed
【fix】fix单词拼写错误
1 parent aebfe34 commit 390ae8a

File tree

18 files changed

+72
-72
lines changed

18 files changed

+72
-72
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
- `L.supermap.ThemeLayer` 及其子类
222222
- `addFeatures` 方法默认只支持添加经纬度坐标要素,新增 `options.alwaysMapCRS` 参数,设置该参数为true , `addFeatures` 方法可添加底图坐标要素
223223

224-
- `addFeatures` 方法支持 `L.supermap.ThemeFeature` 类型和 `GeoJOSN` 规范数据类型的 `feature` 数组
224+
- `addFeatures` 方法支持 `L.supermap.ThemeFeature` 类型和 `GeoJSON` 规范数据类型的 `feature` 数组
225225

226226
- 废弃`_createFeature` 接口,由 `toiClientFeature` 接口代替
227227

@@ -306,7 +306,7 @@
306306
- 可视化 - 客户端专题图
307307

308308
- `ol.supermap.Theme` 及其子类
309-
- `addFeatures` 方法支持传入 `ol.supermap.ThemeFeature` 类型、`GeoJOSN` 规范数据类型,以及`ol.Feature`类型的 `feature` 数组
309+
- `addFeatures` 方法支持传入 `ol.supermap.ThemeFeature` 类型、`GeoJSON` 规范数据类型,以及`ol.Feature`类型的 `feature` 数组
310310

311311
- 废弃 `toFeature` 方法,由 `toiClientFeature` 方法代替
312312

@@ -381,7 +381,7 @@
381381
- 可视化 - 客户端专题图
382382

383383
- `mapboxgl.supermap.ThemeLayer` 及其子类
384-
- `addFeatures` 方法,支持传入 `mapboxgl.supermap.ThemeFeature` 类型和 `GeoJOSN` 规范数据类型的 `feature` 数组
384+
- `addFeatures` 方法,支持传入 `mapboxgl.supermap.ThemeFeature` 类型和 `GeoJSON` 规范数据类型的 `feature` 数组
385385

386386
- 废弃 `toFeature` 方法,由 `toiClientFeature` 方法代替
387387

dist/leaflet/iclient9-leaflet-es6.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67570,10 +67570,10 @@ external_L_default.a.Util.NormalizeScale = NormalizeScale;
6757067570
* @function L.Util.transform
6757167571
* @description 将要素转换为指定坐标。
6757267572
* @param {(L.Marker|L.CircleMarker|L.Polyline|L.Polygon|L.Rectangle|L.LatLngBounds|L.Bounds|Object)} feature - 待转要素包括 Leaflet Vector Layers
67573-
* 的 {@link L.Marker}|{@link L.CircleMarker}|{@link L.Polyline}|{@link L.Polygon}|{@link L.Rectangle}|{@link L.LatLngBounds}|{@link L.Bounds} 类型和 GeoJOSN 规范数据类型。
67573+
* 的 {@link L.Marker}|{@link L.CircleMarker}|{@link L.Polyline}|{@link L.Polygon}|{@link L.Rectangle}|{@link L.LatLngBounds}|{@link L.Bounds} 类型和 GeoJSON 规范数据类型。
6757467574
* @param {L.Proj.CRS} [sourceCRS=L.CRS.EPSG4326] - 要素转换源坐标系。
6757567575
* @param {L.Proj.CRS} targetCRS - 要素转换目标坐标系。
67576-
* @returns {Object} 返回 GeoJOSN 规范数据类型。
67576+
* @returns {Object} 返回 GeoJSON 规范数据类型。
6757767577
*/
6757867578
var transform = function (feature, sourceCRS = external_L_default.a.CRS.EPSG4326, targetCRS) {
6757967579
let selfFeatures = null;
@@ -69859,7 +69859,7 @@ var ThemeLayer = external_L_default.a.Layer.extend({
6985969859
/**
6986069860
* @function L.supermap.ThemeLayer.prototype.addFeatures
6986169861
* @description 向专题图图层中添加数据, 支持的 feature 类型为:iServer 返回的 feature JSON 对象或 L.supermap.themeFeature 类型。
69862-
* @param {(L.supermap.themeFeature|Object)} features - 待转要素包括 L.supermap.ThemeFeature 类型和 GeoJOSN 规范数据类型。
69862+
* @param {(L.supermap.themeFeature|Object)} features - 待转要素包括 L.supermap.ThemeFeature 类型和 GeoJSON 规范数据类型。
6986369863
*/
6986469864
addFeatures: function (features) { // eslint-disable-line no-unused-vars
6986569865
//子类实现此方法
@@ -70172,7 +70172,7 @@ var ThemeLayer = external_L_default.a.Layer.extend({
7017270172
/**
7017370173
* @function L.supermap.ThemeLayer.prototype.toiClientFeature
7017470174
* @description 转为 iClient 要素。
70175-
* @param {L.supermap.themeFeature|Object} features - 待转要素包括 {@link L.supermap.ThemeFeature} 类型和 GeoJOSN 规范数据类型。
70175+
* @param {L.supermap.themeFeature|Object} features - 待转要素包括 {@link L.supermap.ThemeFeature} 类型和 GeoJSON 规范数据类型。
7017670176
* @returns {Array.<SuperMap.Feature.Vector>} 转换后的 iClient 要素。
7017770177
*/
7017870178
toiClientFeature: function (features) {
@@ -70190,7 +70190,7 @@ var ThemeLayer = external_L_default.a.Layer.extend({
7019070190
// 若是 GeometryVector 类型直接返回
7019170191
featuresTemp.push(features[i]);
7019270192
} else if (["FeatureCollection", "Feature", "Geometry"].indexOf(features[i].type) != -1) {
70193-
//GeoJOSN 规范数据类型
70193+
//GeoJSON 规范数据类型
7019470194
const format = new GeoJSON_GeoJSON();
7019570195
featuresTemp = featuresTemp.concat(format.read(features[i]));
7019670196
} else if (features[i].geometry && features[i].geometry.parts) {
@@ -70208,7 +70208,7 @@ var ThemeLayer = external_L_default.a.Layer.extend({
7020870208
* @function L.supermap.ThemeLayer.prototype.toFeature
7020970209
* @deprecated
7021070210
* @description 转为 iClient 要素,该方法将被弃用,由 {@link L.supermap.ThemeLayer#toiClientFeature} 代替。
70211-
* @param {(L.supermap.themeFeature|Object)} features - 待转要素包括 {@link L.supermap.ThemeFeature} 类型和 GeoJOSN 规范数据类型。
70211+
* @param {(L.supermap.themeFeature|Object)} features - 待转要素包括 {@link L.supermap.ThemeFeature} 类型和 GeoJSON 规范数据类型。
7021270212
* @returns {SuperMap.Feature.Vector} 转换后的 iClient 要素。
7021370213
*/
7021470214
toFeature: function (features) {
@@ -79299,7 +79299,7 @@ var HeatMapLayer = external_L_default.a.Layer.extend({
7929979299
/**
7930079300
* @function L.supermap.heatMapLayer.prototype.addFeatures
7930179301
* @description 添加热点信息。
79302-
* @param {(Object|HeatMapFeature)} features - 待添加的要素数组,支持 GeoJOSN 规范数据类型和 HeatMapFeature 格式。
79302+
* @param {(Object|HeatMapFeature)} features - 待添加的要素数组,支持 GeoJSON 规范数据类型和 HeatMapFeature 格式。
7930379303
*
7930479304
* @example
7930579305
* var geojson = {
@@ -79670,7 +79670,7 @@ var HeatMapLayer = external_L_default.a.Layer.extend({
7967079670
/**
7967179671
* @function L.supermap.heatMapLayer.prototype.toiClientFeature
7967279672
* @description 转为 iClient 要素。
79673-
* @param {(Object|HeatMapFeature)} features - 待添加的要素数组,支持 GeoJOSN 规范数据类型和 HeatMapFeature 格式。
79673+
* @param {(Object|HeatMapFeature)} features - 待添加的要素数组,支持 GeoJSON 规范数据类型和 HeatMapFeature 格式。
7967479674
* @returns {SuperMap.Feature.Vector} 转换后的 iClient 要素。
7967579675
*/
7967679676
toiClientFeature: function (features) {

dist/leaflet/iclient9-leaflet.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22197,7 +22197,7 @@ var ThemeLayer = exports.ThemeLayer = _leaflet2["default"].Layer.extend({
2219722197
/**
2219822198
* @function L.supermap.ThemeLayer.prototype.addFeatures
2219922199
* @description 向专题图图层中添加数据, 支持的 feature 类型为:iServer 返回的 feature JSON 对象或 L.supermap.themeFeature 类型。
22200-
* @param {(L.supermap.themeFeature|Object)} features - 待转要素包括 L.supermap.ThemeFeature 类型和 GeoJOSN 规范数据类型。
22200+
* @param {(L.supermap.themeFeature|Object)} features - 待转要素包括 L.supermap.ThemeFeature 类型和 GeoJSON 规范数据类型。
2220122201
*/
2220222202
addFeatures: function addFeatures(features) {// eslint-disable-line no-unused-vars
2220322203
//子类实现此方法
@@ -22508,7 +22508,7 @@ var ThemeLayer = exports.ThemeLayer = _leaflet2["default"].Layer.extend({
2250822508
/**
2250922509
* @function L.supermap.ThemeLayer.prototype.toiClientFeature
2251022510
* @description 转为 iClient 要素。
22511-
* @param {L.supermap.themeFeature|Object} features - 待转要素包括 {@link L.supermap.ThemeFeature} 类型和 GeoJOSN 规范数据类型。
22511+
* @param {L.supermap.themeFeature|Object} features - 待转要素包括 {@link L.supermap.ThemeFeature} 类型和 GeoJSON 规范数据类型。
2251222512
* @returns {Array.<SuperMap.Feature.Vector>} 转换后的 iClient 要素。
2251322513
*/
2251422514
toiClientFeature: function toiClientFeature(features) {
@@ -22526,7 +22526,7 @@ var ThemeLayer = exports.ThemeLayer = _leaflet2["default"].Layer.extend({
2252622526
// 若是 GeometryVector 类型直接返回
2252722527
featuresTemp.push(features[i]);
2252822528
} else if (["FeatureCollection", "Feature", "Geometry"].indexOf(features[i].type) != -1) {
22529-
//GeoJOSN 规范数据类型
22529+
//GeoJSON 规范数据类型
2253022530
var format = new _iclientCommon.GeoJSON();
2253122531
featuresTemp = featuresTemp.concat(format.read(features[i]));
2253222532
} else if (features[i].geometry && features[i].geometry.parts) {
@@ -22543,7 +22543,7 @@ var ThemeLayer = exports.ThemeLayer = _leaflet2["default"].Layer.extend({
2254322543
* @function L.supermap.ThemeLayer.prototype.toFeature
2254422544
* @deprecated
2254522545
* @description 转为 iClient 要素,该方法将被弃用,由 {@link L.supermap.ThemeLayer#toiClientFeature} 代替。
22546-
* @param {(L.supermap.themeFeature|Object)} features - 待转要素包括 {@link L.supermap.ThemeFeature} 类型和 GeoJOSN 规范数据类型。
22546+
* @param {(L.supermap.themeFeature|Object)} features - 待转要素包括 {@link L.supermap.ThemeFeature} 类型和 GeoJSON 规范数据类型。
2254722547
* @returns {SuperMap.Feature.Vector} 转换后的 iClient 要素。
2254822548
*/
2254922549
toFeature: function toFeature(features) {
@@ -68092,7 +68092,7 @@ var HeatMapLayer = exports.HeatMapLayer = _leaflet2["default"].Layer.extend({
6809268092
/**
6809368093
* @function L.supermap.heatMapLayer.prototype.addFeatures
6809468094
* @description 添加热点信息。
68095-
* @param {(Object|HeatMapFeature)} features - 待添加的要素数组,支持 GeoJOSN 规范数据类型和 HeatMapFeature 格式。
68095+
* @param {(Object|HeatMapFeature)} features - 待添加的要素数组,支持 GeoJSON 规范数据类型和 HeatMapFeature 格式。
6809668096
*
6809768097
* @example
6809868098
* var geojson = {
@@ -68466,7 +68466,7 @@ var HeatMapLayer = exports.HeatMapLayer = _leaflet2["default"].Layer.extend({
6846668466
/**
6846768467
* @function L.supermap.heatMapLayer.prototype.toiClientFeature
6846868468
* @description 转为 iClient 要素。
68469-
* @param {(Object|HeatMapFeature)} features - 待添加的要素数组,支持 GeoJOSN 规范数据类型和 HeatMapFeature 格式。
68469+
* @param {(Object|HeatMapFeature)} features - 待添加的要素数组,支持 GeoJSON 规范数据类型和 HeatMapFeature 格式。
6847068470
* @returns {SuperMap.Feature.Vector} 转换后的 iClient 要素。
6847168471
*/
6847268472
toiClientFeature: function toiClientFeature(features) {
@@ -74900,10 +74900,10 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
7490074900
* @function L.Util.transform
7490174901
* @description 将要素转换为指定坐标。
7490274902
* @param {(L.Marker|L.CircleMarker|L.Polyline|L.Polygon|L.Rectangle|L.LatLngBounds|L.Bounds|Object)} feature - 待转要素包括 Leaflet Vector Layers
74903-
* 的 {@link L.Marker}|{@link L.CircleMarker}|{@link L.Polyline}|{@link L.Polygon}|{@link L.Rectangle}|{@link L.LatLngBounds}|{@link L.Bounds} 类型和 GeoJOSN 规范数据类型。
74903+
* 的 {@link L.Marker}|{@link L.CircleMarker}|{@link L.Polyline}|{@link L.Polygon}|{@link L.Rectangle}|{@link L.LatLngBounds}|{@link L.Bounds} 类型和 GeoJSON 规范数据类型。
7490474904
* @param {L.Proj.CRS} [sourceCRS=L.CRS.EPSG4326] - 要素转换源坐标系。
7490574905
* @param {L.Proj.CRS} targetCRS - 要素转换目标坐标系。
74906-
* @returns {Object} 返回 GeoJOSN 规范数据类型。
74906+
* @returns {Object} 返回 GeoJSON 规范数据类型。
7490774907
*/
7490874908
/* Copyright© 2000 - 2018 SuperMap Software Co.Ltd. All rights reserved.
7490974909
* This program are made available under the terms of the Apache License, Version 2.0

dist/mapboxgl/iclient9-mapboxgl-es6.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63773,7 +63773,7 @@ class ThemeLayer_Theme {
6377363773

6377463774
/**
6377563775
* @function mapboxgl.supermap.ThemeLayer.prototype.addFeatures
63776-
* @param {mapboxgl.supermap.ThemeFeature|Object} features - 待转要素包括 mapboxgl.supermap.ThemeFeature 类型和 GeoJOSN 规范数据类型
63776+
* @param {mapboxgl.supermap.ThemeFeature|Object} features - 待转要素包括 mapboxgl.supermap.ThemeFeature 类型和 GeoJSON 规范数据类型
6377763777
* @description 抽象方法,可实例化子类必须实现此方法。向专题图图层中添加数据 ,
6377863778
* 专题图仅接收 SuperMap.Feature.Vector 类型数据,
6377963779
* feature 将储存于 features 属性中,其存储形式为数组。
@@ -63979,7 +63979,7 @@ class ThemeLayer_Theme {
6397963979
/**
6398063980
* @function mapboxgl.supermap.ThemeLayer.prototype.toFeature
6398163981
* @description 转为 iClient 要素。
63982-
* @param {mapboxgl.supermap.ThemeFeature|Object} features - 待转要素包括 mapboxgl.supermap.ThemeFeature 类型和 GeoJOSN 规范数据类型。
63982+
* @param {mapboxgl.supermap.ThemeFeature|Object} features - 待转要素包括 mapboxgl.supermap.ThemeFeature 类型和 GeoJSON 规范数据类型。
6398363983
* @returns {SuperMap.Feature.Vector} 转换后的 iClient 要素。
6398463984
*/
6398563985
toiClientFeature(features) {
@@ -63996,7 +63996,7 @@ class ThemeLayer_Theme {
6399663996
// 若是 GeometryVector 直接返回
6399763997
featuresTemp.push(features[i]);
6399863998
} else if (["FeatureCollection", "Feature", "Geometry"].indexOf(features[i].type) != -1) {
63999-
//GeoJOSN 规范数据类型
63999+
//GeoJSON 规范数据类型
6400064000
let format = new GeoJSON_GeoJSON();
6400164001
featuresTemp = featuresTemp.concat(format.read(features[i]));
6400264002
} else if (features[i].geometry && features[i].geometry.parts) {
@@ -64014,7 +64014,7 @@ class ThemeLayer_Theme {
6401464014
* @function mapboxgl.supermap.ThemeLayer.prototype.toFeature
6401564015
* @deprecated
6401664016
* @description 转为 iClient 要素,该方法将被弃用,由 {@link mapboxgl.supermap.ThemeLayer#toiClientFeature} 代替。
64017-
* @param {mapboxgl.supermap.ThemeFeature|Object} features - 待转要素包括 mapboxgl.supermap.ThemeFeature 类型和 GeoJOSN 规范数据类型。
64017+
* @param {mapboxgl.supermap.ThemeFeature|Object} features - 待转要素包括 mapboxgl.supermap.ThemeFeature 类型和 GeoJSON 规范数据类型。
6401864018
* @returns {SuperMap.Feature.Vector} 转换后的 iClient 要素。
6401964019
*/
6402064020
toFeature(features) {
@@ -69292,7 +69292,7 @@ class HeatMapLayer_HeatMapLayer extends external_mapboxgl_default.a.Evented {
6929269292
/**
6929369293
* @function mapboxgl.supermap.HeatMapLayer.prototype.addFeatures
6929469294
* @description 添加热点信息。
69295-
* @param {Object} features - 待添加的要素数组,支持 GeoJOSN 规范数据类型。
69295+
* @param {Object} features - 待添加的要素数组,支持 GeoJSON 规范数据类型。
6929669296
*
6929769297
* @example
6929869298
* var geojson = {
@@ -69548,7 +69548,7 @@ class HeatMapLayer_HeatMapLayer extends external_mapboxgl_default.a.Evented {
6954869548
/**
6954969549
* @function mapboxgl.supermap.HeatMapLayer.prototype.toiClientFeature
6955069550
* @description 转为 iClient 要素。
69551-
* @param {Object} features - 待添加的要素数组,支持 GeoJOSN 规范数据类型。
69551+
* @param {Object} features - 待添加的要素数组,支持 GeoJSON 规范数据类型。
6955269552
*/
6955369553
toiClientFeature(features) {
6955469554
if (!Util_Util.isArray(features)) {
@@ -69560,7 +69560,7 @@ class HeatMapLayer_HeatMapLayer extends external_mapboxgl_default.a.Evented {
6956069560
// 若是 GeometryVector 直接返回
6956169561
featuresTemp.push(features[i]);
6956269562
} else if (["FeatureCollection", "Feature", "Geometry"].indexOf(features[i].type) != -1) {
69563-
//GeoJOSN 规范数据类型
69563+
//GeoJSON 规范数据类型
6956469564
let format = new GeoJSON_GeoJSON();
6956569565
featuresTemp = featuresTemp.concat(format.read(features[i]));
6956669566
} else if (features[i].geometry && features[i].geometry.parts) {
@@ -69784,7 +69784,7 @@ external_mapboxgl_default.a.supermap.HeatMapLayer = HeatMapLayer_HeatMapLayer;
6978469784
* @param {string} layerTypeID - 高效率图层类型 ID,包括 "scatter-plot" 高效率点图层、"path-layer" 路径图层(线图层)、
6978569785
* "polygon-layer" 高效率面图层、 "arc-layer" 曲线图层、"hexagon-layer" 正六边形图层(蜂巢图层)、"screen-grid-layer" 网格图层。
6978669786
* @param {Object} options - 图层配置项,包括以下参数:
69787-
* @param {Array.<Object>} options.data - 图层数据,支持 GeoJOSN 规范数据类型。
69787+
* @param {Array.<Object>} options.data - 图层数据,支持 GeoJSON 规范数据类型。
6978869788
* @param {Object} options.callback - deckgl 图层回调函数配置项。
6978969789
* @param {Object} options.props - deckgl 图层配置项, 在该参数下配置图层配置项:
6979069790
* @param {boolean} options.props.coverage - "hexagon-layer" 配置项:六边形半径乘数,介于0 - 1之间。六边形的最终半径通过覆盖半径计算。 注意:覆盖范围不会影响分数的分配方式。 分配方式的半径仅由半径属性确定;

0 commit comments

Comments
 (0)