Hello,
I am trying to track down some help on my Location Data Source. I have this event I call the UpdateLocation Method and the LocationSymbol does update on my MapView when enabled. The issue comes though when I pause the data generator (lat long heading) the symbol continues to move for about 1ish seconds. Is something limiting the rate at which I can update this position? It seems as if the "live data" gets to far ahead of the actual symbol position so when data is paused it finishes moving along the path as it clears the buffer for a lack of a better word.
TIA
private void OnTimeTick_Changed(object sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == nameof(EZA.TimeRunning))
{
UpdateLocation(new Location(new MapPoint(EZA.Long, EZA.Lat, SpatialReferences.Wgs84), 0, EZA.GroundSpeed, EZA.Heading, false));
}
}