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
fix: add last_object_clicked_count to detect repeated marker clicks (#319)
* fix: add last_object_clicked_count to detect repeated marker clicks
Adds a new last_object_clicked_count field that increments on every
layer click. This lets apps detect when the same marker is clicked
multiple times, which was previously impossible because the lat/lng
guard only forwarded changes.
Fixes#316
* fix: split fused test_last_object_clicked_count/test_geojson_styles
test_last_object_clicked_count was accidentally inserted directly in
front of test_geojson_styles with no function boundary, fusing the two
and silently deleting test_geojson_styles as standalone regression
coverage. Split them back into separate top-level functions.
Also drop six noqa: PLC0415 comments from the new test_package.py
tests that ruff (pinned via pre-commit) flags as unused-noqa (RUF100),
since PLC0415 isn't enabled at that ruff version; every other
function-local import in this test suite already omits the noqa.
0 commit comments