Skip to content

Commit 0be787c

Browse files
committed
v0.41.0
Signed-off-by: Tim Deubler <tim.deubler@here.com>
1 parent a8e5316 commit 0be787c

14 files changed

+100
-25
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 0.41.0 (2025-2-21)
2+
### general
3+
* improved: Upgraded the minimum runtime JavaScript target for all packages to ES2017.
4+
### editor
5+
* added: overlay features now auto-toggle based on edit layers visibility.
6+
### display
7+
* improved: Enhanced balance between performance and view distance by optimizing grid size at very high pitch
8+
* improved: Horizontal text positioning accuracy enhanced, especially with [textAnchor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#textanchor) enabled
9+
* added: Icons/Images now support texture atlases up to 4096 pixels in size.
10+
* added: collision detection now handles mixed tile sizes more effectively and supports tile sizes of 1024 and larger.
11+
* added: Introduced [singleWorldView](https://heremaps.github.io/xyz-maps/docs/interfaces/display.mapoptions.html#singleworldview) option to control map view repetition on the horizontal and vertical axes, allowing control over one or both axes, or enabling infinite repetition. [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Display-World_Repetition_Modes)
12+
* added: add adaptive tile loading to dynamically select larger tiles from higher zoom levels for distant areas, improving performance, rendering efficiency, and viewing distance for high pitch map views.
13+
* fixed: prevent temporary incorrect scaling of 3D Models during tile preview
14+
* fixed: address brief flashing issue in styles rendering requiring two alpha passes
15+
116
## 0.40.2 (2024-12-10)
217
### display
318
* fixed: prevent potential brief preview tile flickering for clipped data sources

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"npmClient": "yarn",
3-
"version": "0.40.2"
3+
"version": "0.41.0"
44
}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps",
3-
"version": "0.40.2",
3+
"version": "0.41.0",
44
"description": "XYZ Editor is an experimental and work in progress open-source map editor written in TypeScript/JavaScript",
55
"author": {
66
"name": "HERE Europe B.V.",
@@ -62,4 +62,4 @@
6262
"lint-staged": {
6363
"*.{js,ts}": "eslint --cache --fix"
6464
}
65-
}
65+
}

