Skip to content

Commit 67aca03

Browse files
committed
优化例子的写法,支持离线包
1 parent 3abdf76 commit 67aca03

16 files changed

+1198
-990
lines changed

dist/iclient-classic.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3191,7 +3191,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
31913191
url: url,
31923192
data: params
31933193
};
3194-
return _SuperMap.SuperMap.Util.RequestJSONP.GET(config);
3194+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.GET(config);
31953195
}
31963196
if (!this.urlIsLong(url)) {
31973197
return this._fetch(url, params, options, type);
@@ -3211,7 +3211,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
32113211
url: url += "&_method=DELETE",
32123212
data: params
32133213
};
3214-
return _SuperMap.SuperMap.Util.RequestJSONP.DELETE(config);
3214+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.DELETE(config);
32153215
}
32163216
if (this.urlIsLong(url)) {
32173217
return this._postSimulatie(type, url.substring(0, url.indexOf('?') - 1), params, options);
@@ -3226,7 +3226,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
32263226
url: url += "&_method=POST",
32273227
data: params
32283228
};
3229-
return _SuperMap.SuperMap.Util.RequestJSONP.POST(config);
3229+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.POST(config);
32303230
}
32313231
return this._fetch(this._processUrl(url, options), params, options, 'POST');
32323232
},
@@ -3240,7 +3240,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
32403240
url: url += "&_method=PUT",
32413241
data: params
32423242
};
3243-
return _SuperMap.SuperMap.Util.RequestJSONP.DELETE(config);
3243+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.DELETE(config);
32443244
}
32453245
return this._fetch(url, params, options, 'PUT');
32463246
},
@@ -3372,7 +3372,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
33723372
return url.indexOf('.mvt') > -1 || url.indexOf('.pbf') > -1;
33733373
}
33743374
};
3375-
_SuperMap.SuperMap.Util.RequestJSONP = {
3375+
_SuperMap.SuperMap.Util.RequestJSONPPromise = {
33763376
limitLength: 1500,
33773377
queryKeys: [],
33783378
queryValues: [],
@@ -3401,7 +3401,7 @@ _SuperMap.SuperMap.Util.RequestJSONP = {
34013401
});
34023402

34033403
// me.addQueryStrings({
3404-
// callback: "SuperMap.Util.RequestJSONP.supermap_callbacks[" + uid + "]"
3404+
// callback: "SuperMap.Util.RequestJSONPPromise.supermap_callbacks[" + uid + "]"
34053405
// });
34063406
var sectionURL = url,
34073407
keysCount = 0; //此次sectionURL中有多少个key
@@ -3465,7 +3465,7 @@ _SuperMap.SuperMap.Util.RequestJSONP = {
34653465
splitQuestUrl = new Array();
34663466
}
34673467
splitQuestUrl.push(sectionURL);
3468-
me.send(splitQuestUrl, "SuperMap.Util.RequestJSONP.supermap_callbacks[" + uid + "]", config && config.proxy);
3468+
me.send(splitQuestUrl, "SuperMap.Util.RequestJSONPPromise.supermap_callbacks[" + uid + "]", config && config.proxy);
34693469
return p;
34703470
},
34713471

dist/iclient-classic.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/iclient9-leaflet.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7306,7 +7306,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
73067306
url: url,
73077307
data: params
73087308
};
7309-
return _SuperMap.SuperMap.Util.RequestJSONP.GET(config);
7309+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.GET(config);
73107310
}
73117311
if (!this.urlIsLong(url)) {
73127312
return this._fetch(url, params, options, type);
@@ -7326,7 +7326,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
73267326
url: url += "&_method=DELETE",
73277327
data: params
73287328
};
7329-
return _SuperMap.SuperMap.Util.RequestJSONP.DELETE(config);
7329+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.DELETE(config);
73307330
}
73317331
if (this.urlIsLong(url)) {
73327332
return this._postSimulatie(type, url.substring(0, url.indexOf('?') - 1), params, options);
@@ -7341,7 +7341,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
73417341
url: url += "&_method=POST",
73427342
data: params
73437343
};
7344-
return _SuperMap.SuperMap.Util.RequestJSONP.POST(config);
7344+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.POST(config);
73457345
}
73467346
return this._fetch(this._processUrl(url, options), params, options, 'POST');
73477347
},
@@ -7355,7 +7355,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
73557355
url: url += "&_method=PUT",
73567356
data: params
73577357
};
7358-
return _SuperMap.SuperMap.Util.RequestJSONP.DELETE(config);
7358+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.DELETE(config);
73597359
}
73607360
return this._fetch(url, params, options, 'PUT');
73617361
},
@@ -7487,7 +7487,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
74877487
return url.indexOf('.mvt') > -1 || url.indexOf('.pbf') > -1;
74887488
}
74897489
};
7490-
_SuperMap.SuperMap.Util.RequestJSONP = {
7490+
_SuperMap.SuperMap.Util.RequestJSONPPromise = {
74917491
limitLength: 1500,
74927492
queryKeys: [],
74937493
queryValues: [],
@@ -7516,7 +7516,7 @@ _SuperMap.SuperMap.Util.RequestJSONP = {
75167516
});
75177517

75187518
// me.addQueryStrings({
7519-
// callback: "SuperMap.Util.RequestJSONP.supermap_callbacks[" + uid + "]"
7519+
// callback: "SuperMap.Util.RequestJSONPPromise.supermap_callbacks[" + uid + "]"
75207520
// });
75217521
var sectionURL = url,
75227522
keysCount = 0; //此次sectionURL中有多少个key
@@ -7580,7 +7580,7 @@ _SuperMap.SuperMap.Util.RequestJSONP = {
75807580
splitQuestUrl = new Array();
75817581
}
75827582
splitQuestUrl.push(sectionURL);
7583-
me.send(splitQuestUrl, "SuperMap.Util.RequestJSONP.supermap_callbacks[" + uid + "]", config && config.proxy);
7583+
me.send(splitQuestUrl, "SuperMap.Util.RequestJSONPPromise.supermap_callbacks[" + uid + "]", config && config.proxy);
75847584
return p;
75857585
},
75867586

