私は以下の画像を追加しようとしましたが、まだ動作していません。画像の種類はコンテンツです。Bingマップに画像を追加
Image image = new Image();
image.Source = new System.Windows.Media.Imaging.BitmapImage(new Uri("myimage.png", UriKind.Relative));
//Define the image display properties
image.Opacity = 1.0;
image.Stretch = Stretch.Fill;
image.Width = 40;
image.Height = 40;
// Center the image around the location specified
//Add the image to the defined map layer
phoneDetailsLayer.AddChild(image, e.Position.Location);
mapViewAll.Children.Remove(phoneDetailsLayer);
mapViewAll.Children.Add(phoneDetailsLayer);
エラーメッセージが表示されていますか、まったく表示されていませんか? – keyboardP
エラーメッセージが表示されず、表示されません – ericlee
イメージを確認してください。ロケーションとパス、およびイメージプロパティビルドアクションをリソースとして使用しています。 – BigL