Skip to content

Commit 4f13c32

Browse files
committed
出图支持可选表述类型。review by songyumeng.
1 parent d96c22a commit 4f13c32

23 files changed

+222
-85
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@
6969

7070
- `setLatlng` 接口更改为 `setLatLng`
7171

72+
- `L.supermap.imageMapLayer` 新增`options.format`参数,支持 "png" 、"bmp" 、"jpg" 和 "git" 四种表述类型,默认为 "png",表述类型
73+
74+
- `L.supermap.tiledMapLayer` 新增`options.format`参数,支持 "png" 、"bmp" 、"jpg" 和 "git" 四种表述类型,默认为 "png",表述类型
75+
7276

7377
### for OpenLayers
7478

@@ -124,6 +128,10 @@
124128
- options新增参数 `attributes`,支持设置要素属性
125129

126130
- 增加 `setAttributes``getAttributes`接口
131+
132+
- `ol.source.ImageSuperMapRest` 新增`options.format`参数,支持 "png" 、"bmp" 、"jpg" 和 "git" 四种表述类型,默认为 "png",表述类型
133+
134+
- `ol.source.TileSuperMapRest` 新增`options.format`参数,支持 "png" 、"bmp" 、"jpg" 和 "git" 四种表述类型,默认为 "png",表述类型
127135

128136
### for MapboxGL
129137

dist/iclient-classic.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4059,6 +4059,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
40594059
/**
40604060
* @class MapVRenderer
40614061
* @classdesc MapV渲染器。
4062+
* @private
40624063
* @extends mapv.MapVBaseLayer
40634064
* @param map - {SuperMap.Map} 待渲染的地图
40644065
* @param layer - {mapv.baiduMapLayer} 待渲染的图层
@@ -4097,7 +4098,6 @@ var MapVRenderer = exports.MapVRenderer = function (_MapVBaseLayer) {
40974098
/**
40984099
* @function MapvRenderer.prototype.clickEvent
40994100
* @description 点击事件
4100-
* @private
41014101
* @param e - {Object} 触发对象
41024102
*/
41034103