@@ -72458,7 +72458,7 @@ module.exports = function (proj4) {
7245872458
/* 384 */
7245972459
/***/ (function(module) {
7246072460

72461-
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":"http://registry.npm.taobao.org/proj4/download/proj4-2.3.15.tgz","_shasum":"5ad06e8bca30be0ffa389a49e4565f51f06d089e","_spec":"proj4@2.3.15","_where":"G:\\iClient\\iClient-JavaScript","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"};
72461+
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":"http://registry.npm.taobao.org/proj4/download/proj4-2.3.15.tgz","_shasum":"5ad06e8bca30be0ffa389a49e4565f51f06d089e","_spec":"proj4@2.3.15","_where":"E:\\2018\\git\\iClient-JavaScript","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"};
7246272462

7246372463
/***/ }),
7246472464
/* 385 */

dist/iclient9-leaflet.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/iclient9-mapboxgl.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7439,7 +7439,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
74397439
url: url,
74407440
data: params
74417441
};
7442-
return _SuperMap.SuperMap.Util.RequestJSONP.GET(config);
7442+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.GET(config);
74437443
}
74447444
if (!this.urlIsLong(url)) {
74457445
return this._fetch(url, params, options, type);
@@ -7459,7 +7459,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
74597459
url: url += "&_method=DELETE",
74607460
data: params
74617461
};
7462-
return _SuperMap.SuperMap.Util.RequestJSONP.DELETE(config);
7462+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.DELETE(config);
74637463
}
74647464
if (this.urlIsLong(url)) {
74657465
return this._postSimulatie(type, url.substring(0, url.indexOf('?') - 1), params, options);
@@ -7474,7 +7474,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
74747474
url: url += "&_method=POST",
74757475
data: params
74767476
};
7477-
return _SuperMap.SuperMap.Util.RequestJSONP.POST(config);
7477+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.POST(config);
74787478
}
74797479
return this._fetch(this._processUrl(url, options), params, options, 'POST');
74807480
},
@@ -7488,7 +7488,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
74887488
url: url += "&_method=PUT",
74897489
data: params
74907490
};
7491-
return _SuperMap.SuperMap.Util.RequestJSONP.DELETE(config);
7491+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.DELETE(config);
74927492
}
74937493
return this._fetch(url, params, options, 'PUT');
74947494
},
@@ -7620,7 +7620,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
76207620
return url.indexOf('.mvt') > -1 || url.indexOf('.pbf') > -1;
76217621
}
76227622
};
7623-
_SuperMap.SuperMap.Util.RequestJSONP = {
7623+
_SuperMap.SuperMap.Util.RequestJSONPPromise = {
76247624
limitLength: 1500,
76257625
queryKeys: [],
76267626
queryValues: [],
@@ -7649,7 +7649,7 @@ _SuperMap.SuperMap.Util.RequestJSONP = {
76497649
});
76507650

76517651
// me.addQueryStrings({
7652-
// callback: "SuperMap.Util.RequestJSONP.supermap_callbacks[" + uid + "]"
7652+
// callback: "SuperMap.Util.RequestJSONPPromise.supermap_callbacks[" + uid + "]"
76537653
// });
76547654
var sectionURL = url,
76557655
keysCount = 0; //此次sectionURL中有多少个key
@@ -7713,7 +7713,7 @@ _SuperMap.SuperMap.Util.RequestJSONP = {
77137713
splitQuestUrl = new Array();
77147714
}
77157715
splitQuestUrl.push(sectionURL);
7716-
me.send(splitQuestUrl, "SuperMap.Util.RequestJSONP.supermap_callbacks[" + uid + "]", config && config.proxy);
7716+
me.send(splitQuestUrl, "SuperMap.Util.RequestJSONPPromise.supermap_callbacks[" + uid + "]", config && config.proxy);
77177717
return p;
77187718
},
77197719

