-
Notifications
You must be signed in to change notification settings - Fork 889
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Set source argument in Popup creation * v0.10.1 * Animate panning and zooming * v0.10.2 * Lint 'object destructuring filter' consistently The pattern ```const { map, url, ...props } = this.props``` usually failed during linting, because the ```map``` variable is defined but not used. After adding the ```"varsIgnorePattern": "^_"``` option to the ```no-unused-vars``` rule, unused properies can be marked as: ```const { map: _, url, ...props } = this.props```. I also updated the eslint and babel-eslint dependencies, because of some relevant bugfixes. * Add babel-plugin-lodash * Introduce the concept of 'layer container', as a unified interface for L.Map and L.LayerGroup. * v0.11 - new LayersControl * Component-based LayersControl * Deprecate `onLeaflet...` format for events * React v15 * LayersControl does not pass map props to children (#142) * v0.11.1 * v0.11.2 * Add dynamic draggable props to Marker (#148) * expose ability to toggle marker's draggable status * fix indentation * v0.11.3 * Changes removeFrom to remove in MapControl * Removes MultiPolyline; multipolylines are now supported by Polyline * Removes MultiPolygon; multipolygons are now supported by Polygon * Removes CanvasTileLayer, which has been removed from leaflet * Updates Circle instantiator to use new format
- Loading branch information
Showing
16 changed files
with
85 additions
and
576 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.