Skip to content

v0.10.0

Compare
Choose a tag to compare
@kylebarron kylebarron released this 07 Oct 19:59
· 3 commits to main since this release
8202ca5

New! ✨

  • New TripsLayer for animating moving objects, which integrates with MovingPandas. See the Air Traffic Control example and the MovingPandas integration example.
  • New ColumnLayer for rendering extruded cylinders. See the new ColumnLayer example.
  • 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).
  • Improved documentation
  • New Map.add_layer method for easily adding more layer(s) to an existing Map instance.
  • Add highlight_color to change the color of auto_highlight by @kylebarron in #666
  • Use deterministic colors in viz by @kylebarron in #621
  • Categorical data filtering. The DataFilterExtension now has a filter_categories attribute that lets you filter categorical data on the map. by @kylebarron in #609

Breaking Changes 🔨

  • 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
  • Fix attribution by @vgeorge in #561

New Contributors