1
目前我使用下面的代碼在我的應用程序中顯示地圖上的位置:顯示位置7
//Bustop 8448 –
Pushpin BusStop8448 = new Pushpin();
BusStop8448.Background = new SolidColorBrush(Colors.Red);
BusStop8448.Location = new GeoCoordinate(-36.934608, 174.73016);
BusStop8448.Content = "Bus Stop: 8448 ";
BusStop8448.MouseLeftButtonUp += new MouseButtonEventHandler(BusStop8448_MouseLeftButtonUp);
var BusStop8448Press = sender as Pushpin;
this.Map.Children.Add(BusStop8448);
這是因爲有數百個地點增加非常繁瑣,所以我正在考慮基於KML文件顯示位置。
我的問題是如何顯示基於Windows Phone 7 Bing地圖中的KML文件的圖釘?
另外,我想知道是否有一種方法可以爲來自KML文件的每個圖釘創建一個Onclick事件。
目前我使用下面的代碼工作的文件,但我不知道我怎麼會實現與基於KML圖釘
void BusStop8679_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
int id = 8679;
NavigationService.Navigate(new Uri("/DepartureBoard.xaml?ListingId=" + id, UriKind.Relative));
}