33 lines
1.8 KiB
XML
33 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:vm="clr-namespace:FieldLogger.ViewModels"
|
|
xmlns:controls="clr-namespace:FieldLogger.Views.Controls"
|
|
x:Class="FieldLogger.Views.MapPage"
|
|
x:DataType="vm:MapViewModel"
|
|
Title="Map"
|
|
Shell.NavBarIsVisible="False"
|
|
BackgroundColor="{DynamicResource UlColorMap}">
|
|
<Grid>
|
|
<!-- Populated in code-behind: native Map control on iOS/Android/macOS, Google Maps WebView on Windows. -->
|
|
<ContentView x:Name="MapHost"
|
|
BackgroundColor="{DynamicResource UlColorMap}"
|
|
SemanticProperties.Description="Map of locally captured points for the selected job" />
|
|
|
|
<controls:AppStatusBar x:Name="AppStatus" VerticalOptions="Start" ZIndex="20" />
|
|
|
|
<Button Text="↻" FontSize="22" FontAttributes="Bold"
|
|
WidthRequest="48" HeightRequest="48" CornerRadius="24" Padding="0"
|
|
Margin="16,82,16,16" HorizontalOptions="End" VerticalOptions="Start"
|
|
BackgroundColor="{DynamicResource UlColorSurfaceRaised}"
|
|
TextColor="{DynamicResource UlColorPrimary}"
|
|
BorderColor="{DynamicResource UlColorBorder}" BorderWidth="1"
|
|
Clicked="OnRefreshClicked" ZIndex="20"
|
|
MinimumHeightRequest="{StaticResource UlTouchMinimum}"
|
|
MinimumWidthRequest="{StaticResource UlTouchMinimum}"
|
|
SemanticProperties.Description="Refresh captured points on the map" />
|
|
|
|
<controls:FloatingMenuButton HorizontalOptions="End" VerticalOptions="End" ZIndex="20" />
|
|
</Grid>
|
|
</ContentPage>
|