geojs 1.14.2 → 1.14.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,7 +22,8 @@ jobs:
22
22
  with:
23
23
  node-version: '20'
24
24
  - uses: browser-actions/setup-firefox@latest
25
- - run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
25
+ - run: sudo apt-get update
26
+ - run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev liblzma-dev
26
27
  - run: sudo apt-get remove --yes fonts-lato
27
28
  - run: fc-list
28
29
  - run: firefox --version
@@ -75,7 +76,8 @@ jobs:
75
76
  node-version: 'lts/*'
76
77
  - run: npm --version && node --version
77
78
  - uses: browser-actions/setup-firefox@latest
78
- - run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
79
+ - run: sudo apt-get update
80
+ - run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev liblzma-dev
79
81
  - run: sudo apt-get remove --yes fonts-lato
80
82
  - run: fc-list
81
83
  - run: firefox --version
@@ -111,7 +113,8 @@ jobs:
111
113
  - uses: actions/setup-node@v4
112
114
  with:
113
115
  node-version: 'lts/*'
114
- - run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
116
+ - run: sudo apt-get update
117
+ - run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev liblzma-dev
115
118
  - run: npm ci
116
119
  - name: Import artifacts
117
120
  uses: actions/download-artifact@v4
@@ -46,16 +46,16 @@ repos:
46
46
  files: README.rst
47
47
  name: rst-linter of README.rst
48
48
  - repo: https://github.com/codespell-project/codespell
49
- rev: v2.3.0
49
+ rev: v2.4.1
50
50
  hooks:
51
51
  - id: codespell
52
52
  args:
53
53
  - --ignore-words-list
54
54
  - "hist,indext,pixelx,thex,hight,reenable,lastr,xdescribe,afterall,countr,curvelinear"
55
55
  - --skip
56
- - examples/sld/index.pug,package-lock.json,examples/reprojection/proj.json,website/themes/agency/source/vendor/jquery/jquery.min.js,examples/reprojection/capitals.json
56
+ - examples/sld/index.pug,package-lock.json,examples/reprojection/proj.json,website/themes/agency/source/vendor/jquery/jquery.min.js,examples/reprojection/capitals.json,website/themes/agency/source/vendor/jquery/jquery.js
57
57
  - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
58
- rev: v9.18.0
58
+ rev: v9.22.0
59
59
  hooks:
60
60
  - id: commitlint
61
61
  language_version: "22.10.0"
package/geo.js CHANGED
@@ -20557,8 +20557,7 @@ var _mapInteractor = function mapInteractor(args) {
20557
20557
  action: geo_action.zoom,
20558
20558
  input: 'wheel',
20559
20559
  modifiers: {
20560
- shift: false,
20561
- ctrl: false
20560
+ shift: false
20562
20561
  },
20563
20562
  owner: 'geo.mapInteractor',
20564
20563
  name: 'wheel zoom'
@@ -20575,8 +20574,8 @@ var _mapInteractor = function mapInteractor(args) {
20575
20574
  action: geo_action.rotate,
20576
20575
  input: 'wheel',
20577
20576
  modifiers: {
20578
- shift: false,
20579
- ctrl: true
20577
+ shift: true,
20578
+ ctrl: false
20580
20579
  },
20581
20580
  owner: 'geo.mapInteractor',
20582
20581
  name: 'wheel rotate'
@@ -24154,7 +24153,7 @@ var _osmLayer = function osmLayer(arg) {
24154
24153
  queue: m_this._queue,
24155
24154
  overlap: m_this._options.tileOverlap,
24156
24155
  scale: m_this._options.tileScale,
24157
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains),
24156
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains),
24158
24157
  crossDomain: m_this._options.crossDomain
24159
24158
  });
24160
24159
  };
@@ -24868,7 +24867,7 @@ var _pixelmapLayer = function pixelmapLayer(arg) {
24868
24867
  queue: m_this._queue,
24869
24868
  overlap: m_this._options.tileOverlap,
24870
24869
  scale: m_this._options.tileScale,
24871
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains),
24870
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains),
24872
24871
  crossDomain: m_this._options.crossDomain
