I do not quite understand why this isnt working: (Bing maps silverlight control WP7)
Add a pushpin here:
GeoCoordinate location = new GeoCoordinate();
location.Latitude = 51.5;
location.Longitude = 0;
pushpin1.Location = location;
map1.Children.Add(pushpin1);
Remove the pushpin here:
map1.Children.Remove(pushpin1);
This wont remove the pushpin, what am I doing wrong?
Thanks.