Skip to content

Commit 37419bd

Browse files
committed
v0.40.0
1 parent 2605937 commit 37419bd

14 files changed

+134
-19
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.40.0 (2024-11-29)
2+
### display
3+
* improved: refined depth clipping to enhance visual quality at high pitch angles
4+
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.
5+
* added: Line dashes now support dynamic StyleExpressions with intermediate zoom level support.
6+
* added: The dynamic coloring of the horizon is now possible with [LayerStyle.skyColor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#skycolor), including support for gradients for smooth transitions from sky to horizon
7+
* fixed: prevent the Compass UI from causing the map view to be reset in some cases with excessive applied rotation and tilt
8+
### editor
9+
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
10+
* added: introduce [getSelectedFeature](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#getselectedfeature) method to retrieve the currently selected feature.
11+
* added: Introduced batch editing to group multiple feature modifications into a single history entry. See [batch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#batch), [startBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#startBatch), [endBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#endBatch), [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Editor-Batch_Changes)
12+
* fixed: Highlighted crossings links are reset in all cases.
13+
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
14+
### core
15+
* improved: Enhanced [Provider.clear](https://heremaps.github.io/xyz-maps/docs/classes/core.featureprovider.html#clear) to support more flexible inputs, including bounding boxes and tiles.
16+
* added: locally cached tiles can now be queried using [TileProvider.getCachedTiles](https://heremaps.github.io/xyz-maps/docs/classes/core.tileprovider.html#getcachedtile)
17+
* fixed: resolve incorrect module initialization in non-browser environments like Node.js
18+
* fix: resolve potential rendering artifacts for huge polygons in MVT datasources
19+
### deps
20+
* build: bump ejs from 3.1.9 to 3.1.10
21+
* build: bump braces from 3.0.2 to 3.0.3
22+
* build: bump body-parser from 1.19.0 to 1.20.3
23+
124
## 0.40.0-dev.1 (2024-10-17)
225
### display
326
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.

lerna.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps",
3-
"version": "0.40.0-dev.1",
3+
"version": "0.40.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.",

packages/common/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.40.0 (2024-11-29)
2+
### display
3+
* improved: refined depth clipping to enhance visual quality at high pitch angles
4+
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.
5+
* added: Line dashes now support dynamic StyleExpressions with intermediate zoom level support.
6+
* added: The dynamic coloring of the horizon is now possible with [LayerStyle.skyColor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#skycolor), including support for gradients for smooth transitions from sky to horizon
7+
* fixed: prevent the Compass UI from causing the map view to be reset in some cases with excessive applied rotation and tilt
8+
### editor
9+
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
10+
* added: introduce [getSelectedFeature](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#getselectedfeature) method to retrieve the currently selected feature.
11+
* added: Introduced batch editing to group multiple feature modifications into a single history entry. See [batch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#batch), [startBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#startBatch), [endBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#endBatch), [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Editor-Batch_Changes)
12+
* fixed: Highlighted crossings links are reset in all cases.
13+
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
14+
### core
15+
* improved: Enhanced [Provider.clear](https://heremaps.github.io/xyz-maps/docs/classes/core.featureprovider.html#clear) to support more flexible inputs, including bounding boxes and tiles.
16+
* added: locally cached tiles can now be queried using [TileProvider.getCachedTiles](https://heremaps.github.io/xyz-maps/docs/classes/core.tileprovider.html#getcachedtile)
17+
* fixed: resolve incorrect module initialization in non-browser environments like Node.js
18+
* fix: resolve potential rendering artifacts for huge polygons in MVT datasources
19+
### deps
20+
* build: bump ejs from 3.1.9 to 3.1.10
21+
* build: bump braces from 3.0.2 to 3.0.3
22+
* build: bump body-parser from 1.19.0 to 1.20.3
23+
124
## 0.40.0-dev.1 (2024-10-17)
225
### display
326
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.

packages/common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-common",
3-
"version": "0.40.0-dev.1",
3+
"version": "0.40.0",
44
"description": "Commonly used libraries of XYZ Maps.",
55
"author": {
66
"name": "HERE Europe B.V.",

packages/core/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.40.0 (2024-11-29)
2+
### display
3+
* improved: refined depth clipping to enhance visual quality at high pitch angles
4+
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.
5+
* added: Line dashes now support dynamic StyleExpressions with intermediate zoom level support.
6+
* added: The dynamic coloring of the horizon is now possible with [LayerStyle.skyColor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#skycolor), including support for gradients for smooth transitions from sky to horizon
7+
* fixed: prevent the Compass UI from causing the map view to be reset in some cases with excessive applied rotation and tilt
8+
### editor
9+
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
10+
* added: introduce [getSelectedFeature](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#getselectedfeature) method to retrieve the currently selected feature.
11+
* added: Introduced batch editing to group multiple feature modifications into a single history entry. See [batch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#batch), [startBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#startBatch), [endBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#endBatch), [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Editor-Batch_Changes)
12+
* fixed: Highlighted crossings links are reset in all cases.
13+
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
14+
### core
15+
* improved: Enhanced [Provider.clear](https://heremaps.github.io/xyz-maps/docs/classes/core.featureprovider.html#clear) to support more flexible inputs, including bounding boxes and tiles.
16+
* added: locally cached tiles can now be queried using [TileProvider.getCachedTiles](https://heremaps.github.io/xyz-maps/docs/classes/core.tileprovider.html#getcachedtile)
17+
* fixed: resolve incorrect module initialization in non-browser environments like Node.js
18+
* fix: resolve potential rendering artifacts for huge polygons in MVT datasources
19+
### deps
20+
* build: bump ejs from 3.1.9 to 3.1.10
21+
* build: bump braces from 3.0.2 to 3.0.3
22+
* build: bump body-parser from 1.19.0 to 1.20.3
23+
124
## 0.40.0-dev.1 (2024-10-17)
225
### display
326
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-core",
3-
"version": "0.40.0-dev.1",
3+
"version": "0.40.0",
44
"description": "Core libs of XYZ Editor.",
55
"author": {
66
"name": "HERE Europe B.V.",
@@ -27,7 +27,7 @@
2727
},
2828
"publishConfig": {},
2929
"dependencies": {
30-
"@here/xyz-maps-common": "^0.40.0-dev.1"
30+
"@here/xyz-maps-common": "^0.40.0"
3131
},
3232
"devDependencies": {
3333
"@mapbox/vector-tile": "^1.3.1",

packages/display/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.40.0 (2024-11-29)
2+
### display
3+
* improved: refined depth clipping to enhance visual quality at high pitch angles
4+
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.
5+
* added: Line dashes now support dynamic StyleExpressions with intermediate zoom level support.
6+
* added: The dynamic coloring of the horizon is now possible with [LayerStyle.skyColor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#skycolor), including support for gradients for smooth transitions from sky to horizon
7+
* fixed: prevent the Compass UI from causing the map view to be reset in some cases with excessive applied rotation and tilt
8+
### editor
9+
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
10+
* added: introduce [getSelectedFeature](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#getselectedfeature) method to retrieve the currently selected feature.
11+
* added: Introduced batch editing to group multiple feature modifications into a single history entry. See [batch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#batch), [startBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#startBatch), [endBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#endBatch), [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Editor-Batch_Changes)
12+
* fixed: Highlighted crossings links are reset in all cases.
13+
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
14+
### core
15+
* improved: Enhanced [Provider.clear](https://heremaps.github.io/xyz-maps/docs/classes/core.featureprovider.html#clear) to support more flexible inputs, including bounding boxes and tiles.
16+
* added: locally cached tiles can now be queried using [TileProvider.getCachedTiles](https://heremaps.github.io/xyz-maps/docs/classes/core.tileprovider.html#getcachedtile)
17+
* fixed: resolve incorrect module initialization in non-browser environments like Node.js
18+
* fix: resolve potential rendering artifacts for huge polygons in MVT datasources
19+
### deps
20+
* build: bump ejs from 3.1.9 to 3.1.10
21+
* build: bump braces from 3.0.2 to 3.0.3
22+
* build: bump body-parser from 1.19.0 to 1.20.3
23+
124
## 0.40.0-dev.1 (2024-10-17)
225
### display
326
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.

packages/display/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-display",
3-
"version": "0.40.0-dev.1",
3+
"version": "0.40.0",
44
"description": "Map display of XYZ editor.",
55
"author": {
66
"name": "HERE Europe B.V.",
@@ -28,8 +28,8 @@
2828
},
2929
"publishConfig": {},
3030
"dependencies": {
31-
"@here/xyz-maps-common": "^0.40.0-dev.1",
32-
"@here/xyz-maps-core": "^0.40.0-dev.1"
31+
"@here/xyz-maps-common": "^0.40.0",
32+
"@here/xyz-maps-core": "^0.40.0"
3333
},
3434
"devDependencies": {
3535
"@rollup/plugin-commonjs": "^23.0.2",

packages/editor/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.40.0 (2024-11-29)
2+
### display
3+
* improved: refined depth clipping to enhance visual quality at high pitch angles
4+
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.
5+
* added: Line dashes now support dynamic StyleExpressions with intermediate zoom level support.
6+
* added: The dynamic coloring of the horizon is now possible with [LayerStyle.skyColor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#skycolor), including support for gradients for smooth transitions from sky to horizon
7+
* fixed: prevent the Compass UI from causing the map view to be reset in some cases with excessive applied rotation and tilt
8+
### editor
9+
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
10+
* added: introduce [getSelectedFeature](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#getselectedfeature) method to retrieve the currently selected feature.
11+
* added: Introduced batch editing to group multiple feature modifications into a single history entry. See [batch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#batch), [startBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#startBatch), [endBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#endBatch), [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Editor-Batch_Changes)
12+
* fixed: Highlighted crossings links are reset in all cases.
13+
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
14+
### core
15+
* improved: Enhanced [Provider.clear](https://heremaps.github.io/xyz-maps/docs/classes/core.featureprovider.html#clear) to support more flexible inputs, including bounding boxes and tiles.
16+
* added: locally cached tiles can now be queried using [TileProvider.getCachedTiles](https://heremaps.github.io/xyz-maps/docs/classes/core.tileprovider.html#getcachedtile)
17+
* fixed: resolve incorrect module initialization in non-browser environments like Node.js
18+
* fix: resolve potential rendering artifacts for huge polygons in MVT datasources
19+
### deps
20+
* build: bump ejs from 3.1.9 to 3.1.10
21+
* build: bump braces from 3.0.2 to 3.0.3
22+
* build: bump body-parser from 1.19.0 to 1.20.3
23+
124
## 0.40.0-dev.1 (2024-10-17)
225
### display
326
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.

packages/editor/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-editor",
3-
"version": "0.40.0-dev.1",
3+
"version": "0.40.0",
44
"description": "XYZ editor.",
55
"author": {
66
"name": "HERE Europe B.V.",
@@ -28,9 +28,9 @@
2828
"update-changelog": "npx build-changelog"
2929
},
3030
"dependencies": {
31-
"@here/xyz-maps-common": "^0.40.0-dev.1",
32-
"@here/xyz-maps-core": "^0.40.0-dev.1",
33-
"@here/xyz-maps-display": "^0.40.0-dev.1"
31+
"@here/xyz-maps-common": "^0.40.0",
32+
"@here/xyz-maps-core": "^0.40.0",
33+
"@here/xyz-maps-display": "^0.40.0"
3434
},
3535
"devDependencies": {
3636
"@rollup/plugin-typescript": "^8.3.4",

packages/playground/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-playground",
3-
"version": "0.40.0-dev.1",
3+
"version": "0.40.0",
44
"description": "Playground for XYZ editor.",
55
"author": {
66
"name": "HERE Europe B.V.",
@@ -19,10 +19,10 @@
1919
"dev": "rollup -c -w"
2020
},
2121
"dependencies": {
22-
"@here/xyz-maps-common": "^0.40.0-dev.1",
23-
"@here/xyz-maps-core": "^0.40.0-dev.1",
24-
"@here/xyz-maps-display": "^0.40.0-dev.1",
25-
"@here/xyz-maps-editor": "^0.40.0-dev.1",
22+
"@here/xyz-maps-common": "^0.40.0",
23+
"@here/xyz-maps-core": "^0.40.0",
24+
"@here/xyz-maps-display": "^0.40.0",
25+
"@here/xyz-maps-editor": "^0.40.0",
2626
"@monaco-editor/react": "^4.4.5",
2727
"monaco-editor": "^0.34.0",
2828
"react": "^18.2.0",

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.39.0",
3+
"version": "0.40.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.39.0",
3+
"version": "0.40.0",
44
"description": "Development utilities used to build XYZ Maps modules",
55
"author": {
66
"name": "HERE Europe B.V.",

0 commit comments

Comments
 (0)