@@ -4112,7 +4112,6 @@ var MapVRenderer = exports.MapVRenderer = function (_MapVBaseLayer) {
41124112
/**
41134113
* @function MapvRenderer.prototype.mousemoveEvent
41144114
* @description 鼠标移动事件
4115-
*
41164115
* @param e - {Object} 触发对象
41174116
*/
41184117

@@ -10779,15 +10778,16 @@ process.umask = function () {
1077910778
"use strict";
1078010779
/* WEBPACK VAR INJECTION */(function(global) {
1078110780

10781+
var scope = typeof global !== "undefined" && global || typeof self !== "undefined" && self || window;
1078210782
var apply = Function.prototype.apply;
1078310783

1078410784
// DOM APIs, for completeness
1078510785

1078610786
exports.setTimeout = function () {
10787-
return new Timeout(apply.call(setTimeout, window, arguments), clearTimeout);
10787+
return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);
1078810788
};
1078910789
exports.setInterval = function () {
10790-
return new Timeout(apply.call(setInterval, window, arguments), clearInterval);
10790+
return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);
1079110791
};
1079210792
exports.clearTimeout = exports.clearInterval = function (timeout) {
1079310793
if (timeout) {
@@ -10801,7 +10801,7 @@ function Timeout(id, clearFn) {
1080110801
}
1080210802
Timeout.prototype.unref = Timeout.prototype.ref = function () {};
1080310803
Timeout.prototype.close = function () {
10804-
this._clearFn.call(window, this._id);
10804+
this._clearFn.call(scope, this._id);
1080510805
};
1080610806

1080710807
// Does not start the time, just sets up the members needed.
@@ -10828,7 +10828,7 @@ exports._unrefActive = exports.active = function (item) {
1082810828

1082910829
// setimmediate attaches itself to the global object
1083010830
__webpack_require__(48);
10831-
// On some exotic environments, it's not clear which object `setimmeidate` was
10831+
// On some exotic environments, it's not clear which object `setimmediate` was
1083210832
// able to install onto. Search each possibility in the same order as the
1083310833
// `setimmediate` library.
1083410834
exports.setImmediate = typeof self !== "undefined" && self.setImmediate || typeof global !== "undefined" && global.setImmediate || undefined && undefined.setImmediate;

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.css

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: 26 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -33181,7 +33181,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
3318133181
* @param url -{string} 影像图层地址
3318233182
* @param options -{Object} 影像图层参数。如:<br>
3318333183
* layersID - {number}图层ID,如果有layersID,则是在使用专题图。<br>
33184-
* redirect - {boolean} 是否从定向,如果为 true,则将请求重定向到图片的真实地址;如果为 false,则响应体中是图片的字节流。<br>
33184+
* redirect - {boolean} 是否从定向,如果为 true,则将请求重定向到瓦片的真实地址;如果为 false,则响应体中是瓦片的字节流。<br>
3318533185
* transparent - {boolean}是否背景透明。<br>
3318633186
* cacheEnabled - {boolean} 启用缓存。<br>
3318733187
* clipRegionEnabled - {boolean} 是否启用地图裁剪。<br>
@@ -33192,14 +33192,15 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
3319233192
* crs - {{@link L.Proj.CRS}} 坐标系统类。<br>
3319333193
* serverType - {{@link SuperMap.ServerType}} 服务来源 iServer|iPortal|online。<br>
3319433194
* attribution - {string} 版权信息。<br>
33195-
* tileProxy - {string} 启用托管地址
33195+
* tileProxy - {string} 启用托管地址。
33196+
* format - {string} 瓦片表述类型,支持 "png" 、"bmp" 、"jpg" 和 "git" 四种表述类型,默认为 "png"。
3319633197
*/
3319733198
var TiledMapLayer = exports.TiledMapLayer = _leaflet2["default"].TileLayer.extend({
3319833199

3319933200
options: {
3320033201
//如果有layersID,则是在使用专题图
3320133202
layersID: null,
33202-
//如果为 true,则将请求重定向到图片的真实地址;如果为 false,则响应体中是图片的字节流
33203+
//如果为 true,则将请求重定向到瓦片的真实地址;如果为 false,则响应体中是瓦片的字节流
3320333204
redirect: false,
3320433205
transparent: null,
3320533206
cacheEnabled: null,
@@ -33215,6 +33216,7 @@ var TiledMapLayer = exports.TiledMapLayer = _leaflet2["default"].TileLayer.exten
3321533216

3321633217
crs: null,
3321733218
serverType: _iclientCommon.ServerType.ISERVER,
33219+
format: 'png',
3321833220

3321933221
attribution: "Map Data <span>© <a href='http://support.supermap.com.cn/product/iServer.aspx' target='_blank'>SuperMap iServer</a></span> with <span>© <a href='http://iclient.supermap.io' target='_blank'>SuperMap iClient</a></span>"
3322033222
},
@@ -33425,7 +33427,7 @@ var TiledMapLayer = exports.TiledMapLayer = _leaflet2["default"].TileLayer.exten
3342533427

3342633428
_createLayerUrl: function _createLayerUrl() {
3342733429
var me = this;
33428-
var layerUrl = me._url + "/tileImage.png?";
33430+
var layerUrl = me._url + "/tileImage." + this.options.format + "?";
3342933431
layerUrl += encodeURI(me._getRequestParamString());
3343033432
layerUrl = this._appendCredential(layerUrl);
3343133433
this._layerUrl = layerUrl;
@@ -62675,7 +62677,7 @@ var HeatMapLayer = exports.HeatMapLayer = _leaflet2["default"].Layer.extend({
6267562677
/**
6267662678
* @function L.supermap.heatMapLayer.prototype.addFeatures
6267762679
* @description 添加热点信息。
62678-
* @param features - {geojson} 热点信息数组。
62680+
* @param features - {Object|HeatMapFeature}待添加的要素数组,支持 GeoJOSN 规范数据类型和 HeatMapFeature 格式
6267962681
*
6268062682
* @example
6268162683
* var geojson = {
@@ -63048,7 +63050,7 @@ var HeatMapLayer = exports.HeatMapLayer = _leaflet2["default"].Layer.extend({
6304863050
/**
6304963051
* @function L.supermap.heatMapLayer.prototype.toiClientFeature
6305063052
* @description 转为 iClient 要素
63051-
* @param features - {GeoJson|HeatMapFeature}待转要素,支持 geoJson 格式和 ThemeFeature 格式
63053+
* @param features - {Object|HeatMapFeature}待添加的要素数组,支持 GeoJOSN 规范数据类型和 HeatMapFeature 格式
6305263054
* @return {SuperMap.Feature.Vector} 转换后的iClient要素
6305363055
*/
6305463056
toiClientFeature: function toiClientFeature(features) {
@@ -67878,8 +67880,8 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
6787867880
* @param url -{string} 地图服务地址,如:http://localhost:8090/iserver/services/map-china400/rest/maps/China
6787967881
* @param options -{Object} 图层可选参数。如:<br>
6788067882
* layersID - {number} 如果有layersID,则是在使用专题图 <br>
67881-
* redirect - {boolean} 如果为 true,则将请求重定向到图片的真实地址;如果为 false,则响应体中是图片的字节流<br>
67882-
* transparent - {boolean} 地图图片是否透明<br>
67883+
* redirect - {boolean} 如果为 true,则将请求重定向到瓦片的真实地址;如果为 false,则响应体中是瓦片的字节流<br>
67884+
* transparent - {boolean} 地图瓦片是否透明<br>
6788367885
* cacheEnabled - {boolean} 是否使用服务器缓存出图<br>
6788467886
* clipRegionEnabled - {boolean} 地图显示裁剪的区域是否有效<br>
6788567887
* prjCoordSys - {Object} 请求的地图的坐标参考系统。 如:prjCoordSys={"epsgCode":3857}。<br>
@@ -67890,13 +67892,14 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
6789067892
* pane - {string} 图层所归属的map DOM的分组。默认为:"tilePane" <br>
6789167893
* interactive - {boolean} 是否响应鼠标点击或悬停交互事件。<br>
6789267894
* crossOrigin - {boolean} 是否设置跨域属性。<br>
67893-
* errorOverlayUrl - {boolean} 图层未能加载时代替显示的图片地址。<br>
67895+
* errorOverlayUrl - {boolean} 图层未能加载时代替显示的瓦片地址。<br>
6789467896
* zIndex - {number} 设置图层的层级。<br>
6789567897
* className - {string} 自定义dom元素的className。<br>
6789667898
* serverType - {{@link SuperMap.ServerType}} 服务来源 iServer|iPortal|online。<br>
6789767899
* attribution - {string} 版权信息。<br>
6789867900
* updateInterval - {number} 平移时图层延迟刷新间隔时间。<br>
67899-
* tileProxy - {string} 启用托管地址
67901+
* tileProxy - {string} 启用托管地址。
67902+
* format - {string} 瓦片表述类型,支持 "png" 、"bmp" 、"jpg" 和 "git" 四种表述类型,默认为 "png"。
6790067903
*/
6790167904

6790267905
var ImageMapLayer = exports.ImageMapLayer = _leaflet.Layer.extend({
@@ -67928,7 +67931,7 @@ var ImageMapLayer = exports.ImageMapLayer = _leaflet.Layer.extend({
6792867931
interactive: false,
6792967932
//是否设置跨域属性
6793067933
crossOrigin: false,
67931-
//图层未能加载时代替显示的图片地址
67934+
//图层未能加载时代替显示的瓦片地址
6793267935
errorOverlayUrl: false,
6793367936
//设置图层的显示层级
6793467937
zIndex: 1,
@@ -67939,7 +67942,9 @@ var ImageMapLayer = exports.ImageMapLayer = _leaflet.Layer.extend({
6793967942
//版权信息
6794067943
attribution: "Map Data <span>© <a href='http://support.supermap.com.cn/product/iServer.aspx' target='_blank'>SuperMap iServer</a></span> with <span>© <a href='http://iclient.supermap.io' target='_blank'>SuperMap iClient</a></span>",
6794167944
//平移时图层延迟刷新间隔时间。
67942-
updateInterval: 150
67945+
updateInterval: 150,
67946+
format: 'png'
67947+
6794367948
},
6794467949

6794567950
initialize: function initialize(url, options) {
@@ -68028,12 +68033,12 @@ var ImageMapLayer = exports.ImageMapLayer = _leaflet.Layer.extend({
6802868033
/**
6802968034
* @function L.supermap.imageMapLayer.prototype.getImageUrl
6803068035
* @description 获取image图层请求地址,子类可重写实现
68031-
* @return {string} 请求图片地址
68036+
* @return {string} 请求瓦片地址
6803268037
*/
6803368038
getImageUrl: function getImageUrl(params) {
6803468039
var imageUrl = _leaflet.Util.getParamString(params) + this._initLayerUrl();
6803568040
var serviceUrl = this._url;
68036-
imageUrl = serviceUrl + "/image.png" + imageUrl;
68041+
imageUrl = serviceUrl + "/image." + this.options.format + imageUrl;
6803768042
imageUrl = this._appendCredential(imageUrl);
6803868043
//支持代理
6803968044
if (this.options.tileProxy) {
@@ -68042,7 +68047,7 @@ var ImageMapLayer = exports.ImageMapLayer = _leaflet.Layer.extend({
6804268047
return imageUrl;
6804368048
},
6804468049

68045-
//获取请求图片宽高以及请求范围参数
68050+
//获取请求瓦片宽高以及请求范围参数
6804668051
_getImageParams: function _getImageParams() {
6804768052
var size = this._calculateImageSize();
6804868053
return {
@@ -71149,7 +71154,7 @@ module.exports = function (proj4) {
7114971154
/* 377 */
7115071155
/***/ (function(module) {
7115171156

71152-
module.exports = {"_args":[["proj4@2.3.15","E:\\git\\iClient9"]],"_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","_spec":"2.3.15","_where":"E:\\git\\iClient9","author":"","bugs":{"url":"https://github.com/proj4js/proj4js/issues"},"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"},"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"};
71157+
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"};
7115371158

7115471159
/***/ }),
7115571160
/* 378 */
@@ -95141,15 +95146,16 @@ process.umask = function () {
9514195146
"use strict";
9514295147
/* WEBPACK VAR INJECTION */(function(global) {
9514395148

95149+
var scope = typeof global !== "undefined" && global || typeof self !== "undefined" && self || window;
9514495150
var apply = Function.prototype.apply;
9514595151

9514695152
// DOM APIs, for completeness
9514795153

9514895154
exports.setTimeout = function () {
95149-
return new Timeout(apply.call(setTimeout, window, arguments), clearTimeout);
95155+
return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);
9515095156
};
9515195157
exports.setInterval = function () {
95152-
return new Timeout(apply.call(setInterval, window, arguments), clearInterval);
95158+
return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);
9515395159
};
9515495160
exports.clearTimeout = exports.clearInterval = function (timeout) {
9515595161
if (timeout) {
@@ -95163,7 +95169,7 @@ function Timeout(id, clearFn) {
9516395169
}
9516495170
Timeout.prototype.unref = Timeout.prototype.ref = function () {};
9516595171
Timeout.prototype.close = function () {
95166-
this._clearFn.call(window, this._id);
95172+
this._clearFn.call(scope, this._id);
9516795173
};
9516895174

9516995175
// Does not start the time, just sets up the members needed.
@@ -95190,7 +95196,7 @@ exports._unrefActive = exports.active = function (item) {
9519095196

9519195197
// setimmediate attaches itself to the global object
9519295198
__webpack_require__(504);
95193-
// On some exotic environments, it's not clear which object `setimmeidate` was
95199+
// On some exotic environments, it's not clear which object `setimmediate` was
9519495200
// able to install onto. Search each possibility in the same order as the
9519595201
// `setimmediate` library.
9519695202
exports.setImmediate = typeof self !== "undefined" && self.setImmediate || typeof global !== "undefined" && global.setImmediate || undefined && undefined.setImmediate;

dist/iclient9-leaflet.min.css

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.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 & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57034,7 +57034,7 @@ var HeatMapLayer = exports.HeatMapLayer = function (_mapboxgl$Evented) {
5703457034
/**
5703557035
* @function mapboxgl.supermap.HeatMapLayer.prototype.addFeatures
5703657036
* @description 添加热点信息。
57037-
* @param features - {geojson} 热点信息数组。
57037+
* @param features - {Object} 待添加的要素数组,支持 GeoJOSN 规范数据类型
5703857038
*
5703957039
* @example
5704057040
* var geojson = {
@@ -57324,7 +57324,7 @@ var HeatMapLayer = exports.HeatMapLayer = function (_mapboxgl$Evented) {
5732457324
/**
5732557325
* @function mapboxgl.supermap.HeatMapLayer.prototype.toiClientFeature
5732657326
* @description 转为 iClient 要素
57327-
* @param feature - {GeoJson} 待转的geojson要素
57327+
* @param feature - {Object} 待添加的要素数组,支持 GeoJOSN 规范数据类型
5732857328
*/
5732957329

5733057330
}, {
@@ -83586,15 +83586,16 @@ process.umask = function () {
8358683586
"use strict";
8358783587
/* WEBPACK VAR INJECTION */(function(global) {
8358883588

83589+
var scope = typeof global !== "undefined" && global || typeof self !== "undefined" && self || window;
8358983590
var apply = Function.prototype.apply;
8359083591

8359183592
// DOM APIs, for completeness
8359283593

8359383594
exports.setTimeout = function () {
83594-
return new Timeout(apply.call(setTimeout, window, arguments), clearTimeout);
83595+
return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);
8359583596
};
8359683597
exports.setInterval = function () {
83597-
return new Timeout(apply.call(setInterval, window, arguments), clearInterval);
83598+
return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);
8359883599
};
8359983600
exports.clearTimeout = exports.clearInterval = function (timeout) {
8360083601
if (timeout) {
@@ -83608,7 +83609,7 @@ function Timeout(id, clearFn) {
8360883609
}
8360983610
Timeout.prototype.unref = Timeout.prototype.ref = function () {};
8361083611
Timeout.prototype.close = function () {
83611-
this._clearFn.call(window, this._id);
83612+
this._clearFn.call(scope, this._id);
8361283613
};
8361383614

8361483615
// Does not start the time, just sets up the members needed.
@@ -83635,7 +83636,7 @@ exports._unrefActive = exports.active = function (item) {
8363583636

8363683637
// setimmediate attaches itself to the global object
8363783638
__webpack_require__(396);
83638-
// On some exotic environments, it's not clear which object `setimmeidate` was
83639+
// On some exotic environments, it's not clear which object `setimmediate` was
8363983640
// able to install onto. Search each possibility in the same order as the
8364083641
// `setimmediate` library.
8364183642
exports.setImmediate = typeof self !== "undefined" && self.setImmediate || typeof global !== "undefined" && global.setImmediate || undefined && undefined.setImmediate;

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.css

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