diff --git a/CHANGELOG.md b/CHANGELOG.md index e77285c9c..a237f7062 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.35.0 (2023-8-22) +### display +* improved: The display of preview tiles has been optimized. +* improved: Tiles that are not part of the actual viewport but whose data is still visible due to the high altitude are now processed and displayed. +* added: A new [HeatmapStyle](https://heremaps.github.io/xyz-maps/docs/interfaces/core.heatmapstyle.html) has been introduced, which makes it possible to visualize density maps where the data density is displayed in different colors. [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Layers%20/%20Providers-Heatmap) +* added: Point styles can now also be applied separately to line ranges with the anchor set to "Line". +* fixed: Tile previews of transparent point styles may flicker for a very brief moment +* fixed: Fixes an issue where tiles are only partially visible when the map is tilted at a steep angle. +* fixed: The Compass UI now works properly even when the map is heavily pitched. +* fixed: In rare cases, points may be offset if they lie exactly on a tile boundary. +* fixed: Region-based point styles with an explicitly defined altitude are not displayed if there is no altitude in the source geometry. +### editor +* added: It is now possible to select multiple LineShapes/NavlinkShapes and drag them simultaneously to change position. See: [shape.select()](https://heremaps.github.io/xyz-maps/docs/classes/editor.lineshape.html#select), [Playground](https://heremaps.github.io/xyz-maps/playground/#Editor-Drag_multiple_Shapes) + ## 0.34.0 (2023-6-21) ### editor * improved: The RangeSelector utility now treats RangeMarkers that are exactly on top of each other as a valid zero-length range. diff --git a/lerna.json b/lerna.json index a18de4bdf..c8158d02e 100644 --- a/lerna.json +++ b/lerna.json @@ -1,4 +1,4 @@ { "npmClient": "yarn", - "version": "0.34.0" + "version": "0.35.0" } diff --git a/package.json b/package.json index 27e8ee3ce..5df4738c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@here/xyz-maps", - "version": "0.34.0", + "version": "0.35.0", "description": "XYZ Editor is an experimental and work in progress open-source map editor written in TypeScript/JavaScript", "author": { "name": "HERE Europe B.V.", @@ -61,4 +61,4 @@ "lint-staged": { "*.{js,ts}": "eslint --cache --fix" } -} +} \ No newline at end of file diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index e77285c9c..a237f7062 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.35.0 (2023-8-22) +### display +* improved: The display of preview tiles has been optimized. +* improved: Tiles that are not part of the actual viewport but whose data is still visible due to the high altitude are now processed and displayed. +* added: A new [HeatmapStyle](https://heremaps.github.io/xyz-maps/docs/interfaces/core.heatmapstyle.html) has been introduced, which makes it possible to visualize density maps where the data density is displayed in different colors. [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Layers%20/%20Providers-Heatmap) +* added: Point styles can now also be applied separately to line ranges with the anchor set to "Line". +* fixed: Tile previews of transparent point styles may flicker for a very brief moment +* fixed: Fixes an issue where tiles are only partially visible when the map is tilted at a steep angle. +* fixed: The Compass UI now works properly even when the map is heavily pitched. +* fixed: In rare cases, points may be offset if they lie exactly on a tile boundary. +* fixed: Region-based point styles with an explicitly defined altitude are not displayed if there is no altitude in the source geometry. +### editor +* added: It is now possible to select multiple LineShapes/NavlinkShapes and drag them simultaneously to change position. See: [shape.select()](https://heremaps.github.io/xyz-maps/docs/classes/editor.lineshape.html#select), [Playground](https://heremaps.github.io/xyz-maps/playground/#Editor-Drag_multiple_Shapes) + ## 0.34.0 (2023-6-21) ### editor * improved: The RangeSelector utility now treats RangeMarkers that are exactly on top of each other as a valid zero-length range. diff --git a/packages/common/package.json b/packages/common/package.json index 198d5fde9..257a29d6f 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@here/xyz-maps-common", - "version": "0.34.0", + "version": "0.35.0", "description": "Commonly used libraries of XYZ Maps.", "author": { "name": "HERE Europe B.V.", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index e77285c9c..a237f7062 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.35.0 (2023-8-22) +### display +* improved: The display of preview tiles has been optimized. +* improved: Tiles that are not part of the actual viewport but whose data is still visible due to the high altitude are now processed and displayed. +* added: A new [HeatmapStyle](https://heremaps.github.io/xyz-maps/docs/interfaces/core.heatmapstyle.html) has been introduced, which makes it possible to visualize density maps where the data density is displayed in different colors. [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Layers%20/%20Providers-Heatmap) +* added: Point styles can now also be applied separately to line ranges with the anchor set to "Line". +* fixed: Tile previews of transparent point styles may flicker for a very brief moment +* fixed: Fixes an issue where tiles are only partially visible when the map is tilted at a steep angle. +* fixed: The Compass UI now works properly even when the map is heavily pitched. +* fixed: In rare cases, points may be offset if they lie exactly on a tile boundary. +* fixed: Region-based point styles with an explicitly defined altitude are not displayed if there is no altitude in the source geometry. +### editor +* added: It is now possible to select multiple LineShapes/NavlinkShapes and drag them simultaneously to change position. See: [shape.select()](https://heremaps.github.io/xyz-maps/docs/classes/editor.lineshape.html#select), [Playground](https://heremaps.github.io/xyz-maps/playground/#Editor-Drag_multiple_Shapes) + ## 0.34.0 (2023-6-21) ### editor * improved: The RangeSelector utility now treats RangeMarkers that are exactly on top of each other as a valid zero-length range. diff --git a/packages/core/package.json b/packages/core/package.json index c58793f99..abd102e47 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@here/xyz-maps-core", - "version": "0.34.0", + "version": "0.35.0", "description": "Core libs of XYZ Editor.", "author": { "name": "HERE Europe B.V.", @@ -27,7 +27,7 @@ }, "publishConfig": {}, "dependencies": { - "@here/xyz-maps-common": "^0.34.0" + "@here/xyz-maps-common": "^0.35.0" }, "devDependencies": { "@mapbox/vector-tile": "^1.3.1", diff --git a/packages/display/CHANGELOG.md b/packages/display/CHANGELOG.md index 683c14655..141ef72bf 100644 --- a/packages/display/CHANGELOG.md +++ b/packages/display/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.35.0 (2023-8-22) +### display +* improved: The display of preview tiles has been optimized. +* improved: Tiles that are not part of the actual viewport but whose data is still visible due to the high altitude are now processed and displayed. +* added: A new [HeatmapStyle](https://heremaps.github.io/xyz-maps/docs/interfaces/core.heatmapstyle.html) has been introduced, which makes it possible to visualize density maps where the data density is displayed in different colors. [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Layers%20/%20Providers-Heatmap) +* added: Point styles can now also be applied separately to line ranges with the anchor set to "Line". +* fixed: Tile previews of transparent point styles may flicker for a very brief moment +* fixed: Fixes an issue where tiles are only partially visible when the map is tilted at a steep angle. +* fixed: The Compass UI now works properly even when the map is heavily pitched. +* fixed: In rare cases, points may be offset if they lie exactly on a tile boundary. +* fixed: Region-based point styles with an explicitly defined altitude are not displayed if there is no altitude in the source geometry. +### editor +* added: It is now possible to select multiple LineShapes/NavlinkShapes and drag them simultaneously to change position. See: [shape.select()](https://heremaps.github.io/xyz-maps/docs/classes/editor.lineshape.html#select), [Playground](https://heremaps.github.io/xyz-maps/playground/#Editor-Drag_multiple_Shapes) + ## 0.34.0 (2023-6-21) ### editor * improved: The RangeSelector utility now treats RangeMarkers that are exactly on top of each other as a valid zero-length range. diff --git a/packages/display/package.json b/packages/display/package.json index 19845393a..f24a603a7 100644 --- a/packages/display/package.json +++ b/packages/display/package.json @@ -1,6 +1,6 @@ { "name": "@here/xyz-maps-display", - "version": "0.34.0", + "version": "0.35.0", "description": "Map display of XYZ editor.", "author": { "name": "HERE Europe B.V.", @@ -28,8 +28,8 @@ }, "publishConfig": {}, "dependencies": { - "@here/xyz-maps-common": "^0.34.0", - "@here/xyz-maps-core": "^0.34.0" + "@here/xyz-maps-common": "^0.35.0", + "@here/xyz-maps-core": "^0.35.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^23.0.2", diff --git a/packages/editor/CHANGELOG.md b/packages/editor/CHANGELOG.md index e77285c9c..a237f7062 100644 --- a/packages/editor/CHANGELOG.md +++ b/packages/editor/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.35.0 (2023-8-22) +### display +* improved: The display of preview tiles has been optimized. +* improved: Tiles that are not part of the actual viewport but whose data is still visible due to the high altitude are now processed and displayed. +* added: A new [HeatmapStyle](https://heremaps.github.io/xyz-maps/docs/interfaces/core.heatmapstyle.html) has been introduced, which makes it possible to visualize density maps where the data density is displayed in different colors. [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Layers%20/%20Providers-Heatmap) +* added: Point styles can now also be applied separately to line ranges with the anchor set to "Line". +* fixed: Tile previews of transparent point styles may flicker for a very brief moment +* fixed: Fixes an issue where tiles are only partially visible when the map is tilted at a steep angle. +* fixed: The Compass UI now works properly even when the map is heavily pitched. +* fixed: In rare cases, points may be offset if they lie exactly on a tile boundary. +* fixed: Region-based point styles with an explicitly defined altitude are not displayed if there is no altitude in the source geometry. +### editor +* added: It is now possible to select multiple LineShapes/NavlinkShapes and drag them simultaneously to change position. See: [shape.select()](https://heremaps.github.io/xyz-maps/docs/classes/editor.lineshape.html#select), [Playground](https://heremaps.github.io/xyz-maps/playground/#Editor-Drag_multiple_Shapes) + ## 0.34.0 (2023-6-21) ### editor * improved: The RangeSelector utility now treats RangeMarkers that are exactly on top of each other as a valid zero-length range. diff --git a/packages/editor/package.json b/packages/editor/package.json index b7da424c4..74e6df997 100644 --- a/packages/editor/package.json +++ b/packages/editor/package.json @@ -1,6 +1,6 @@ { "name": "@here/xyz-maps-editor", - "version": "0.34.0", + "version": "0.35.0", "description": "XYZ editor.", "author": { "name": "HERE Europe B.V.", @@ -28,9 +28,9 @@ "update-changelog": "npx build-changelog" }, "dependencies": { - "@here/xyz-maps-common": "^0.34.0", - "@here/xyz-maps-core": "^0.34.0", - "@here/xyz-maps-display": "^0.34.0" + "@here/xyz-maps-common": "^0.35.0", + "@here/xyz-maps-core": "^0.35.0", + "@here/xyz-maps-display": "^0.35.0" }, "devDependencies": { "@rollup/plugin-typescript": "^8.3.4", diff --git a/packages/playground/package.json b/packages/playground/package.json index 5f71e94ab..634f9ab90 100644 --- a/packages/playground/package.json +++ b/packages/playground/package.json @@ -1,6 +1,6 @@ { "name": "@here/xyz-maps-playground", - "version": "0.34.0", + "version": "0.35.0", "description": "Playground for XYZ editor.", "author": { "name": "HERE Europe B.V.", @@ -19,10 +19,10 @@ "dev": "rollup -c -w" }, "dependencies": { - "@here/xyz-maps-common": "^0.34.0", - "@here/xyz-maps-core": "^0.34.0", - "@here/xyz-maps-display": "^0.34.0", - "@here/xyz-maps-editor": "^0.34.0", + "@here/xyz-maps-common": "^0.35.0", + "@here/xyz-maps-core": "^0.35.0", + "@here/xyz-maps-display": "^0.35.0", + "@here/xyz-maps-editor": "^0.35.0", "@monaco-editor/react": "^4.4.5", "monaco-editor": "^0.34.0", "react": "^18.2.0", diff --git a/packages/tests/package.json b/packages/tests/package.json index 7c758d35c..14ac42aec 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -1,6 +1,6 @@ { "name": "@here/xyz-maps-test", - "version": "0.34.0", + "version": "0.35.0", "description": "Tests for XYZ editor.", "author": { "name": "HERE Europe B.V.", diff --git a/packages/utils/package.json b/packages/utils/package.json index df516b2a0..291e4c0ef 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@here/xyz-maps-utils", - "version": "0.34.0", + "version": "0.35.0", "description": "Development utilities used to build XYZ Maps modules", "author": { "name": "HERE Europe B.V.",