Skip to content

Releases: mmomtchev/rlayers

v2.3.0

27 Feb 12:31
Compare
Choose a tag to compare
  • Support OpenLayers 9.0.0

v2.2.0

20 Nov 18:29
Compare
Choose a tag to compare
  • Support OpenLayers 8.2.0
  • Support using TypeScript generics to specify the feature geometry type for vector layers

v2.1.0

16 Nov 19:31
Compare
Choose a tag to compare
  • Support OpenLayers 8.0.0 and 8.1.0
  • Replace RLayerStamen with RLayerStadia which requires OpenLayers 8.0.0

v2.0.0

16 Aug 19:58
Compare
Choose a tag to compare
  • Vastly improved event handling performance avoiding expensive forEachFeatureAtPixel on layers that do not have event handlers
  • Add the useOL() and useRLayersComponent() component hooks allowing to easily access the containing OpenLayers and rlayers components
  • Layer event handlers are now independent of feature event handlers, if both the feature and its containing layer have declared an event handler, both will be called
  • Fix onClick handlers on RLayerVectorTiles layers
  • Use TypeScript protected and private to restrict methods that are not expected to be directly used from user code
  • Support all positioning options in ROverlay
  • Support OpenLayers 7.5.1

v1.5.3

30 Jul 10:52
Compare
Choose a tag to compare
  • Fix #169, support TypeScript 5.x
  • Add onFeaturesLoadStart and onFeaturesLoadError events to all vector layers
  • Fix #163, DOMException when removing an ROverlay

v2.0.0-beta.0

02 Jul 13:26
Compare
Choose a tag to compare
v2.0.0-beta.0 Pre-release
Pre-release
  • Vastly improved event handling performance avoiding expensive forEachFeatureAtPixel on layers that do not have event handlers
  • Add the useOL() and useRLayersComponent() component hooks allowing to easily access the containing OpenLayers and rlayers components
  • Layer event handlers are now independent of feature event handlers, if both the feature and its containing layer have declared an event handler, both will be called
  • Fix onClick handlers on RLayerVectorTiles layers
  • Use TypeScript protected and private to restrict methods that are not expected to be directly used from user code
  • Support all positioning options in ROverlay

v1.5.2

11 Jun 14:50
Compare
Choose a tag to compare
  • Support OpenLayers 7.4.0

v1.5.1

30 May 12:31
Compare
Choose a tag to compare
  • Declare RLayerRasterMBTiles and RLayerVectorMBTiles as public exports

v1.5.0

30 May 11:57
Compare
Choose a tag to compare
  • Add remote .mbtiles support with ol-mbtiles
  • Add new rlayers-specific events to RLayerWMTS and RLayerRasterMBTiles to distinguish them from the OpenLayers onSourceReady events
  • Fix #149, RLayerWMTS visible property does not trigger a refresh
  • Add onPointerLeave handlers for vector tiles

v1.4.9

28 Mar 18:15
Compare
Choose a tag to compare
  • Support OpenLayers 7.3.0
  • Allow using projections other than Web Mercator with RVectorTile (the vector tile projection must still match the view projection)
  • Fix [#133], certain layer properties do not update if they transition from a defined value to undefined
  • Fix #144, update WMTS layers only when the metadata is changed
  • Add a RLayerGeoTIFF custom component, resolves #145