Like the Title says, Is there a way to disable bing’s map auto background painting every time a new point is discovered?
constructor :
bFirstPointRecv = true;
polyline = new MapPolyline();
polyline.Fill = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Colors.Blue);
polyline.Stroke = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Colors.Green);
polyline.StrokeThickness = 5;
polyline.Opacity = 0.4;
polyline.Locations = MapManager.MapMgr.mCoordinates;
map1.Children.Add(polyline);
Thanks!
my mistake was that i used the FILL property.. I simplly had to remove that initializtion line