だから私はここでいくつかの助けが必要です-それを行う方法に関するいくつかのチュートリアル。
アプリのロケーションページを作成しようとしています
プッシュピンのリストのために2つのxmlノードを1つにバインドする方法も知っておく必要があります。その後、ユーザーがそれらをクリックすると、値が別のページに移動します。
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
}
}
}
これを1つのxmlフィードから複数のプッシュピンに変換するにはどうすればよいですか。