dist/iclient9-mapboxgl.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/iclient9-openlayers.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7593,7 +7593,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
75937593
url: url,
75947594
data: params
75957595
};
7596-
return _SuperMap.SuperMap.Util.RequestJSONP.GET(config);
7596+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.GET(config);
75977597
}
75987598
if (!this.urlIsLong(url)) {
75997599
return this._fetch(url, params, options, type);
@@ -7613,7 +7613,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
76137613
url: url += "&_method=DELETE",
76147614
data: params
76157615
};
7616-
return _SuperMap.SuperMap.Util.RequestJSONP.DELETE(config);
7616+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.DELETE(config);
76177617
}
76187618
if (this.urlIsLong(url)) {
76197619
return this._postSimulatie(type, url.substring(0, url.indexOf('?') - 1), params, options);
@@ -7628,7 +7628,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
76287628
url: url += "&_method=POST",
76297629
data: params
76307630
};
7631-
return _SuperMap.SuperMap.Util.RequestJSONP.POST(config);
7631+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.POST(config);
76327632
}
76337633
return this._fetch(this._processUrl(url, options), params, options, 'POST');
76347634
},
@@ -7642,7 +7642,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
76427642
url: url += "&_method=PUT",
76437643
data: params
76447644
};
7645-
return _SuperMap.SuperMap.Util.RequestJSONP.DELETE(config);
7645+
return _SuperMap.SuperMap.Util.RequestJSONPPromise.DELETE(config);
76467646
}
76477647
return this._fetch(url, params, options, 'PUT');
76487648
},
@@ -7774,7 +7774,7 @@ var FetchRequest = exports.FetchRequest = _SuperMap.SuperMap.FetchRequest = {
77747774
return url.indexOf('.mvt') > -1 || url.indexOf('.pbf') > -1;
77757775
}
77767776
};
7777-
_SuperMap.SuperMap.Util.RequestJSONP = {
7777+
_SuperMap.SuperMap.Util.RequestJSONPPromise = {
77787778
limitLength: 1500,
77797779
queryKeys: [],
77807780
queryValues: [],
@@ -7803,7 +7803,7 @@ _SuperMap.SuperMap.Util.RequestJSONP = {
78037803
});
78047804

78057805
// me.addQueryStrings({
7806-
// callback: "SuperMap.Util.RequestJSONP.supermap_callbacks[" + uid + "]"
7806+
// callback: "SuperMap.Util.RequestJSONPPromise.supermap_callbacks[" + uid + "]"
78077807
// });
78087808
var sectionURL = url,
78097809
keysCount = 0; //此次sectionURL中有多少个key
@@ -7867,7 +7867,7 @@ _SuperMap.SuperMap.Util.RequestJSONP = {
78677867
splitQuestUrl = new Array();
78687868
}
78697869
splitQuestUrl.push(sectionURL);
7870-
me.send(splitQuestUrl, "SuperMap.Util.RequestJSONP.supermap_callbacks[" + uid + "]", config && config.proxy);
7870+
me.send(splitQuestUrl, "SuperMap.Util.RequestJSONPPromise.supermap_callbacks[" + uid + "]", config && config.proxy);
78717871
return p;
78727872
},
78737873

@@ -67998,7 +67998,7 @@ module.exports = function (proj4) {
6799867998
/* 346 */
6799967999
/***/ (function(module) {
6800068000

68001-
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":"http://registry.npm.taobao.org/proj4/download/proj4-2.3.15.tgz","_shasum":"5ad06e8bca30be0ffa389a49e4565f51f06d089e","_spec":"proj4@2.3.15","_where":"G:\\iClient\\iClient-JavaScript","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"};
68001+
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":"http://registry.npm.taobao.org/proj4/download/proj4-2.3.15.tgz","_shasum":"5ad06e8bca30be0ffa389a49e4565f51f06d089e","_spec":"proj4@2.3.15","_where":"E:\\2018\\git\\iClient-JavaScript","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"};
6800268002

6800368003
/***/ }),
6800468004
/* 347 */

dist/iclient9-openlayers.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy