Skip to content

Latest commit

 

History

History
51 lines (47 loc) · 5.99 KB

v3.3.0.md

File metadata and controls

51 lines (47 loc) · 5.99 KB

Upgrade notes

  • The ol.events.condition.mouseMove function was replaced by ol.events.condition.pointerMove (see #3281). For example, if you use ol.events.condition.mouseMove as the condition in a Select interaction then you now need to use ol.events.condition.pointerMove:

    var selectInteraction = new ol.interaction.Select({
      condition: ol.events.condition.pointerMove
      // …
    });

Overview of all changes