次の方法で共有


MapBillboard.Image プロパティ

定義

MapBillboard のイメージを取得または設定します。 既定の目的点 (POI) イメージを置き換えるオプションのカスタム イメージを指定します。

public:
 property IRandomAccessStreamReference ^ Image { IRandomAccessStreamReference ^ get(); void set(IRandomAccessStreamReference ^ value); };
IRandomAccessStreamReference Image();

void Image(IRandomAccessStreamReference value);
public IRandomAccessStreamReference Image { get; set; }
var iRandomAccessStreamReference = mapBillboard.image;
mapBillboard.image = iRandomAccessStreamReference;
Public Property Image As IRandomAccessStreamReference

プロパティ値

MapBillboard のポイント オブ インタレスト (POI) イメージ。

注釈

次のコード行は、プロジェクトの Assets フォルダーに保存されたカスタム イメージを含む MapBillboard を表示します。

MapBillboard1.Image = RandomAccessStreamReference.CreateFromUri(new Uri("ms-appx:///Assets/customicon.png"));

適用対象