Skip to content

Releases: vue-leaflet/Vue2Leaflet

v2.4.3 - Marker visible prop fix

09 Feb 12:07
Compare
Choose a tag to compare

v2.2.1

24 Jul 07:59
Compare
Choose a tag to compare
  • disableClickPropagation on LControl
  • more unit test
  • memory leak on LMap addressed
  • kebab case event names on marker
  • fix tooltip issues
  • minor fix to LCirlce

Huge thanks to everybody who put their effort in writing test, patching and enhancing the code

Ready event on components

25 Apr 08:05
Compare
Choose a tag to compare

minor fix to emit the ready event only inside nextTick

Ready event on components

21 Apr 14:34
Compare
Choose a tag to compare

All the components now emit a ready event containing the leaflet mapObject

ES Module, Bug fixes, Unit test boostrap

20 Apr 19:20
Compare
Choose a tag to compare
  • Leaflet is now a peerDependecy, please install it manually
  • ES module compilation for tree-shaking
  • l-icon component fixes
  • unit testing boostrap

Special thanks to @bezany

Licon component, sync modifier on marker lat-lng

08 Nov 09:09
Compare
Choose a tag to compare
  • new LIcon component
  • rolled back leaflet to 1.3.0
  • bugfixes
  • .sync modifier in markers lat-lng prop
  • Updated some examples

Stable version of 1.1.0, TS support

28 Oct 13:21
Compare
Choose a tag to compare
  • All the features introduced in 1.1.0
  • Fixed issues introduced in 1.1.0
  • Typescrip support

Big thanks to @bezany @HIMISOCOOL for the hard work and everyone else who contribute to this release.

Mixin Refactor, Tooltip Performance, Linting, GeoJson Options ...

02 Oct 14:58
Compare
Choose a tag to compare

This release contain a big refactor of the code an many addition.

No breaking changes aside some future deprecation warning.

While it has been tested with all the examples and working application it's important to point out that the codebase has been strongly mutated.

  • Code size reduced by almost 10kb
  • Tooltip and popup performance (dynamic prop added )
  • Codebase now uses linting
  • GeoJson options and style are now reactive (thanks @bezany)
  • Image Overlay additional options

Feel free to open any Issue if any bug / perplexity is found.

Marked as pre-release

v1.0.1 Simplifiy events and add Controls to Vue2Leaflet

27 Mar 15:14
Compare
Choose a tag to compare

⚠️ Breaking changes from v1.x.x to v0.x.x ⚠️

A new major release v1.x.x is available and come with some breaking changes.

❗ Components names

As some component where conflicting with reserved name like Circle with SVG Circle, from v1.x.x all components are prefixed with L.

For example Marker component became LMarker (l-marker in template).

❗ Events names

Event handling have been simplified and are now mapped directly to Leaflet event.

For example Marker move event was 'l-move' and became simply 'move'.

✨ Leaflet Controls

v1.0.0 introduces Leaflet Controls you can now use them using LControlAttribution, LControlLayers, LControlScale and LControlZoom.