packages/common/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 0.41.0 (2025-2-21)
2+
### general
3+
* improved: Upgraded the minimum runtime JavaScript target for all packages to ES2017.
4+
### editor
5+
* added: overlay features now auto-toggle based on edit layers visibility.
6+
### display
7+
* improved: Enhanced balance between performance and view distance by optimizing grid size at very high pitch
8+
* improved: Horizontal text positioning accuracy enhanced, especially with [textAnchor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#textanchor) enabled
9+
* added: Icons/Images now support texture atlases up to 4096 pixels in size.
10+
* added: collision detection now handles mixed tile sizes more effectively and supports tile sizes of 1024 and larger.
11+
* added: Introduced [singleWorldView](https://heremaps.github.io/xyz-maps/docs/interfaces/display.mapoptions.html#singleworldview) option to control map view repetition on the horizontal and vertical axes, allowing control over one or both axes, or enabling infinite repetition. [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Display-World_Repetition_Modes)
12+
* added: add adaptive tile loading to dynamically select larger tiles from higher zoom levels for distant areas, improving performance, rendering efficiency, and viewing distance for high pitch map views.
13+
* fixed: prevent temporary incorrect scaling of 3D Models during tile preview
14+
* fixed: address brief flashing issue in styles rendering requiring two alpha passes
15+
116
## 0.40.2 (2024-12-10)
217
### display
318
* fixed: prevent potential brief preview tile flickering for clipped data sources

packages/common/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-common",
3-
"version": "0.40.2",
3+
"version": "0.41.0",
44
"description": "Commonly used libraries of XYZ Maps.",
55
"author": {
66
"name": "HERE Europe B.V.",
@@ -29,9 +29,9 @@
2929
"browser": {},
3030
"publishConfig": {},
3131
"devDependencies": {
32+
"@rollup/plugin-terser": "^0.4.4",
3233
"@rollup/plugin-typescript": "^12.1.2",
3334
"rollup": "^3.29.5",
34-
"@rollup/plugin-terser": "^0.4.4",
3535
"tslib": "^2.4.0",
3636
"typescript": "^4.7.4"
3737
},

packages/core/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 0.41.0 (2025-2-21)
2+
### general
3+
* improved: Upgraded the minimum runtime JavaScript target for all packages to ES2017.
4+
### editor
5+
* added: overlay features now auto-toggle based on edit layers visibility.
6+
### display
7+
* improved: Enhanced balance between performance and view distance by optimizing grid size at very high pitch
8+
* improved: Horizontal text positioning accuracy enhanced, especially with [textAnchor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#textanchor) enabled
9+
* added: Icons/Images now support texture atlases up to 4096 pixels in size.
10+
* added: collision detection now handles mixed tile sizes more effectively and supports tile sizes of 1024 and larger.
11+
* added: Introduced [singleWorldView](https://heremaps.github.io/xyz-maps/docs/interfaces/display.mapoptions.html#singleworldview) option to control map view repetition on the horizontal and vertical axes, allowing control over one or both axes, or enabling infinite repetition. [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Display-World_Repetition_Modes)
12+
* added: add adaptive tile loading to dynamically select larger tiles from higher zoom levels for distant areas, improving performance, rendering efficiency, and viewing distance for high pitch map views.
13+
* fixed: prevent temporary incorrect scaling of 3D Models during tile preview
14+
* fixed: address brief flashing issue in styles rendering requiring two alpha passes
15+
116
## 0.40.2 (2024-12-10)
217
### display
318
* fixed: prevent potential brief preview tile flickering for clipped data sources

packages/core/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-core",
3-
"version": "0.40.2",
3+
"version": "0.41.0",
44
"description": "Core libs of XYZ Editor.",
55
"author": {
66
"name": "HERE Europe B.V.",
@@ -27,12 +27,13 @@
2727
},
2828
"publishConfig": {},
2929
"dependencies": {
30-
"@here/xyz-maps-common": "^0.40.2"
30+
"@here/xyz-maps-common": "^0.41.0"
3131
},
3232
"devDependencies": {
3333
"@mapbox/vector-tile": "^1.3.1",
3434
"@rollup/plugin-commonjs": "^22.0.2",
3535
"@rollup/plugin-node-resolve": "^16.0.0",
36+
"@rollup/plugin-terser": "^0.4.4",
3637
"@rollup/plugin-typescript": "^12.1.2",
3738
"@rollup/plugin-virtual": "^2.1.0",
3839
"@types/node": "^18.7.11",
@@ -41,7 +42,6 @@
4142
"rbush": "^3.0.1",
4243
"rollup": "^3.29.5",
4344
"rollup-plugin-sourcemaps": "^0.6.3",
44-
"@rollup/plugin-terser": "^0.4.4",
4545
"tslib": "^2.4.0",
4646
"typescript": "^4.7.4"
4747
},

packages/display/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 0.41.0 (2025-2-21)
2+
### general
3+
* improved: Upgraded the minimum runtime JavaScript target for all packages to ES2017.
4+
### editor
5+
* added: overlay features now auto-toggle based on edit layers visibility.
6+
### display
7+
* improved: Enhanced balance between performance and view distance by optimizing grid size at very high pitch
8+
* improved: Horizontal text positioning accuracy enhanced, especially with [textAnchor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#textanchor) enabled
9+
* added: Icons/Images now support texture atlases up to 4096 pixels in size.
10+
* added: collision detection now handles mixed tile sizes more effectively and supports tile sizes of 1024 and larger.
11+
* added: Introduced [singleWorldView](https://heremaps.github.io/xyz-maps/docs/interfaces/display.mapoptions.html#singleworldview) option to control map view repetition on the horizontal and vertical axes, allowing control over one or both axes, or enabling infinite repetition. [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Display-World_Repetition_Modes)
12+
* added: add adaptive tile loading to dynamically select larger tiles from higher zoom levels for distant areas, improving performance, rendering efficiency, and viewing distance for high pitch map views.
13+
* fixed: prevent temporary incorrect scaling of 3D Models during tile preview
14+
* fixed: address brief flashing issue in styles rendering requiring two alpha passes
15+
116
## 0.40.2 (2024-12-10)
217
### display
318
* fixed: prevent potential brief preview tile flickering for clipped data sources

packages/display/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-display",
3-
"version": "0.40.2",
3+
"version": "0.41.0",
44
"description": "Map display of XYZ editor.",
55
"author": {
66
"name": "HERE Europe B.V.",
@@ -28,19 +28,19 @@
2828
},
2929
"publishConfig": {},
3030
"dependencies": {
31-
"@here/xyz-maps-common": "^0.40.2",
32-
"@here/xyz-maps-core": "^0.40.2"
31+
"@here/xyz-maps-common": "^0.41.0",
32+
"@here/xyz-maps-core": "^0.41.0"
3333
},
3434
"devDependencies": {
3535
"@rollup/plugin-commonjs": "^23.0.2",
3636
"@rollup/plugin-node-resolve": "^16.0.0",
37+
"@rollup/plugin-terser": "^0.4.4",
3738
"@rollup/plugin-typescript": "^12.1.2",
3839
"@rollup/plugin-virtual": "^2.1.0",
3940
"earcut": "^2.2.4",
4041
"gl-matrix": "^3.4.3",
4142
"rollup": "^3.29.5",
4243
"rollup-plugin-glslify": "^1.3.1",
43-
"@rollup/plugin-terser": "^0.4.4",
4444
"tslib": "^2.4.1",
4545
"typescript": "^4.7.4"
4646
},

packages/editor/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 0.41.0 (2025-2-21)
2+
### general
3+
* improved: Upgraded the minimum runtime JavaScript target for all packages to ES2017.
4+
### editor
5+
* added: overlay features now auto-toggle based on edit layers visibility.
6+
### display
7+
* improved: Enhanced balance between performance and view distance by optimizing grid size at very high pitch
8+
* improved: Horizontal text positioning accuracy enhanced, especially with [textAnchor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#textanchor) enabled
9+
* added: Icons/Images now support texture atlases up to 4096 pixels in size.
10+
* added: collision detection now handles mixed tile sizes more effectively and supports tile sizes of 1024 and larger.
11+
* added: Introduced [singleWorldView](https://heremaps.github.io/xyz-maps/docs/interfaces/display.mapoptions.html#singleworldview) option to control map view repetition on the horizontal and vertical axes, allowing control over one or both axes, or enabling infinite repetition. [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Display-World_Repetition_Modes)
12+
* added: add adaptive tile loading to dynamically select larger tiles from higher zoom levels for distant areas, improving performance, rendering efficiency, and viewing distance for high pitch map views.
13+
* fixed: prevent temporary incorrect scaling of 3D Models during tile preview
14+
* fixed: address brief flashing issue in styles rendering requiring two alpha passes
15+
116
## 0.40.2 (2024-12-10)
217
### display
318
* fixed: prevent potential brief preview tile flickering for clipped data sources

packages/editor/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-editor",
3-
"version": "0.40.2",
3+
"version": "0.41.0",
44
"description": "XYZ editor.",
55
"author": {
66
"name": "HERE Europe B.V.",
@@ -28,15 +28,15 @@
2828
"update-changelog": "npx build-changelog"
2929
},
3030
"dependencies": {
31-
"@here/xyz-maps-common": "^0.40.2",
32-
"@here/xyz-maps-core": "^0.40.2",
33-
"@here/xyz-maps-display": "^0.40.2"
31+
"@here/xyz-maps-common": "^0.41.0",
32+
"@here/xyz-maps-core": "^0.41.0",
33+
"@here/xyz-maps-display": "^0.41.0"
3434
},
3535
"devDependencies": {
36+
"@rollup/plugin-terser": "^0.4.4",
3637
"@rollup/plugin-typescript": "^12.1.2",
3738
"rollup": "^3.29.5",
3839
"rollup-plugin-img": "^1.1.0",
39-
"@rollup/plugin-terser": "^0.4.4",
4040
"tslib": "^2.4.0",
4141
"typescript": "^4.7.4"
4242
},

packages/playground/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-playground",
3-
"version": "0.40.2",
3+
"version": "0.41.0",
44
"description": "Playground for XYZ editor.",
55
"author": {
66
"name": "HERE Europe B.V.",
@@ -19,10 +19,10 @@
1919
"dev": "rollup -c -w --bundleConfigAsCjs"
2020
},
2121
"dependencies": {
22-
"@here/xyz-maps-common": "^0.40.2",
23-
"@here/xyz-maps-core": "^0.40.2",
24-
"@here/xyz-maps-display": "^0.40.2",
25-
"@here/xyz-maps-editor": "^0.40.2",
22+
"@here/xyz-maps-common": "^0.41.0",
23+
"@here/xyz-maps-core": "^0.41.0",
24+
"@here/xyz-maps-display": "^0.41.0",
25+
"@here/xyz-maps-editor": "^0.41.0",
2626
"@monaco-editor/react": "^4.4.5",
2727
"monaco-editor": "^0.34.0",
2828
"react": "^18.2.0",
@@ -34,13 +34,13 @@
3434
"@rollup/plugin-json": "^4.1.0",
3535
"@rollup/plugin-node-resolve": "^16.0.0",
3636
"@rollup/plugin-replace": "^4.0.0",
37+
"@rollup/plugin-terser": "^0.4.4",
3738
"@rollup/plugin-typescript": "^12.1.2",
3839
"@rollup/plugin-virtual": "^2.1.0",
3940
"postcss": "^8.4.16",
4041
"rollup": "^3.29.5",
4142
"rollup-plugin-copy": "^3.4.0",
4243
"rollup-plugin-postcss": "^4.0.2",
43-
"@rollup/plugin-terser": "^0.4.4",
4444
"sass": "^1.54.5",
4545
"tslib": "^2.4.0",
4646
"typescript": "^4.7.4"

packages/tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-test",
3-
"version": "0.40.2",
3+
"version": "0.41.0",
44
"description": "Tests for XYZ editor.",
55
"author": {
66
"name": "HERE Europe B.V.",

packages/utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-utils",
3-
"version": "0.40.1",
3+
"version": "0.41.0",
44
"description": "Development utilities used to build XYZ Maps modules",
55
"author": {
66
"name": "HERE Europe B.V.",

0 commit comments

Comments
 (0)