Vue2Leaflet Versions Save

Vue 2 components for Leaflet maps

v2.4.3

4 years ago

v2.2.1

4 years ago
  • 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

v2.1.1

5 years ago

minor fix to emit the ready event only inside nextTick

v2.1.0

5 years ago

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

v2.0.3

5 years ago
  • 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

v1.2.0

5 years ago
  • new LIcon component
  • rolled back leaflet to 1.3.0
  • bugfixes
  • .sync modifier in markers lat-lng prop
  • Updated some examples

v1.1.1

5 years ago
  • 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.

v1.1.0

5 years ago

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

6 years ago

:warning: Breaking changes from v1.x.x to v0.x.x :warning:

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

:exclamation: 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).

:exclamation: 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'.

:sparkles: Leaflet Controls

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