简体   繁体   中英

How we can put some custom button in UWP Mapcontrol?

How we can put some custom button in UWP Mapcontrol ? like below picture ?

手机样品

Use your parent Grid to place buttons on MapControl

Sample code:

<Grid Width="400" Height="400">
    <Maps:MapControl Width="400" Height="400"/>
    <Button HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,20,20,0">
        <SymbolIcon Symbol="Add"/>
    </Button>
</Grid>

Sample output:

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM