Windows phone 7 の bing マップ コントロールを使用しており、エミュレータでのみポリライン プロットを使用しています。デバイスで実行しても何も起こりません...
XDocument doc = XDocument.Parse(getRoute1()); //private string getRoute1() return gpx file
var ns = doc.Root.GetDefaultNamespace();
var loc = doc.Descendants()
.Where(el => el.Name == ns + "wpt" || el.Name == ns + "trkpt")
.Select(trkpt =>
new Location
{
Latitude = double.Parse(trkpt.Attribute("lat").Value),
Longitude = double.Parse(trkpt.Attribute("lon").Value)
}).ToLocationCollection();
mapPolyline.Locations = loc;
maps.Children.Add(mapPolyline);