将图钉绑定到Windows Phone中的Bing地图

时间:2012-06-10 11:48:53

标签: xml windows-phone-7

所以我需要一些帮助 - 有关如何操作的一些教程。

我正在尝试为我的应用创建一个位置页面

我需要知道如何将两个xml节点绑定到一个用于图钉列表,然后当用户点击它们时,它会将值带到另一个页面。

我可以填充XML和地图。以下是我目前如何停止。

    void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
    {
        if (e.Error == null)
        {
            if (e.Result != null)
            {
                XDocument doc = XDocument.Parse(e.Result);
                XNamespace ns = "http://schemas.datacontract.org/2004/07/BusExpress.ClassLibrary";
                var locations = (from n in doc.Descendants(ns + "ArrayOfStop")
                                  select new RootContainer
                                  {

                                      Location = (from s in n.Elements(ns + "Stop")
                                               select new Location
                                               {
                                                 latitude = s.Element(ns + "lat").Value,
                                                 longitude = s.Element(ns + "long").Value,


                                               }).ToList()
                                  }).Single();


              //  listBusStops.ItemsSource = locations.Location;


                // Do something with the list of Route Names in routeNames 
            }
        }
    } 

如何从一个xml Feed中将其转换为多个Push引脚。

1 个答案:

答案 0 :(得分:1)

<强>更新 添加了更多代码,以及指向工作演示和完整源代码的链接。

注意:Demo with source via my blog

您可以构建一个数据模板来表示推针在地图上的显示方式。

如:

<phone:PhoneApplicationPage.Resources>
    <DataTemplate x:Key="PinItemTemplate">
        <my:Pushpin Location="{Binding Location}" 
                    MouseLeftButtonUp="Pushpin_MouseLeftButtonUp_1"
                    Content="{Binding Id}">
        </my:Pushpin>
    </DataTemplate>
</phone:PhoneApplicationPage.Resources>

然后,您可以将bing地图绑定到引用数据模板的此集合。

        <my:Map Margin="10,10,0,0"
                Name="map1"
                Center="39.95245, -75.163526"
                ZoomLevel="11"
                HorizontalAlignment="Stretch"
                VerticalAlignment="Stretch">
            <my:MapItemsControl x:Name="MapPins"
            ItemsSource="{Binding Pins}"
            ItemTemplate="{StaticResource PinItemTemplate}"
            />
        </my:Map>

然后,您可以正常绑定此视图模型。

        //Load map pins
        MapViewModel view = new MapViewModel();
        view.Load();
        this.DataContext = view;

要在单击时处理该引脚,您应该能够执行以下操作:

private void Pushpin_MouseLeftButtonUp_1(object sender, MouseButtonEventArgs e)
{
Pushpin pin = (Pushpin)sender;
MessageBox.Show(pin.Content.ToString());
}