Skip to content

Commit 34fd986

Browse files
【update】 更新 maplibregl 版本号
1 parent 72578fc commit 34fd986

24 files changed

+24
-17
lines changed

examples/maplibregl/config.js

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ var identification = {
77
};
88

99
var exampleConfig = {
10+
version: '11.1.0',
1011
iServer: {
1112
name: 'iServer',
1213
name_en: 'iServer',
@@ -24,7 +25,6 @@ var exampleConfig = {
2425
{
2526
name: '地图-栅格分析',
2627
name_en: 'map rasterFunction',
27-
version: '10.0.0',
2828
thumbnail: 'tiledMapLayerRasterfunction.png',
2929
fileName: '01_tiledMapLayer_rasterfunction'
3030
},
@@ -361,22 +361,19 @@ var exampleConfig = {
361361
{
362362
name: '二元分类结果叠加',
363363
name_en: 'Binary Classification Result Overlay',
364-
version: '10.1.0',
365364
thumbnail: 'machinelearning_binaryclassification.png',
366365
fileName: 'machinelearning_binaryclassification'
367366
},
368367
{
369368
name: '目标检测结果叠加',
370369
name_en: 'Object Detection Result Overlay',
371-
version: '10.1.0',
372370
thumbnail: 'machinelearning_objectdetection.png',
373371
fileName: 'machinelearning_objectdetection'
374372
}
375373
// ,
376374
// {
377375
// name: "地物分类",
378376
// name_en: "Landcover Classification",
379-
// version: "10.1.0",
380377
// thumbnail: "machinelearning_landcoverclassification.png",
381378
// fileName: "machinelearning_landcoverclassification"
382379
// }
@@ -458,7 +455,6 @@ var exampleConfig = {
458455
name: '土地利用',
459456
name_en: 'Land Use',
460457
localIgnore: true,
461-
version: '9.1.0',
462458
thumbnail: 'mvtVectorTile_landuse.png',
463459
fileName: 'mvtVectorTile_landuse'
464460
}
@@ -467,12 +463,10 @@ var exampleConfig = {
467463
cluster: {
468464
name: '聚合',
469465
name_en: 'Cluster',
470-
version: '9.1.1',
471466
content: [
472467
{
473468
name: '点聚合',
474469
name_en: 'Marker cluster',
475-
version: '9.1.1',
476470
thumbnail: 'markerCluster_3857.png',
477471
fileName: 'markerCluster_3857'
478472
}
@@ -559,46 +553,40 @@ var exampleConfig = {
559553
name: '北京道路网络图(130万点数据绘制)',
560554
name_en: 'Use lines to draw 1.3 millions Beijing streets',
561555
localIgnore: true,
562-
version: '9.1.0',
563556
thumbnail: 'mb_echartsLinesMillionsBeijingRoads.png',
564557
fileName: 'echarts_linesDrawMillionsBeijingRoadsNetwork'
565558
},
566559
{
567560
name: '纽约出租车上车点分布图(140万点数据绘制)',
568561
name_en: 'Use scatter to draw 1.4 millions New York Taxi Points',
569562
localIgnore: true,
570-
version: '9.1.0',
571563
thumbnail: 'mb_echartScatterMillionsNewYorkTaxi.png',
572564
fileName: 'echarts_scatterDrawMillionsNewYorkTaxiPoints'
573565
},
574566
{
575567
name: '全国铁路网络图(400万点数据绘制)',
576568
name_en: 'Use lines to draw 4 millions Chinese railways',
577569
localIgnore: true,
578-
version: '9.1.0',
579570
thumbnail: 'mb_echartsLinesMillionsRailway.png',
580571
fileName: 'echarts_linesDrawMillionsRailwaysNetwork'
581572
},
582573
{
583574
name: '全国水系图(1400万点数据绘制)',
584575
name_en: 'Use lines to draw 14 millions Chinese water system',
585576
localIgnore: true,
586-
version: '9.1.0',
587577
thumbnail: 'mb_echartsLinesMillionsWaterSystem.png',
588578
fileName: 'echarts_linesDrawMillionsWaterSystem'
589579
},
590580
{
591581
name: '全国道路网络图(2500万点数据绘制)',
592582
name_en: 'Use lines to draw 25 millions Chinese roads',
593583
localIgnore: true,
594-
version: '9.1.0',
595584
thumbnail: 'mb_echartsLinesMillionsRoads.png',
596585
fileName: 'echarts_linesDrawMillionsRoadsNetwork_50WFeatures'
597586
},
598587
{
599588
name: '车辆监控模拟',
600589
name_en: 'Car Animation',
601-
version: '9.1.0',
602590
thumbnail: 'mb_echartsAnimatorCar.png',
603591
fileName: 'echartsAnimatorCar'
604592
}

src/maplibregl/services/AddressMatchService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { Util as CommonUtil } from '@supermap/iclient-common/commontypes/Util';
99
* @class AddressMatchService
1010
* @category iServer AddressMatch
1111
* @classdesc 地址匹配服务。
12+
* @version 11.1.0
1213
* @example
1314
* new AddressMatchService(url,options)
1415
* .code(function(result){

src/maplibregl/services/ChartService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { ChartService as CommonChartService } from '@supermap/iclient-common/iSe
99
* @class ChartService
1010
* @category iServer Map Chart
1111
* @classdesc 海图服务。
12+
* @version 11.1.0
1213
* @extends {ServiceBase}
1314
* @example
1415
* new ChartService(url)

src/maplibregl/services/DataFlowService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { DataFlowService as DataFlow } from '@supermap/iclient-common/iServer/Da
77
* @class DataFlowService
88
* @category iServer DataFlow
99
* @classdesc 数据流服务。
10+
* @version 11.1.0
1011
* @extends {ServiceBase}
1112
* @example
1213
* new DataFlowService(url)

src/maplibregl/services/DatasetService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { UpdateDatasetParameters } from '@supermap/iclient-common/iServer/Update
99
* @class DatasetService
1010
* @category iServer Data Dataset
1111
* @classdesc 数据源服务类。
12+
* @version 11.1.0
1213
* @param {string} url - 服务地址。
1314
* @param {Object} options - 参数。
1415
* @param {string} [options.proxy] - 服务代理地址。

src/maplibregl/services/DatasourceService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { DatasourceService as CommonDatasourceService } from '@supermap/iclient-
99
* @class DatasourceService
1010
* @category iServer Data Datasource
1111
* @classdesc 数据源服务类。
12+
* @version 11.1.0
1213
* @param {string} url - 服务地址。
1314
* @param {Object} options - 参数。
1415
* @param {string} [options.proxy] - 服务代理地址。

src/maplibregl/services/FeatureService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import { FeatureService as CommonFeatureService } from '@supermap/iclient-common
1313
* @class FeatureService
1414
* @category iServer Data Feature
1515
* @classdesc 要素数据集类。提供:ID 查询、范围查询、SQL 查询、几何查询、bounds 查询、缓冲区查询、地物编辑。
16+
* @version 11.1.0
1617
* @example
1718
* new FeatureService(url)
1819
* .getFeaturesByIDs(param,function(result){

src/maplibregl/services/FieldService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { FieldService as CommonFieldService } from '@supermap/iclient-common/iSe
88
* @class FieldService
99
* @category iServer Data Field
1010
* @classdesc 字段服务类。
11+
* @version 11.1.0
1112
* @example
1213
* new FieldService(url).getFields(function(result){
1314
* //doSomething

src/maplibregl/services/GeoprocessingService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ServiceBase } from './ServiceBase';
44
/**
55
* @class GeoprocessingService
66
* @classdesc 处理自动化服务接口类。
7-
* @version 10.1.0
7+
* @version 11.1.0
88
* @category iServer ProcessingAutomationService
99
* @extends {ServiceBase}
1010
* @example

src/maplibregl/services/GridCellInfosService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { GetGridCellInfosService } from '@supermap/iclient-common/iServer/GetGri
88
* @class GridCellInfosService
99
* @category iServer Data Grid
1010
* @classdesc 数据栅格查询服务。
11+
* @version 11.1.0
1112
* @extends {ServiceBase}
1213
* @example
1314
* new GridCellInfosService(url)

0 commit comments

Comments
 (0)