MapBillboard.Image 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 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
属性值
兴趣点 (POI) MapBillboard 的图像。
注解
以下代码行显示 MapBillboard ,其中包含保存在项目的 Assets 文件夹中的自定义图像。
MapBillboard1.Image = RandomAccessStreamReference.CreateFromUri(new Uri("ms-appx:///Assets/customicon.png"));