All Versions
128
Latest Version
Avg Release Cycle
35 days
Latest Release
487 days ago

Changelog History
Page 11

  • v0.12.1 Changes

    July 08, 2016
    • 🛠 Fixed unmounting LayersControl when the Map is unmounting as well.
    • ➕ Added a [plugins](docs/Plugins.md) section to the [documentation](docs).
  • v0.12.0 Changes

    June 25, 2016
    • ⚡️ [BREAKING] Moved Leaflet instances injection from props to context. All components provided by this lib should continue to work as expected, but custom components need to be updated. Read the [UPGRADING](UPGRADING.md) file for more information.
    • 🗄 Deprecated getLeafletElement() method, simply use the leafletElement property instead.
    • 📚 Documentation moved to the [docs](docs) folder and has been split into different files for better readability.
  • v0.11.7 Changes

    June 14, 2016

    🛠 Fixed removing layers from LayersControl.

  • v0.11.6 Changes

    June 09, 2016
    • 🛠 Fixed allowing to set and update the style prop as a function in GeoJson.
    • 🏗 [internal] Added lodash-webpack-plugin to reduce the size of the UMD build.
  • v0.11.5 Changes

    May 14, 2016
    • 🛠 Fixed updating boundsOptions in the Map without updating bounds.
    • 🛠 Fixed setting opacity and zIndex properties to 0 in tile layers.
  • v0.11.4 Changes

    May 05, 2016

    🛠 Fixed TileLayer properties update.

  • v0.11.3 Changes

    April 28, 2016

    Made the draggable property in Marker dynamic (PR #148 by riolowry).

  • v0.11.2 Changes

    April 25, 2016

    🛠 Fixed layer removal in LayersControl.

  • v0.11.1 Changes

    April 17, 2016

    Fixed map property injection in LayersControl (PR #142 by Dahlgren).

  • v0.11.0 Changes

    April 09, 2016
    • [BREAKING] Added layerContainer property as a consistent replacement for map or layerGroup (PR #132 by boromisp). This is only breaking if you are creating custom components, as you will need to make sure to also inject the layerContainer property to children layers as you need to do with map.
    • 🔄 Changed LayersControl to be based on components:
      • Added LayersControl.BaseLayer container component to add a base layer to a LayersControl.
      • Added LayersControl.Overlay container component to add an overlay to a LayersControl.
      • baseLayers and overlays properties for LayersControl are still supported but deprecated. Using either of them will make the LayersControl behave the same way it does in versions < 0.11.
    • 🗄 Deprecated onLeaflet... properties for events, simply use on..., ex onClick instead of onLeafletClick.
    • ➕ Added warnings for deprecated features, the same way React does. Make sure to address these warnings to ease the transition to future releases.
    • ➕ Added React v15.0.0 support as peer dependency.
    • [internal] Fixed no-unused-vars linting (PR #131 by boromisp).