24873
24872
  });
24874
24873
  };
@@ -28169,7 +28168,7 @@ module.exports = _sceneObject;
28169
28168
  * @constant
28170
28169
  * @type {string}
28171
28170
  */
28172
- module.exports = "8e2a6bf94ba85a370a33f2144165d89dd6061439";
28171
+ module.exports = "76a88e5322f0f4c35b4c91f3d0d8f20cf2f10d70";
28173
28172
 
28174
28173
  /***/ }),
28175
28174
 
@@ -31329,7 +31328,7 @@ var _tileLayer = function tileLayer(arg) {
31329
31328
  y: m_this._options.tileHeight
31330
31329
  },
31331
31330
  queue: m_this._queue,
31332
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains)
31331
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains)
31333
31332
  });
31334
31333
  };
31335
31334
 
@@ -40056,7 +40055,7 @@ module.exports = _vectorFeature;
40056
40055
  * @constant
40057
40056
  * @type {string}
40058
40057
  */
40059
- module.exports = "1.14.2";
40058
+ module.exports = "1.14.4";
40060
40059
 
40061
40060
  /***/ }),
40062
40061
 
package/geo.lean.js CHANGED
@@ -17556,8 +17556,7 @@ var _mapInteractor = function mapInteractor(args) {
17556
17556
  action: geo_action.zoom,
17557
17557
  input: 'wheel',
17558
17558
  modifiers: {
17559
- shift: false,
17560
- ctrl: false
17559
+ shift: false
17561
17560
  },
17562
17561
  owner: 'geo.mapInteractor',
17563
17562
  name: 'wheel zoom'
@@ -17574,8 +17573,8 @@ var _mapInteractor = function mapInteractor(args) {
17574
17573
  action: geo_action.rotate,
17575
17574
  input: 'wheel',
17576
17575
  modifiers: {
17577
- shift: false,
17578
- ctrl: true
17576
+ shift: true,
17577
+ ctrl: false
17579
17578
  },
17580
17579
  owner: 'geo.mapInteractor',
17581
17580
  name: 'wheel rotate'
@@ -21153,7 +21152,7 @@ var _osmLayer = function osmLayer(arg) {
21153
21152
  queue: m_this._queue,
21154
21153
  overlap: m_this._options.tileOverlap,
21155
21154
  scale: m_this._options.tileScale,
21156
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains),
21155
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains),
21157
21156
  crossDomain: m_this._options.crossDomain
21158
21157
  });
21159
21158
  };
@@ -21867,7 +21866,7 @@ var _pixelmapLayer = function pixelmapLayer(arg) {
21867
21866
  queue: m_this._queue,
21868
21867
  overlap: m_this._options.tileOverlap,
21869
21868
  scale: m_this._options.tileScale,
21870
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains),
21869
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains),
21871
21870
  crossDomain: m_this._options.crossDomain
21872
21871
  });
21873
21872
  };
@@ -25168,7 +25167,7 @@ module.exports = _sceneObject;
25168
25167
  * @constant
25169
25168
  * @type {string}
25170
25169
  */
25171
- module.exports = "8e2a6bf94ba85a370a33f2144165d89dd6061439";
25170
+ module.exports = "76a88e5322f0f4c35b4c91f3d0d8f20cf2f10d70";
25172
25171
 
25173
25172
  /***/ }),
25174
25173
 
@@ -28328,7 +28327,7 @@ var _tileLayer = function tileLayer(arg) {
28328
28327
  y: m_this._options.tileHeight
28329
28328
  },
28330
28329
  queue: m_this._queue,
28331
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains)
28330
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains)
28332
28331
  });
28333
28332
  };
28334
28333
 
@@ -37055,7 +37054,7 @@ module.exports = _vectorFeature;
37055
37054
  * @constant
37056
37055
  * @type {string}
37057
37056
  */
37058
- module.exports = "1.14.2";
37057
+ module.exports = "1.14.4";
37059
37058
 
37060
37059
  /***/ }),
37061
37060