Agregando líneas rectas "Bing Maps Control WPF".
En algunos casos es posible que desees trazar algunos trazos de línea recta entre dos puntos en un mapa. Una forma de hacerlo se muestra en el siguiente código: private void PutPoint() { //List of Locations List < Location > locationsList = new List < Location >(); Location locdetail = new Location (21.1869553, -102.88504169999999); locationsList.Add(locdetail); locdetail = new Location (21.8815453, -102.29124539999998); locationsList.Add(locdetail); //Center location in map myMap.Center = locdetail; myMap.ZoomLevel = 8; //Line configuration MapPolyline line = new MapPolyline (); line.Stroke = new SolidCol...