geojs 1.7.1 → 1.7.2
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.
- package/CHANGELOG.md +6 -0
- package/geo.js +4 -4
- package/geo.lean.js +4 -4
- package/geo.lean.min.js +1 -1
- package/geo.min.js +1 -1
- package/package.json +17 -15
- package/src/tileLayer.js +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "geojs",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "JavaScript Geo Visualization and Analysis Library",
|
|
5
5
|
"homepage": "https://github.com/OpenGeoscience/geojs",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"vtk.js": "*"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@babel/core": "^7.
|
|
33
|
+
"@babel/core": "^7.17.0",
|
|
34
34
|
"@babel/plugin-proposal-class-properties": "^7.16.5",
|
|
35
35
|
"@babel/preset-env": "^7.16.5",
|
|
36
36
|
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"bootswatch": "^3.4.1",
|
|
41
41
|
"codemirror": "^5.65.0",
|
|
42
42
|
"colorbrewer": "^1.5.1",
|
|
43
|
-
"css-loader": "^6.
|
|
43
|
+
"css-loader": "^6.6.0",
|
|
44
44
|
"docco": "^0.9.1",
|
|
45
45
|
"eslint": "^7.12.1",
|
|
46
46
|
"eslint-config-semistandard": "^16.0.0",
|
|
@@ -57,13 +57,13 @@
|
|
|
57
57
|
"jaguarjs-jsdoc": "^1.0.2",
|
|
58
58
|
"jasmine-core": "^4.0.0",
|
|
59
59
|
"js-yaml": "^4.1.0",
|
|
60
|
-
"jsdoc": "^3.6.
|
|
60
|
+
"jsdoc": "^3.6.10",
|
|
61
61
|
"jsdoc-autoprivate": "0.0.1",
|
|
62
62
|
"jsonlint-mod": "^1.7.6",
|
|
63
63
|
"jstransformer-markdown-it": "^2.0.0",
|
|
64
|
-
"karma": "^6.3.
|
|
64
|
+
"karma": "^6.3.15",
|
|
65
65
|
"karma-chrome-launcher": "^3.1.0",
|
|
66
|
-
"karma-coverage": "^2.1.
|
|
66
|
+
"karma-coverage": "^2.1.1",
|
|
67
67
|
"karma-firefox-launcher": "^2.1.2",
|
|
68
68
|
"karma-jasmine": "^4.0.1",
|
|
69
69
|
"karma-jasmine-html-reporter": "^1.7.0",
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
"karma-spec-reporter": "^0.0.33",
|
|
73
73
|
"karma-webpack": "^5.0.0",
|
|
74
74
|
"nib": "^1.1.2",
|
|
75
|
+
"npm-run-all": "^4.1.5",
|
|
75
76
|
"pako": "^2.0.4",
|
|
76
77
|
"pug": "^3.0.2",
|
|
77
78
|
"pug-lint": "^2.6.0",
|
|
@@ -124,7 +125,9 @@
|
|
|
124
125
|
]
|
|
125
126
|
},
|
|
126
127
|
"scripts": {
|
|
127
|
-
"build": "
|
|
128
|
+
"build": "npm-run-all -p build-full build-lean",
|
|
129
|
+
"build-full": "webpack --config webpack.config.js",
|
|
130
|
+
"build-lean": "webpack --config webpack-lean.config.js",
|
|
128
131
|
"build-examples": "node examples/build.js && webpack --config webpack-examples.config.js",
|
|
129
132
|
"build-website-examples": "node examples/build-website.js && webpack --config webpack-website-examples.config.js",
|
|
130
133
|
"build-tutorials": "node tutorials/build.js && webpack --config webpack-tutorials.config.js",
|
|
@@ -143,19 +146,18 @@
|
|
|
143
146
|
"test-tutorialsci-all": "GEOJS_TEST_CASE=tests/tutorials.js karma start karma-cov.conf.js --single-run --browsers ChromeHeadlessTouch,FirefoxHeadlessTouch",
|
|
144
147
|
"get-data-files": "node scripts/datastore.js dist/data",
|
|
145
148
|
"ci-clean": "git clean -fxd dist -e dist/data jsdoc/tmpl jsdoc/static images lcov",
|
|
146
|
-
"ci": "npm
|
|
147
|
-
"ci-build": "
|
|
148
|
-
"ci-
|
|
149
|
-
"ci-
|
|
150
|
-
"ci-xvfb": "npm run ci-clean && npm run ci-build && TEST_SAVE_IMAGE='all' xvfb-run -s '-ac -screen 0 1280x1024x24' npm run ci-test",
|
|
149
|
+
"ci": "npm-run-all ci-build ci-test",
|
|
150
|
+
"ci-build": "npm-run-all -c -p build-full build-lean docs get-data-files lint puglint glsllint build-examples build-tutorials",
|
|
151
|
+
"ci-test": "npm-run-all test-headless test-webglheadless test-headed test-tutorials",
|
|
152
|
+
"ci-xvfb": "npm-run-all ci-clean ci-build && TEST_SAVE_IMAGE='all' xvfb-run -s '-ac -screen 0 1280x1024x24' npm run ci-test",
|
|
151
153
|
"start": "karma start karma.conf.js",
|
|
152
|
-
"examples": "
|
|
154
|
+
"examples": "npm-run-all -p build-examples build-tutorials && node ./tests/runners/server.js --host \"${HOST-}\" --port ${PORT-8082} --dist",
|
|
153
155
|
"docs": "jsdoc --pedantic -d dist/apidocs -r src package.json -c jsdoc.conf.json",
|
|
154
156
|
"website": "cd website && npx hexo server",
|
|
155
157
|
"setup-website": "cd website && npm install",
|
|
156
|
-
"build-website": "npm
|
|
158
|
+
"build-website": "npm-run-all ci-build ci-build-website",
|
|
157
159
|
"ci-build-website": "cp -a dist/built/. website/source/built && bash -c '(npm run build-website-examples & npm run build-website-tutorials & wait -n && wait -n)' && cd dist && cp -ar data ../website/source/. && rm -rf ../website/source/data/tiles && rm -rf ../website/source/data/tiles.tgz && rm -rf ../website/source/data/base-images && rm -rf ../website/source/data/base-images.tgz && cp -ar apidocs/. ../website/source/apidocs && cd ../website && npm install && rm -f db.json && npx hexo generate",
|
|
158
|
-
"prepublishOnly": "
|
|
160
|
+
"prepublishOnly": "npm run build && cp dist/built/*.js .",
|
|
159
161
|
"semantic-release": "semantic-release"
|
|
160
162
|
},
|
|
161
163
|
"keywords": [
|
package/src/tileLayer.js
CHANGED
|
@@ -676,7 +676,10 @@ var tileLayer = function (arg) {
|
|
|
676
676
|
this._getTiles = function (maxLevel, bounds, sorted, onlyIfChanged) {
|
|
677
677
|
var i, j, tiles = [], index, nTilesLevel,
|
|
678
678
|
start, end, indexRange, source, center, changed = false, old, level,
|
|
679
|
-
minLevel = (
|
|
679
|
+
minLevel = (
|
|
680
|
+
m_this._options.keepLower ?
|
|
681
|
+
m_this._options.minLevel :
|
|
682
|
+
Math.min(Math.max(maxLevel, m_this._options.minLevel), m_this._options.maxLevel));
|
|
680
683
|
if (maxLevel < minLevel) {
|
|
681
684
|
maxLevel = minLevel;
|
|
682
685
|
}
|
|
@@ -1533,7 +1536,9 @@ var tileLayer = function (arg) {
|
|
|
1533
1536
|
* semi-transparent layers. */
|
|
1534
1537
|
if ((doneLoading || m_this._isCovered(tile)) &&
|
|
1535
1538
|
zoom !== tile.index.level &&
|
|
1536
|
-
(zoom >= m_this._options.minLevel || tile.index.level !== m_this._options.minLevel)
|
|
1539
|
+
(zoom >= m_this._options.minLevel || tile.index.level !== m_this._options.minLevel) &&
|
|
1540
|
+
(zoom < m_this._options.maxLevel || tile.index.level !== m_this._options.maxLevel)
|
|
1541
|
+
) {
|
|
1537
1542
|
return true;
|
|
1538
1543
|
}
|
|
1539
1544
|
}
|