Compare commits
7 Commits
dependabot
...
v5.3.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb9e13a3e5 | ||
|
|
d1b1444744 | ||
|
|
8992ed68f9 | ||
|
|
cb63b398d3 | ||
|
|
ce89a82e6a | ||
|
|
1c269d6e0b | ||
|
|
83b8fe4b33 |
6
changelog/v5.3.1.md
Normal file
6
changelog/v5.3.1.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# 5.3.1
|
||||
|
||||
The 5.3.1 release is a patch that addresses an issue when using `angular-cli` to build an OpenLayers-based application.
|
||||
|
||||
* [#9253](https://github.com/openlayers/openlayers/pull/9253) - Add proj.js to the sideEffects list ([@romanzoller](https://github.com/romanzoller))
|
||||
|
||||
6
changelog/v5.3.2.md
Normal file
6
changelog/v5.3.2.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# 5.3.2
|
||||
|
||||
The 5.3.2 release is a patch that addresses a tile source issue with old tile data when the source revision changed.
|
||||
|
||||
* [#9422](https://github.com/openlayers/openlayers/pull/9422) - Clear context when source revision changed (v5.3.x fix) ([@elemoine](https://github.com/elemoine))
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ol",
|
||||
"version": "5.3.0",
|
||||
"version": "5.3.2",
|
||||
"description": "OpenLayers mapping library",
|
||||
"keywords": [
|
||||
"map",
|
||||
@@ -99,6 +99,7 @@
|
||||
}
|
||||
},
|
||||
"sideEffects": [
|
||||
"proj.js",
|
||||
"ol.css"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -234,7 +234,8 @@ class CanvasTileLayerRenderer extends IntermediateCanvasRenderer {
|
||||
canvas.width = width;
|
||||
canvas.height = height;
|
||||
} else {
|
||||
if (this.renderedExtent_ && !equals(imageExtent, this.renderedExtent_)) {
|
||||
if ((this.renderedExtent_ && !equals(imageExtent, this.renderedExtent_)) ||
|
||||
this.renderedRevision != sourceRevision) {
|
||||
context.clearRect(0, 0, width, height);
|
||||
}
|
||||
oversampling = this.oversampling_;
|
||||
|
||||
Reference in New Issue
Block a user