Skip to content

Releases: openlayers/openlayers

v10.3.0

30 Nov 11:30
e5d6336
Compare
Choose a tag to compare

In addition to many important bug fixes, the 10.3 release adds several improvements to the recently introduced ImageTile source, support for model transformations for the GeoTIFF source, a new SentinelHub source, built-in support for UTM coordinate transforms, smart caching of regular shape and icon styles, TypeScript improvements for the VectorImage layer, and a new WebGLVectorLayer.

Upgrade notes

The transform function throws for unknown projections

Previously, the transform() function from the ol/proj module would apply the identity transform if either the source or the destination projections were unrecognized. Now this function will throw an error if it cannot perform the transform. You can check whether a projection is registered by calling the get() function from ol/proj - this function returns null if the projection definition for a provided identifier is not known.

List of all changes

See below for a complete list of features and fixes.

Dependency Updates
Read more

v10.2.1

26 Sep 20:27
f274df2
Compare
Choose a tag to compare

The 10.2.1 patch release fixes an issue with missing tiles on reprojected tile layers. See the 10.2.0 release notes for a complete list of changes since the previous release.

What's Changed

New Contributors

Full Changelog: v10.2.0...v10.2.1

v10.2.0

23 Sep 08:23
a70874d
Compare
Choose a tag to compare

The 10.2 release adds an experimental Flow layer to render particle flows (e.g. wind) in WebGL, support for WMS Capabilities v1.1.1, and an ol.VERSION property in the legacy build. Under the hood, it brings several performance improvements, better memory management, bug fixes, type improvements, and the removal of unnecessary tile caching code.

List of all changes

See below for a complete list of features and fixes.

Dependency Updates

New Contributors

Full Changelog: v10.1.0...v10.2.0

v10.1.0

22 Aug 02:50
Compare
Choose a tag to compare

Thanks to those who contributed to the 10.1 release! See below for a complete list of new features and fixes.

🎂 features

🐜 fixes

🚬 dependencies

🏆 new contributors

📜 full changelog v10.0.0...v10.1.0

v10.0.0

27 Jul 10:27
6734ed6
Compare
Choose a tag to compare

10.0.0

The 10.0 release brings several significant improvements, including a new base source for image tile sources with improved performance and simplified code. Flat styles handling has been reworked, removing the need to specify type hints among other internal improvements. In the WebGL renderer, a memory allocation issue has been fixed. For better developer experience, we improved generic types and fixed some issues with types, stabilizing the back and forth on generics in v9.x.

Breaking changes are very minor, so we recommend upgrading to v10.x for all v9.x users.

Backwards incompatible changes

ol/source/VectorTile: getFeaturesInExtent() method moved to ol/layer/VectorTile

The getFeaturesInExtent() method of ol/source/VectorTile has been moved to ol/layer/VectorTile. The signature and behavior have not changed, so all that needs to be done is change code from e.g.

layer.getSource().getFeaturesInExtent(extent);

to

layer.getFeaturesInExtent(extent);
Flat styles: Removal of Type hints in 'get' expressions

For the Canvas renderer, additional arguments to the 'get' call expression now mean access to nested properties or array items. The expression system has been improved so type hints are no longer needed. If you were previously using a type hint in a get expression, you have to change the expression from e.g.

['get', 'foo', 'number[]']

to

['get', 'foo']

Other changes

Removal of the opaque option from all Tile sources

The opaque option was previously used to hint the renderer to perform some optimizations on layers known to be fully opaque. This is no longer needed, and the option has been removed.

List of all changes

See below for a complete list of features and fixes.

Dependency Updates
Read more

v9.2.4

27 May 17:59
Compare
Choose a tag to compare

The 9.2.4 is a patch release that addresses the issue below.

  • Fix case expression with numeric size types (by @M393 in #15876)

v9.2.3

22 May 23:45
Compare
Choose a tag to compare

The 9.2.3 is a patch release that addresses the issue below.

v9.2.2

18 May 19:39
Compare
Choose a tag to compare

The 9.2.2 is a patch release that addresses the issues below.

List of all changes

v9.2.1

16 May 18:49
Compare
Choose a tag to compare

The 9.2.1 release patches the 9.2.0 release with a fix for a TypeScript issue using vector layers.

List of all changes

See below for a complete list of features and fixes.

v9.2.0

15 May 20:59
Compare
Choose a tag to compare

The 9.2 release fixes a number of rendering issues and introduces a few new features. OGC tile sources now support collections selection. Snap events are now more consistent (see below). Type annotations continue to improve, and documentation and examples got a number of updates.

The snap event's feature property is now never null

Previously, listeners for the Snap interaction's snap event received null as value for the feature property when snapped to a segment. Now, the value of the feature property is always set to the snapped feature.

To distinguish between a vertex and a segment snap, look at the snap event's segment property. It will set to null on a vertex snap, and to the snapped segment on a segment snap.

List of all changes

See below for a complete list of features and fixes.

Dependency Updates

New Contributors

Read more