You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removed required dependencies!geopandas, pandas, shapely, pyarrow, matplotlib, and palettable are now optional dependencies. Lonboard will still work out of the box with them, but they aren't required to use Lonboard. This gives Lonboard a smaller footprint and makes it easier to use in environments such as Pyodide.
You can now draw bounding boxes on the map. This is exposed as the selected_bounds attribute on the Map object, stored as a two-dimensional bounding box (minx, miny, maxx, maxy).
The tooltip shown on hover was replaced with a side panel. You now must click on a geometry to view its attributes. By @vgeorge in #636
Fixes 🐛
We've switched from storing list objects to storing tuple objects (e.g. the list of layers in a Map). The immutability of the tuple ensures that a any changes in the sequence of layers will be propagated to the frontend.Fixed in #620
A class of bugs was fixed when using Arrow input, where the chunking structure of the main table did not match the chunking of accessors. Fixed in #644
Fix reading from DuckDB with only geometry column by @kylebarron in #625