v1.5.2 — Keep Wikipedia popup open
Bugfix
(i) marker popup closed itself after about a second.
`_activateMap` is scheduled at 0/80/220/500 ms after a track load (and again on resize/intersection observer events). Each run called `_renderCurrentTrack`, which since v1.5.0 also called `_renderWikiMarkers(cached)`. That method ran `group.clearLayers()`, destroying the marker carrying the open popup — so the popup vanished within a second of opening it.
Now the card tracks which activity's markers are currently rendered on each map (inline + fullscreen). It only clears and re-creates the markers when:
- the user toggles the layer off and back on
- the displayed ride changes
- the underlying map is destroyed (e.g. configuration change)
Repeated `_renderCurrentTrack` calls for the same ride are now no-ops for the Wikipedia layer, so any open popup stays open. `closeOnClick:false` and `autoClose:false` are also passed to `bindPopup` as belt-and-braces.
Installation
Update via HACS, restart Home Assistant, hard-refresh the browser (Ctrl+Shift+R / ⌘⇧R).