mirror of
https://github.com/marceloprates/prettymaps.git
synced 2026-09-27 11:01:47 +02:00
plot_gdf's MultiLineString branch filtered kwargs with [lw, lt, ...] while the LineString branch used [lw, ls, ...]. lt is not a matplotlib kwarg, so any caller passing ls="--" or ls="-." to a MultiLineString layer had their style silently dropped. The GPX/KML track layer in #145 hits this path because read_track() always returns a MultiLineString, even for single-segment files. Normalize both branches to use ls (the matplotlib standard). Refs: #145