Skip to content

Commit

Permalink
FlightData: fix ais/adsb marker update issue
Browse files Browse the repository at this point in the history
  • Loading branch information
meee1 committed Jul 4, 2023
1 parent 5448bfe commit 2d3b358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GCSViews/FlightData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4129,7 +4129,7 @@ public void updateMarkersAsNeeded<TBuilder, TMarker>(IEnumerable<TBuilder> list,
|| GetTagMarker == null || create == null || update == null)
return;

var markers = gMapOverlay.Markers.ToArray();
var markers = gMapOverlay.Markers.Where(a => a is TMarker).ToArray();

foreach (var item in list)
{
Expand Down

0 comments on commit 2d3b358

Please sign in to comment.