agrobot_base/AgroBase/OperationControl/Controls/MapViewControl.xaml

22 lines
1.5 KiB
XML

<UserControl x:Class="OperationControl.Controls.MapViewControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:m="clr-namespace:Mapsui.UI.Wpf;assembly=Mapsui.UI.Wpf"
x:Name="Root"
MinHeight="100"
MinWidth="300">
<Grid>
<!-- Mapsui MapControl preenche todo o espaço disponível (responsivo) -->
<m:MapControl x:Name="Mapa"/>
<!-- Overlay simples para mensagens (ex.: MBTiles não encontrado) -->
<Border x:Name="OverlayMessage" Background="#AA111111" CornerRadius="8" Padding="10" Margin="12" HorizontalAlignment="Left" VerticalAlignment="Top" Visibility="Collapsed">
<TextBlock x:Name="OverlayText" Foreground="White" FontSize="12" TextWrapping="Wrap"/>
</Border>
<ComboBox x:Name="CmbBaseMap" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,10,10,0" Width="189" SelectionChanged="OnBaseMapChanged"/>
<Button Content="Carregar Mapa" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,10,10" Padding="8,4" Background="#2ECC71" Foreground="White" FontWeight="Bold" Click="OnLoadMapClicked" Visibility="Collapsed"/>
<!--<Button Content="Centralizar" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,10,10" Padding="8,4" Background="#2ECC71" Foreground="White" FontWeight="Bold" Click="OnCenterAreaClicked"/>-->
</Grid>
</UserControl>