Skip to content

Commit 508f570

Browse files
committed
v0.36.0
close #90 Signed-off-by: Tim Deubler <tim.deubler@here.com>
1 parent 607e937 commit 508f570

File tree

14 files changed

+146
-20
lines changed

14 files changed

+146
-20
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 0.36.0 (2023-12-8)
2+
### core
3+
* added: The ["ignoreTileQueryLimit"](https://heremaps.github.io/xyz-maps/docs/core.imlprovideroptions.html#ignoretilequerylimit) option has been introduced to mitigate an excessive number of tile requests.
4+
### display
5+
* improved: The anti-aliasing for lines using floating point widths has been enhanced.
6+
* improved: In the visualization of clipped polygon outlines, the tile edges are excluded, regardless of whether the clipped geometry extends beyond the tile's boundaries.
7+
* improved: The display quality of dashed lines has been improved.
8+
* improved: An updated feature could experience a very brief flicker after changing the zoom level.
9+
* added: The alpha blending has been revamped to enable the map to display with a transparent background, allowing the remaining browser content to show through behind it. See [backgroundColor](https://heremaps.github.io/xyz-maps/docs/interfaces/display.mapoptions.html#backgroundcolor). (#90)
10+
* added: In addition to pixels, dashed lines can now also be defined and displayed in meter units.
11+
* added: It is now possible to combine Images/Icons with dashed line patterns by using [strokeDashimage](https://heremaps.github.io/xyz-maps/docs/interfaces/core.linestyle.html#strokedashimage).
12+
* added: Image/Icon styles now support the use of Icon[Atlases](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imagestyle.html#atlas).
13+
* added: By using [textAnchor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#textanchor) it is now possible to align the text relative to the anchor point.
14+
* added: Introduced [CollisionGroup](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#collisiongroup) which allows to define various CollisionGroups (multiple Styles grouped together that will be handled as a single collision object) within the same StyleGroup.
15+
* added: LayerStyles backgroundColor now supports dynamic colors taking zoom level into account.
16+
* added: Colors now support hexadecimal color strings with alpha and hexadecimal numbers as input.
17+
* fixed: The triggering of pointer events for 3D point geometry was inconsistent across various scenarios.
18+
* fixed: The tile preview is only partially displayed when zoomed out.
19+
* fixed: In very rare cases, Chrome could cause text to be displayed offset.
20+
* fixed: Using StrokeDashArray with very long lines could result in artifacts.
21+
* fixed: Glitches that may have appeared on the edges of previewed raster tiles have been resolved.
22+
* fixed: Issues with occasional tile preview display glitches have been fixed.
23+
### editor
24+
* improved: The [createFeatureContainer](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#createfeaturecontainer) function now accommodates multiple arrays of features as arguments. [fix #91]
25+
126
## 0.35.0 (2023-8-22)
227
### display
328
* improved: The display of preview tiles has been optimized.

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"npmClient": "yarn",
3-
"version": "0.35.0"
3+
"version": "0.36.0"
44
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps",
3-
"version": "0.35.0",
3+
"version": "0.36.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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## 0.36.0 (2023-12-8)
2+
### core
3+
* added: The ["ignoreTileQueryLimit"](https://heremaps.github.io/xyz-maps/docs/core.imlprovideroptions.html#ignoretilequerylimit) option has been introduced to mitigate an excessive number of tile requests.
4+
### display
5+
* improved: The anti-aliasing for lines using floating point widths has been enhanced.
6+
* improved: In the visualization of clipped polygon outlines, the tile edges are excluded, regardless of whether the clipped geometry extends beyond the tile's boundaries.
7+
* improved: The display quality of dashed lines has been improved.
8+
* improved: An updated feature could experience a very brief flicker after changing the zoom level.
9+
* added: The alpha blending has been revamped to enable the map to display with a transparent background, allowing the remaining browser content to show through behind it. See [backgroundColor](https://heremaps.github.io/xyz-maps/docs/interfaces/display.mapoptions.html#backgroundcolor). (#90)
10+
* added: In addition to pixels, dashed lines can now also be defined and displayed in meter units.
11+
* added: It is now possible to combine Images/Icons with dashed line patterns by using [strokeDashimage](https://heremaps.github.io/xyz-maps/docs/interfaces/core.linestyle.html#strokedashimage).
12+
* added: Image/Icon styles now support the use of Icon[Atlases](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imagestyle.html#atlas).
13+
* added: By using [textAnchor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#textanchor) it is now possible to align the text relative to the anchor point.
14+
* added: Introduced [CollisionGroup](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#collisiongroup) which allows to define various CollisionGroups (multiple Styles grouped together that will be handled as a single collision object) within the same StyleGroup.
15+
* added: LayerStyles backgroundColor now supports dynamic colors taking zoom level into account.
16+
* added: Colors now support hexadecimal color strings with alpha and hexadecimal numbers as input.
17+
* fixed: The triggering of pointer events for 3D point geometry was inconsistent across various scenarios.
18+
* fixed: The tile preview is only partially displayed when zoomed out.
19+
* fixed: In very rare cases, Chrome could cause text to be displayed offset.
20+
* fixed: Using StrokeDashArray with very long lines could result in artifacts.
21+
* fixed: Glitches that may have appeared on the edges of previewed raster tiles have been resolved.
22+
* fixed: Issues with occasional tile preview display glitches have been fixed.
23+
### editor
24+
* improved: The [createFeatureContainer](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#createfeaturecontainer) function now accommodates multiple arrays of features as arguments. [fix #91]s have been resolved.
25+
* display: Issues with occasional tile preview display glitches have been fixed.
26+
127
## 0.35.0 (2023-8-22)
228
### display
329
* improved: The display of preview tiles has been optimized.

packages/common/package.json

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

packages/core/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 0.36.0 (2023-12-8)
2+
### core
3+
* added: The ["ignoreTileQueryLimit"](https://heremaps.github.io/xyz-maps/docs/core.imlprovideroptions.html#ignoretilequerylimit) option has been introduced to mitigate an excessive number of tile requests.
4+
### display
5+
* improved: The anti-aliasing for lines using floating point widths has been enhanced.
6+
* improved: In the visualization of clipped polygon outlines, the tile edges are excluded, regardless of whether the clipped geometry extends beyond the tile's boundaries.
7+
* improved: The display quality of dashed lines has been improved.
8+
* improved: An updated feature could experience a very brief flicker after changing the zoom level.
9+
* added: The alpha blending has been revamped to enable the map to display with a transparent background, allowing the remaining browser content to show through behind it. See [backgroundColor](https://heremaps.github.io/xyz-maps/docs/interfaces/display.mapoptions.html#backgroundcolor). (#90)
10+
* added: In addition to pixels, dashed lines can now also be defined and displayed in meter units.
11+
* added: It is now possible to combine Images/Icons with dashed line patterns by using [strokeDashimage](https://heremaps.github.io/xyz-maps/docs/interfaces/core.linestyle.html#strokedashimage).
12+
* added: Image/Icon styles now support the use of Icon[Atlases](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imagestyle.html#atlas).
13+
* added: By using [textAnchor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#textanchor) it is now possible to align the text relative to the anchor point.
14+
* added: Introduced [CollisionGroup](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#collisiongroup) which allows to define various CollisionGroups (multiple Styles grouped together that will be handled as a single collision object) within the same StyleGroup.
15+
* added: LayerStyles backgroundColor now supports dynamic colors taking zoom level into account.
16+
* added: Colors now support hexadecimal color strings with alpha and hexadecimal numbers as input.
17+
* fixed: The triggering of pointer events for 3D point geometry was inconsistent across various scenarios.
18+
* fixed: The tile preview is only partially displayed when zoomed out.
19+
* fixed: In very rare cases, Chrome could cause text to be displayed offset.
20+
* fixed: Using StrokeDashArray with very long lines could result in artifacts.
21+
* fixed: Glitches that may have appeared on the edges of previewed raster tiles have been resolved.
22+
* fixed: Issues with occasional tile preview display glitches have been fixed.
23+
### editor
24+
* improved: The [createFeatureContainer](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#createfeaturecontainer) function now accommodates multiple arrays of features as arguments. [fix #91]
25+
126
## 0.35.0 (2023-8-22)
227
### display
328
* improved: The display of preview tiles has been optimized.

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-core",
3-
"version": "0.35.0",
3+
"version": "0.36.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.35.0"
30+
"@here/xyz-maps-common": "^0.36.0"
3131
},
3232
"devDependencies": {
3333
"@mapbox/vector-tile": "^1.3.1",

packages/display/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 0.36.0 (2023-12-8)
2+
### core
3+
* added: The ["ignoreTileQueryLimit"](https://heremaps.github.io/xyz-maps/docs/core.imlprovideroptions.html#ignoretilequerylimit) option has been introduced to mitigate an excessive number of tile requests.
4+
### display
5+
* improved: The anti-aliasing for lines using floating point widths has been enhanced.
6+
* improved: In the visualization of clipped polygon outlines, the tile edges are excluded, regardless of whether the clipped geometry extends beyond the tile's boundaries.
7+
* improved: The display quality of dashed lines has been improved.
8+
* improved: An updated feature could experience a very brief flicker after changing the zoom level.
9+
* added: The alpha blending has been revamped to enable the map to display with a transparent background, allowing the remaining browser content to show through behind it. See [backgroundColor](https://heremaps.github.io/xyz-maps/docs/interfaces/display.mapoptions.html#backgroundcolor). (#90)
10+
* added: In addition to pixels, dashed lines can now also be defined and displayed in meter units.
11+
* added: It is now possible to combine Images/Icons with dashed line patterns by using [strokeDashimage](https://heremaps.github.io/xyz-maps/docs/interfaces/core.linestyle.html#strokedashimage).
12+
* added: Image/Icon styles now support the use of Icon[Atlases](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imagestyle.html#atlas).
13+
* added: By using [textAnchor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#textanchor) it is now possible to align the text relative to the anchor point.
14+
* added: Introduced [CollisionGroup](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#collisiongroup) which allows to define various CollisionGroups (multiple Styles grouped together that will be handled as a single collision object) within the same StyleGroup.
15+
* added: LayerStyles backgroundColor now supports dynamic colors taking zoom level into account.
16+
* added: Colors now support hexadecimal color strings with alpha and hexadecimal numbers as input.
17+
* fixed: The triggering of pointer events for 3D point geometry was inconsistent across various scenarios.
18+
* fixed: The tile preview is only partially displayed when zoomed out.
19+
* fixed: In very rare cases, Chrome could cause text to be displayed offset.
20+
* fixed: Using StrokeDashArray with very long lines could result in artifacts.
21+
* fixed: Glitches that may have appeared on the edges of previewed raster tiles have been resolved.
22+
* fixed: Issues with occasional tile preview display glitches have been fixed.
23+
### editor
24+
* improved: The [createFeatureContainer](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#createfeaturecontainer) function now accommodates multiple arrays of features as arguments. [fix #91]
25+
126
## 0.35.0 (2023-8-22)
227
### display
328
* improved: The display of preview tiles has been optimized.

packages/display/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-display",
3-
"version": "0.35.0",
3+
"version": "0.36.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.35.0",
32-
"@here/xyz-maps-core": "^0.35.0"
31+
"@here/xyz-maps-common": "^0.36.0",
32+
"@here/xyz-maps-core": "^0.36.0"
3333
},
3434
"devDependencies": {
3535
"@rollup/plugin-commonjs": "^23.0.2",

packages/editor/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 0.36.0 (2023-12-8)
2+
### core
3+
* added: The ["ignoreTileQueryLimit"](https://heremaps.github.io/xyz-maps/docs/core.imlprovideroptions.html#ignoretilequerylimit) option has been introduced to mitigate an excessive number of tile requests.
4+
### display
5+
* improved: The anti-aliasing for lines using floating point widths has been enhanced.
6+
* improved: In the visualization of clipped polygon outlines, the tile edges are excluded, regardless of whether the clipped geometry extends beyond the tile's boundaries.
7+
* improved: The display quality of dashed lines has been improved.
8+
* improved: An updated feature could experience a very brief flicker after changing the zoom level.
9+
* added: The alpha blending has been revamped to enable the map to display with a transparent background, allowing the remaining browser content to show through behind it. See [backgroundColor](https://heremaps.github.io/xyz-maps/docs/interfaces/display.mapoptions.html#backgroundcolor). (#90)
10+
* added: In addition to pixels, dashed lines can now also be defined and displayed in meter units.
11+
* added: It is now possible to combine Images/Icons with dashed line patterns by using [strokeDashimage](https://heremaps.github.io/xyz-maps/docs/interfaces/core.linestyle.html#strokedashimage).
12+
* added: Image/Icon styles now support the use of Icon[Atlases](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imagestyle.html#atlas).
13+
* added: By using [textAnchor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#textanchor) it is now possible to align the text relative to the anchor point.
14+
* added: Introduced [CollisionGroup](https://heremaps.github.io/xyz-maps/docs/interfaces/core.textstyle.html#collisiongroup) which allows to define various CollisionGroups (multiple Styles grouped together that will be handled as a single collision object) within the same StyleGroup.
15+
* added: LayerStyles backgroundColor now supports dynamic colors taking zoom level into account.
16+
* added: Colors now support hexadecimal color strings with alpha and hexadecimal numbers as input.
17+
* fixed: The triggering of pointer events for 3D point geometry was inconsistent across various scenarios.
18+
* fixed: The tile preview is only partially displayed when zoomed out.
19+
* fixed: In very rare cases, Chrome could cause text to be displayed offset.
20+
* fixed: Using StrokeDashArray with very long lines could result in artifacts.
21+
* fixed: Glitches that may have appeared on the edges of previewed raster tiles have been resolved.
22+
* fixed: Issues with occasional tile preview display glitches have been fixed.
23+
### editor
24+
* improved: The [createFeatureContainer](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#createfeaturecontainer) function now accommodates multiple arrays of features as arguments. [fix #91]
25+
126
## 0.35.0 (2023-8-22)
227
### display
328
* improved: The display of preview tiles has been optimized.

packages/editor/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-editor",
3-
"version": "0.35.0",
3+
"version": "0.36.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.35.0",
32-
"@here/xyz-maps-core": "^0.35.0",
33-
"@here/xyz-maps-display": "^0.35.0"
31+
"@here/xyz-maps-common": "^0.36.0",
32+
"@here/xyz-maps-core": "^0.36.0",
33+
"@here/xyz-maps-display": "^0.36.0"
3434
},
3535
"devDependencies": {
3636
"@rollup/plugin-typescript": "^8.3.4",

packages/playground/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@here/xyz-maps-playground",
3-
"version": "0.35.0",
3+
"version": "0.36.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.35.0",
23-
"@here/xyz-maps-core": "^0.35.0",
24-
"@here/xyz-maps-display": "^0.35.0",
25-
"@here/xyz-maps-editor": "^0.35.0",
22+
"@here/xyz-maps-common": "^0.36.0",
23+
"@here/xyz-maps-core": "^0.36.0",
24+
"@here/xyz-maps-display": "^0.36.0",
25+
"@here/xyz-maps-editor": "^0.36.0",
2626
"@monaco-editor/react": "^4.4.5",
2727
"monaco-editor": "^0.34.0",
2828
"react": "^18.2.0",

packages/tests/package.json

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

packages/utils/package.json

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

0 commit comments

Comments
 (0)