Ipyleaflet

Latest version: v0.19.2

Safety actively analyzes 682457 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 4

0.17.3

What's Changed

* Add image service layers to address https://github.com/jupyter-widgets/ipyleaflet/pull/932 by tsutterley in https://github.com/jupyter-widgets/ipyleaflet/pull/933
* Revert change from https://github.com/jupyter-widgets/ipyleaflet/pull/965 that sets the default zoom to None by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/1068
* Fix in tab by maartenbreddels in https://github.com/jupyter-widgets/ipyleaflet/pull/1099

New Contributors

* tsutterley made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/933
* maartenbreddels made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/1099

**Full Changelog:** https://github.com/jupyter-widgets/ipyleaflet/compare/0.17.2...0.17.3

0.17.2

Bug fixes

* Fix view bounds by davidbrochart in https://github.com/jupyter-widgets/ipyleaflet/pull/1064

New features

* Add subitems to layers by HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/1011

Maintenance

* JS linters by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/1057
* Add pandas to bot by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/1056
* Fix Galata bot by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/1055
* Update the way we run UI-tests by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/1054
* Corrected cursor name by tylere in https://github.com/jupyter-widgets/ipyleaflet/pull/1047
* Fixup yarn.lock by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/1043

Full Changelog: https://github.com/jupyter-widgets/ipyleaflet/compare/0.17.1...0.17.2

0.17.1

New features

* Add a colormap control to be used with Choropleth layer by HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/1010
* Add zoom_offset param to TileLayer by ned2 in https://github.com/jupyter-widgets/ipyleaflet/pull/1023
* Add support for as_leaflet_layer in Map.add by banesullivan in https://github.com/jupyter-widgets/ipyleaflet/pull/1033 and davidbrochart in https://github.com/jupyter-widgets/ipyleaflet/pull/1037
* ipywidgets 8.0 support by jasongrout in https://github.com/jupyter-widgets/ipyleaflet/pull/968

Maintenance

* Pin nodejs=16, drop base setup by davidbrochart in https://github.com/jupyter-widgets/ipyleaflet/pull/1017
* Remove HikeBike basemap from the examples by HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/1039

Documentation

* Use the latest jupyterlite-sphinx release on ReadTheDocs by jtpio in https://github.com/jupyter-widgets/ipyleaflet/pull/1026
* Lazy-load the JupyterLite embedded page in documentation by HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/1007

New Contributors

* ned2 made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/1023

Full Changelog: https://github.com/jupyter-widgets/ipyleaflet/compare/0.17.0...0.17.1

0.17.0

Here are some highlights of changes in this version. See the full list of changes for more details: https://github.com/jupyter-widgets/ipyleaflet/compare/0.16.0...0.17.0

New Features

* Make it possible to use Choropleth layer with data containing NaNs [972](https://github.com/jupyter-widgets/ipyleaflet/pull/972)
* Add Map panes [999](https://github.com/jupyter-widgets/ipyleaflet/pull/999)
* Allow setting Map.dragging [1001](https://github.com/jupyter-widgets/ipyleaflet/pull/1001)
* Add visible attribute to GeoJSON layer [1002](https://github.com/jupyter-widgets/ipyleaflet/pull/1002)

Deprecated API

* Deprecate LegendControl properties `name`, `legends`, `positioning`, and `positionning` [979](https://github.com/jupyter-widgets/ipyleaflet/pull/979) and [#1005](https://github.com/jupyter-widgets/ipyleaflet/pull/1005). Update your code with the following substitutions for a LegendControl `legend`:
* `legend.name` -> `legend.title`
* `legend.legends` -> `legend.legend`
* `legend.positioning` -> `legend.position`
* `legend.positionnning` -> `legend.position`

The `name` argument in creating a LegendControl is also deprecated, please use the `title` argument instead: `LegendControl({}, title='My Title')`.
* Deprecate layer and control-specific method names for Map and LayerGroup, in favor of methods that work for both layers and controls [982](https://github.com/jupyter-widgets/ipyleaflet/pull/982). Update your code with the following substitutions for a Map `map` (or LayerGroup):
* `map.add_control(...)` or `map.add_layer(...)` -> `map.add(...)`
* `map.remove_control(...)` or `map.remove_layer(...)` -> `map.remove(...)`
* `map.substitute_control(...)` or `map.substitute_layer(...)` -> `map.substitute(...)`
* `map.clear_controls(...)` or `map.clear_layers(...)` -> `map.clear(...)`

The inline operators still continue to work as before, such as `map += control` or `map -= layer`.

Maintenance

* Compute the public path automatically [988](https://github.com/jupyter-widgets/ipyleaflet/pull/988)

Docs

* Document use of multiple basemaps [971](https://github.com/jupyter-widgets/ipyleaflet/pull/971)
* Add a small introduction text [992](https://github.com/jupyter-widgets/ipyleaflet/pull/992)

0.16.0

New features

* Add bounds attribute to TileLayer by davidbrochart in https://github.com/jupyter-widgets/ipyleaflet/pull/907
* Implemented open_popup and close_popup methods by PROgram52bc in https://github.com/jupyter-widgets/ipyleaflet/pull/914

Maintainance

* Stop layer loading spinner when layer is removed by clydebw in https://github.com/jupyter-widgets/ipyleaflet/pull/903
* Added backward compatibility for dict basemaps by sackh in https://github.com/jupyter-widgets/ipyleaflet/pull/901
* Pin `openssl=1.1.1l` in CI script by trungleduc in https://github.com/jupyter-widgets/ipyleaflet/pull/906
* Test `ipyleaflet` widgets with `galata` by trungleduc in https://github.com/jupyter-widgets/ipyleaflet/pull/905
* Clean up UI tests by davidbrochart in https://github.com/jupyter-widgets/ipyleaflet/pull/908
* Remove map callbacks when DrawControl removed from map by clydebw in https://github.com/jupyter-widgets/ipyleaflet/pull/916
* Add Galata bot by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/938
* Fix CI by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/946
* Fix Galata screenshot update CI job by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/945
* Missing jupyter-packaging on CI by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/948
* Fix ui-tests port by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/949
* UI-tests: Update scripts to match bot implementation by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/950
* Remove OpenSSL pinning by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/952
* Update Galata screenshots by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/947
* Update build script by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/954
* Fix watch script in ipyleaflet by HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/963

Docs:

* Fix docs table by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/898
* Update basemaps by MackyDIARRA in https://github.com/jupyter-widgets/ipyleaflet/pull/924
* Updates on ipyleaflet documentation by HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/953
* Change the theme to pydata-sphynx-theme by HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/955
* Update installation instructions by martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/956
* Add to ipyleaflet's documentation some missing attributes sections with autodoc. by HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/957
* Add jupyterlite-sphinx by HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/958
* Fix formatting issues in the doc for attributes and methods sections using autodoc by HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/959
* radiation notebook updated with SearchControl object adding by MackyDIARRA in https://github.com/jupyter-widgets/ipyleaflet/pull/899

New Contributors
* clydebw made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/903
* trungleduc made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/906
* PROgram52bc made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/914
* HaudinFlorence made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/953

**Full Changelog**: https://github.com/jupyter-widgets/ipyleaflet/compare/0.15.0...0.16.0

0.15.0

Improvements:

* Add `prefer_canvas` option to the `Map` class
* Use `xyzservices` for base maps
* Add Colab support by default
* Support any layer type in `MarkerCluster`
* Add `location_found` event to the `SearchControl`

Page 2 of 4

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.