@@ -17666,7 +17666,7 @@ _leaflet2["default"].supermap.dataFlowLayer = dataFlowLayer;
1766617666Object.defineProperty(exports, "__esModule", {
1766717667 value: true
1766817668});
17669- exports.echartsMapLayer = exports.EchartsMapLayer = undefined;
17669+ exports.echartsLayer = exports.EchartsLayer = undefined;
1767017670exports.LeafletMapCoordSys = LeafletMapCoordSys;
1767117671
1767217672__webpack_require__(4);
@@ -17682,15 +17682,15 @@ var _echarts2 = _interopRequireDefault(_echarts);
1768217682function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
1768317683
1768417684/**
17685- * @class L.supermap.echartsMapLayer
17685+ * @class L.supermap.echartsLayer
1768617686 * @classdesc 图表地图图层类。
1768717687 * @extends L.Layer{@linkdoc-leaflet/#layer}
1768817688 * @param echartsOptions - {Object} 图表参数
1768917689 * @param options - {Object} 可选图层参数。<br>
1769017690 * attribution - {string} 版权信息。<br>
1769117691 * loadWhileAnimating - {boolean} 是否在启动时加载。
1769217692 */
17693- var EchartsMapLayer = exports.EchartsMapLayer = _leaflet2["default"].Layer.extend({
17693+ var EchartsLayer = exports.EchartsLayer = _leaflet2["default"].Layer.extend({
1769417694
1769517695 includes: [],
1769617696 _echartsContainer: null,
@@ -17714,7 +17714,7 @@ var EchartsMapLayer = exports.EchartsMapLayer = _leaflet2["default"].Layer.exten
1771417714 },
1771517715
1771617716 /**
17717- * @function L.supermap.echartsMapLayer .prototype.setOption
17717+ * @function L.supermap.echartsLayer .prototype.setOption
1771817718 * @description 设置图表地图参数
1771917719 * @param echartsOptions - {Object} 图表参数
1772017720 * @param notMerge - {boolean} 是否合并参数
@@ -17738,7 +17738,7 @@ var EchartsMapLayer = exports.EchartsMapLayer = _leaflet2["default"].Layer.exten
1773817738 },
1773917739
1774017740 /**
17741- * @function L.supermap.echartsMapLayer .prototype.onAdd
17741+ * @function L.supermap.echartsLayer .prototype.onAdd
1774217742 * @description 添加地图
1774317743 * @param map - {L.map} 待添加的地图
1774417744 */
@@ -17799,6 +17799,7 @@ var EchartsMapLayer = exports.EchartsMapLayer = _leaflet2["default"].Layer.exten
1779917799 });
1780017800 me._enableEchartsContainer();
1780117801 }
17802+
1780217803 if (me.options.loadWhileAnimating) {
1780317804 leafletMap.off('move', this._oldMoveHandler);
1780417805 } else {
@@ -17895,10 +17896,10 @@ LeafletMapCoordSys.create = function (ecModel, api) {
1789517896 });
1789617897};
1789717898
17898- var echartsMapLayer = exports.echartsMapLayer = function echartsMapLayer (echartsOptions, options) {
17899- return new EchartsMapLayer (echartsOptions, options);
17899+ var echartsLayer = exports.echartsLayer = function echartsLayer (echartsOptions, options) {
17900+ return new EchartsLayer (echartsOptions, options);
1790017901};
17901- _leaflet2["default"].supermap.echartsMapLayer = echartsMapLayer ;
17902+ _leaflet2["default"].supermap.echartsLayer = echartsLayer ;
1790217903
1790317904/***/ }),
1790417905/* 103 */
@@ -17910,7 +17911,7 @@ _leaflet2["default"].supermap.echartsMapLayer = echartsMapLayer;
1791017911Object.defineProperty(exports, "__esModule", {
1791117912 value: true
1791217913});
17913- exports.graphicGroup = exports.GraphicGroup = undefined;
17914+ exports.graphicLayer = exports.GraphicLayer = undefined;
1791417915
1791517916__webpack_require__(4);
1791617917
@@ -17925,7 +17926,7 @@ __webpack_require__(326);
1792517926function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
1792617927
1792717928/**
17928- * @class L.supermap.graphicGroup
17929+ * @class L.supermap.graphicLayer
1792917930 * @classdesc 图形组合类。
1793017931 * @extends L.Path{@linkdoc-leaflet/#path}
1793117932 * @param graphics - {Object} 图形成员
@@ -17942,7 +17943,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
1794217943 * fillRule - {string} 填充形状
1794317944 * radius - {number}半径
1794417945 */
17945- var GraphicGroup = exports.GraphicGroup = _leaflet2["default"].Path.extend({
17946+ var GraphicLayer = exports.GraphicLayer = _leaflet2["default"].Path.extend({
1794617947
1794717948 initialize: function initialize(graphics, options) {
1794817949 options = options || {};
@@ -17951,9 +17952,9 @@ var GraphicGroup = exports.GraphicGroup = _leaflet2["default"].Path.extend({
1795117952 },
1795217953
1795317954 /**
17954- * @function L.supermap.graphicGroup .prototype.getEvents
17955+ * @function L.supermap.graphicLayer .prototype.getEvents
1795517956 * @description 获取事件
17956- * @return {{click: L.supermap.GraphicGroup ._handleClick}}
17957+ * @return {{click: L.supermap.graphicLayer ._handleClick}}
1795717958 */
1795817959 getEvents: function getEvents() {
1795917960 var events = {
@@ -17963,7 +17964,7 @@ var GraphicGroup = exports.GraphicGroup = _leaflet2["default"].Path.extend({
1796317964 },
1796417965
1796517966 /**
17966- * @function L.supermap.graphicGroup .prototype.onAdd
17967+ * @function L.supermap.graphicLayer .prototype.onAdd
1796717968 * @description 添加图形
1796817969 */
1796917970 onAdd: function onAdd() {
@@ -18043,11 +18044,11 @@ _leaflet2["default"].Canvas.include({
1804318044 }
1804418045});
1804518046
18046- var graphicGroup = exports.graphicGroup = function graphicGroup (graphics, options) {
18047- return new GraphicGroup (graphics, options);
18047+ var graphicLayer = exports.graphicLayer = function graphicLayer (graphics, options) {
18048+ return new GraphicLayer (graphics, options);
1804818049};
1804918050
18050- _leaflet2["default"].supermap.graphicGroup = graphicGroup ;
18051+ _leaflet2["default"].supermap.graphicLayer = graphicLayer ;
1805118052
1805218053/***/ }),
1805318054/* 104 */
@@ -62315,108 +62316,7 @@ eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a
6231562316/* 382 */
6231662317/***/ (function(module, exports) {
6231762318
62318- module.exports = {
62319- "_from": "proj4@2.3.15",
62320- "_id": "proj4@2.3.15",
62321- "_inBundle": false,
62322- "_integrity": "sha1-WtBui8owvg/6OJpJ5FZfUfBtCJ4=",
62323- "_location": "/proj4",
62324- "_phantomChildren": {},
62325- "_requested": {
62326- "type": "version",
62327- "registry": true,
62328- "raw": "proj4@2.3.15",
62329- "name": "proj4",
62330- "escapedName": "proj4",
62331- "rawSpec": "2.3.15",
62332- "saveSpec": null,
62333- "fetchSpec": "2.3.15"
62334- },
62335- "_requiredBy": [
62336- "/"
62337- ],
62338- "_resolved": "https://registry.npmjs.org/proj4/-/proj4-2.3.15.tgz",
62339- "_shasum": "5ad06e8bca30be0ffa389a49e4565f51f06d089e",
62340- "_spec": "proj4@2.3.15",
62341- "_where": "G:\\github-iClient\\iClient9",
62342- "author": "",
62343- "bugs": {
62344- "url": "https://github.com/proj4js/proj4js/issues"
62345- },
62346- "bundleDependencies": false,
62347- "contributors": [
62348- {
62349- "name": "Mike Adair",
62350- "email": "madair@dmsolutions.ca"
62351- },
62352- {
62353- "name": "Richard Greenwood",
62354- "email": "rich@greenwoodmap.com"
62355- },
62356- {
62357- "name": "Calvin Metcalf",
62358- "email": "calvin.metcalf@gmail.com"
62359- },
62360- {
62361- "name": "Richard Marsden",
62362- "url": "http://www.winwaed.com"
62363- },
62364- {
62365- "name": "T. Mittan"
62366- },
62367- {
62368- "name": "D. Steinwand"
62369- },
62370- {
62371- "name": "S. Nelson"
62372- }
62373- ],
62374- "dependencies": {
62375- "mgrs": "~0.0.2"
62376- },
62377- "deprecated": false,
62378- "description": "Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.",
62379- "devDependencies": {
62380- "browserify": "~12.0.1",
62381- "chai": "~1.8.1",
62382- "curl": "git://github.com/cujojs/curl.git",
62383- "grunt": "~0.4.2",
62384- "grunt-browserify": "~4.0.1",
62385- "grunt-cli": "~0.1.13",
62386- "grunt-contrib-connect": "~0.6.0",
62387- "grunt-contrib-jshint": "~0.8.0",
62388- "grunt-contrib-uglify": "~0.11.1",
62389- "grunt-mocha-phantomjs": "~0.4.0",
62390- "istanbul": "~0.2.4",
62391- "mocha": "~1.17.1",
62392- "tin": "~0.4.0"
62393- },
62394- "directories": {
62395- "test": "test",
62396- "doc": "docs"
62397- },
62398- "homepage": "https://github.com/proj4js/proj4js#readme",
62399- "jam": {
62400- "main": "dist/proj4.js",
62401- "include": [
62402- "dist/proj4.js",
62403- "README.md",
62404- "AUTHORS",
62405- "LICENSE.md"
62406- ]
62407- },
62408- "license": "MIT",
62409- "main": "lib/index.js",
62410- "name": "proj4",
62411- "repository": {
62412- "type": "git",
62413- "url": "git://github.com/proj4js/proj4js.git"
62414- },
62415- "scripts": {
62416- "test": "./node_modules/istanbul/lib/cli.js test ./node_modules/mocha/bin/_mocha test/test.js"
62417- },
62418- "version": "2.3.15"
62419- };
62319+ module.exports = {"_from":"proj4@2.3.15","_id":"proj4@2.3.15","_inBundle":false,"_integrity":"sha1-WtBui8owvg/6OJpJ5FZfUfBtCJ4=","_location":"/proj4","_phantomChildren":{},"_requested":{"type":"version","registry":true,"raw":"proj4@2.3.15","name":"proj4","escapedName":"proj4","rawSpec":"2.3.15","saveSpec":null,"fetchSpec":"2.3.15"},"_requiredBy":["/"],"_resolved":"https://registry.npmjs.org/proj4/-/proj4-2.3.15.tgz","_shasum":"5ad06e8bca30be0ffa389a49e4565f51f06d089e","_spec":"proj4@2.3.15","_where":"E:\\codes\\iClient9","author":"","bugs":{"url":"https://github.com/proj4js/proj4js/issues"},"bundleDependencies":false,"contributors":[{"name":"Mike Adair","email":"madair@dmsolutions.ca"},{"name":"Richard Greenwood","email":"rich@greenwoodmap.com"},{"name":"Calvin Metcalf","email":"calvin.metcalf@gmail.com"},{"name":"Richard Marsden","url":"http://www.winwaed.com"},{"name":"T. Mittan"},{"name":"D. Steinwand"},{"name":"S. Nelson"}],"dependencies":{"mgrs":"~0.0.2"},"deprecated":false,"description":"Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.","devDependencies":{"browserify":"~12.0.1","chai":"~1.8.1","curl":"git://github.com/cujojs/curl.git","grunt":"~0.4.2","grunt-browserify":"~4.0.1","grunt-cli":"~0.1.13","grunt-contrib-connect":"~0.6.0","grunt-contrib-jshint":"~0.8.0","grunt-contrib-uglify":"~0.11.1","grunt-mocha-phantomjs":"~0.4.0","istanbul":"~0.2.4","mocha":"~1.17.1","tin":"~0.4.0"},"directories":{"test":"test","doc":"docs"},"homepage":"https://github.com/proj4js/proj4js#readme","jam":{"main":"dist/proj4.js","include":["dist/proj4.js","README.md","AUTHORS","LICENSE.md"]},"license":"MIT","main":"lib/index.js","name":"proj4","repository":{"type":"git","url":"git://github.com/proj4js/proj4js.git"},"scripts":{"test":"./node_modules/istanbul/lib/cli.js test ./node_modules/mocha/bin/_mocha test/test.js"},"version":"2.3.15"}
6242062320
6242162321/***/ }),
6242262322/* 383 */
0 commit comments