Skip to content

Commit e36aa2f

Browse files
committed
【API】补充leaflet TiledVectorLayer API注释
1 parent f637b57 commit e36aa2f

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

dist/leaflet/iclient9-leaflet-es6.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76708,6 +76708,7 @@ var VectorGrid = external_L_default.a.GridLayer.extend({
7670876708
* @param {string} options.layerNames - 指定图层的名称列表,支持的类型为矢量图层。
7670976709
* @param {string} options.layersID - 获取进行切片的地图图层 ID。
7671076710
* @param {SuperMap.ServerType} [options.serverType=SuperMap.ServerType.ISERVER] - 服务器类型。
76711+
* @param {string} [options.cartoCSS] - 客户端CartoCSS样式字符串。
7671176712
* @param {boolean} [options.serverCartoCSSStyle=true] - 是否使用服务端 CartoCSS 样式。
7671276713
* @param {boolean} [options.processCharacters=false] - 设置客户端CartoCSS样式时是否进行特定字符转换。
7671376714
* @param {L.Proj.CRS} [options.crs] - 坐标系统类。
@@ -76725,6 +76726,7 @@ var TileVectorLayer = VectorGrid.extend({
7672576726
//服务器类型<SuperMap.ServerType>iServer|iPortal|Online
7672676727
serverType: null,
7672776728
crs: null,
76729+
//客户端cartocss样式
7672876730
cartoCSS: null,
7672976731
// 指定图层的名称列表。支持的类型为矢量图层
7673076732
layerNames: null,

dist/leaflet/iclient9-leaflet.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66641,6 +66641,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
6664166641
* @param {string} options.layerNames - 指定图层的名称列表,支持的类型为矢量图层。
6664266642
* @param {string} options.layersID - 获取进行切片的地图图层 ID。
6664366643
* @param {SuperMap.ServerType} [options.serverType=SuperMap.ServerType.ISERVER] - 服务器类型。
66644+
* @param {string} [options.cartoCSS] - 客户端CartoCSS样式字符串。
6664466645
* @param {boolean} [options.serverCartoCSSStyle=true] - 是否使用服务端 CartoCSS 样式。
6664566646
* @param {boolean} [options.processCharacters=false] - 设置客户端CartoCSS样式时是否进行特定字符转换。
6664666647
* @param {L.Proj.CRS} [options.crs] - 坐标系统类。
@@ -66658,6 +66659,7 @@ var TileVectorLayer = exports.TileVectorLayer = _VectorGrid.VectorGrid.extend({
6665866659
//服务器类型<SuperMap.ServerType>iServer|iPortal|Online
6665966660
serverType: null,
6666066661
crs: null,
66662+
//客户端cartocss样式
6666166663
cartoCSS: null,
6666266664
// 指定图层的名称列表。支持的类型为矢量图层
6666366665
layerNames: null,

src/leaflet/overlay/TileVectorLayer.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import Attributions from '../core/Attributions'
3131
* @param {string} options.layerNames - 指定图层的名称列表,支持的类型为矢量图层。
3232
* @param {string} options.layersID - 获取进行切片的地图图层 ID。
3333
* @param {SuperMap.ServerType} [options.serverType=SuperMap.ServerType.ISERVER] - 服务器类型。
34+
* @param {string} [options.cartoCSS] - 客户端CartoCSS样式字符串。
3435
* @param {boolean} [options.serverCartoCSSStyle=true] - 是否使用服务端 CartoCSS 样式。
3536
* @param {boolean} [options.processCharacters=false] - 设置客户端CartoCSS样式时是否进行特定字符转换。
3637
* @param {L.Proj.CRS} [options.crs] - 坐标系统类。
@@ -48,6 +49,7 @@ export var TileVectorLayer = VectorGrid.extend({
4849
//服务器类型<SuperMap.ServerType>iServer|iPortal|Online
4950
serverType: null,
5051
crs: null,
52+
//客户端cartocss样式
5153
cartoCSS: null,
5254
// 指定图层的名称列表。支持的类型为矢量图层
5355
layerNames: null,

0 commit comments

Comments
 (0)