Skip to content

Commit cf7b70b

Browse files
committed
2 parents 1a6bc5a + bd3eef6 commit cf7b70b

File tree

92 files changed

+27462
-14782
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+27462
-14782
lines changed

build/jsdocs/template/typeLinkExt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var olapi = "https://openlayers.org/en/v6.1.1/apidoc/";
1+
var olapi = "https://openlayers.org/en/v6.4.3/apidoc/";
22
var lfapi = "https://leafletjs.com/reference-1.7.1.html";
33
var mbglapi = "https://www.mapbox.com/mapbox-gl-js/api/";
44
var mapv = "https://github.com/huiyan-fe/mapv/blob/master/src/";

dist/classic/iclient-classic-es6.js

Lines changed: 73 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* iclient-classic.(https://iclient.supermap.io)
44
* Copyright© 2000 - 2020 SuperMap Software Co.Ltd
55
* license: Apache-2.0
6-
* version: v10.1.0-beta
6+
* version: v10.1.0
77
*
88
*/
99
/******/ (function(modules) { // webpackBootstrap
@@ -5586,7 +5586,9 @@ var GeometryType = SuperMap.GeometryType = {
55865586
/** RECTANGLE */
55875587
RECTANGLE: "RECTANGLE",
55885588
/** UNKNOWN */
5589-
UNKNOWN: "UNKNOWN"
5589+
UNKNOWN: "UNKNOWN",
5590+
/** GEOCOMPOUND */
5591+
GEOCOMPOUND:"GEOCOMPOUND"
55905592
};
55915593

55925594

@@ -6892,6 +6894,75 @@ var DataItemType = SuperMap.DataItemType = {
68926894
JSON: "JSON"
68936895
}
68946896

6897+
6898+
/**
6899+
* @enum WebExportFormatType
6900+
* @memberOf SuperMap
6901+
* @description Web 打印输出的格式。
6902+
* @version 10.0.1
6903+
* @type {string}
6904+
*/
6905+
var WebExportFormatType = SuperMap.WebExportFormatType = {
6906+
/** png */
6907+
PNG: "PNG",
6908+
/** pdf */
6909+
PDF: "PDF"
6910+
}
6911+
6912+
6913+
/**
6914+
* @enum WebScaleOrientationType
6915+
* @memberOf SuperMap
6916+
* @description Web 比例尺的方位样式。
6917+
* @version 10.0.1
6918+
* @type {string}
6919+
*/
6920+
var WebScaleOrientationType = SuperMap.WebScaleOrientationType = {
6921+
/** horizontal labels below */
6922+
HORIZONTALLABELSBELOW: "HORIZONTALLABELSBELOW",
6923+
/** horizontal labels above */
6924+
HORIZONTALLABELSABOVE: "HORIZONTALLABELSABOVE",
6925+
/** vertical labels left */
6926+
VERTICALLABELSLEFT: "VERTICALLABELSLEFT",
6927+
/** vertical labels right */
6928+
VERTICALLABELSRIGHT: "VERTICALLABELSRIGHT"
6929+
}
6930+
6931+
6932+
/**
6933+
* @enum WebScaleType
6934+
* @memberOf SuperMap
6935+
* @description Web 比例尺的样式。
6936+
* @version 10.0.1
6937+
* @type {string}
6938+
*/
6939+
var WebScaleType = SuperMap.WebScaleType = {
6940+
/** line */
6941+
LINE: "LINE",
6942+
/** bar */
6943+
BAR: "BAR",
6944+
/** bar sub */
6945+
BAR_SUB: "BAR_SUB"
6946+
}
6947+
6948+
6949+
/**
6950+
* @enum WebScaleUnit
6951+
* @memberOf SuperMap
6952+
* @description Web 比例尺的单位制。
6953+
* @version 10.0.1
6954+
* @type {string}
6955+
*/
6956+
var WebScaleUnit = SuperMap.WebScaleUnit = {
6957+
/** meter */
6958+
METER: "METER",
6959+
/** foot */
6960+
FOOT: "FOOT",
6961+
/** degrees */
6962+
DEGREES: "DEGREES"
6963+
}
6964+
6965+
68956966
// CONCATENATED MODULE: ./src/common/iServer/DatasourceConnectionInfo.js
68966967
/* Copyright© 2000 - 2020 SuperMap Software Co.Ltd. All rights reserved.
68976968
* This program are made available under the terms of the Apache License, Version 2.0

dist/classic/iclient-classic-es6.min.js

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/classic/iclient-classic.js

Lines changed: 81 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* iclient-classic.(https://iclient.supermap.io)
44
* Copyright© 2000 - 2020 SuperMap Software Co.Ltd
55
* license: Apache-2.0
6-
* version: v10.1.0-beta
6+
* version: v10.1.0
77
*
88
*/
99
/******/ (function(modules) { // webpackBootstrap
@@ -6103,7 +6103,10 @@ var GeometryType = SuperMap.GeometryType = {
61036103
RECTANGLE: "RECTANGLE",
61046104

61056105
/** UNKNOWN */
6106-
UNKNOWN: "UNKNOWN"
6106+
UNKNOWN: "UNKNOWN",
6107+
6108+
/** GEOCOMPOUND */
6109+
GEOCOMPOUND: "GEOCOMPOUND"
61076110
};
61086111

61096112
/**
@@ -7680,6 +7683,82 @@ var DataItemType = SuperMap.DataItemType = {
76807683
JSON: "JSON"
76817684
};
76827685

7686+
/**
7687+
* @enum WebExportFormatType
7688+
* @memberOf SuperMap
7689+
* @description Web 打印输出的格式。
7690+
* @version 10.0.1
7691+
* @type {string}
7692+
*/
7693+
7694+
var WebExportFormatType = SuperMap.WebExportFormatType = {
7695+
/** png */
7696+
PNG: "PNG",
7697+
7698+
/** pdf */
7699+
PDF: "PDF"
7700+
};
7701+
7702+
/**
7703+
* @enum WebScaleOrientationType
7704+
* @memberOf SuperMap
7705+
* @description Web 比例尺的方位样式。
7706+
* @version 10.0.1
7707+
* @type {string}
7708+
*/
7709+
7710+
var WebScaleOrientationType = SuperMap.WebScaleOrientationType = {
7711+
/** horizontal labels below */
7712+
HORIZONTALLABELSBELOW: "HORIZONTALLABELSBELOW",
7713+
7714+
/** horizontal labels above */
7715+
HORIZONTALLABELSABOVE: "HORIZONTALLABELSABOVE",
7716+
7717+
/** vertical labels left */
7718+
VERTICALLABELSLEFT: "VERTICALLABELSLEFT",
7719+
7720+
/** vertical labels right */
7721+
VERTICALLABELSRIGHT: "VERTICALLABELSRIGHT"
7722+
};
7723+
7724+
/**
7725+
* @enum WebScaleType
7726+
* @memberOf SuperMap
7727+
* @description Web 比例尺的样式。
7728+
* @version 10.0.1
7729+
* @type {string}
7730+
*/
7731+
7732+
var WebScaleType = SuperMap.WebScaleType = {
7733+
/** line */
7734+
LINE: "LINE",
7735+
7736+
/** bar */
7737+
BAR: "BAR",
7738+
7739+
/** bar sub */
7740+
BAR_SUB: "BAR_SUB"
7741+
};
7742+
7743+
/**
7744+
* @enum WebScaleUnit
7745+
* @memberOf SuperMap
7746+
* @description Web 比例尺的单位制。
7747+
* @version 10.0.1
7748+
* @type {string}
7749+
*/
7750+
7751+
var WebScaleUnit = SuperMap.WebScaleUnit = {
7752+
/** meter */
7753+
METER: "METER",
7754+
7755+
/** foot */
7756+
FOOT: "FOOT",
7757+
7758+
/** degrees */
7759+
DEGREES: "DEGREES"
7760+
};
7761+
76837762
// CONCATENATED MODULE: ./src/common/iServer/DatasourceConnectionInfo.js
76847763
function DatasourceConnectionInfo_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
76857764

dist/classic/iclient-classic.min.js

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)