Reputation: 35
I need to use some features of the development version of OpenLayers 3 (non stable), namelly the translate method of ol.geom. It is possible to test and use these in my aplication? Thanks in advance.
Upvotes: 1
Views: 160
Reputation: 6970
You can use the "experimental" features of an OpenLayers 3 release in the same way that you use the stable features. Both experimental and stable features are available to custom builds or a full build of the library.
It is important to keep in mind that experimental features may be changed or removed in future releases. However, it is also common that experimental features are promoted to stable features in future releases.
In the case of the geometry.translate()
method, this was released as stable in 3.5.0 (so it will remain that way for all future 3.x releases).
Upvotes: 1