36 lines
2.3 KiB
XML
36 lines
2.3 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"
|
|
x:Class="FieldLogger.Views.MapPage"
|
|
x:DataType="vm:MapViewModel"
|
|
Title="Map"
|
|
BackgroundColor="{DynamicResource UlColorMap}">
|
|
<Grid RowDefinitions="Auto,*">
|
|
<Border Style="{StaticResource UlCard}" Margin="12" Padding="16" BackgroundColor="{DynamicResource UlColorSurfaceRaised}"
|
|
Stroke="{DynamicResource UlColorBorder}" StrokeShape="RoundRectangle 12"
|
|
ZIndex="1">
|
|
<Grid RowDefinitions="Auto,Auto" ColumnDefinitions="*,Auto" RowSpacing="4" ColumnSpacing="12">
|
|
<VerticalStackLayout>
|
|
<Label Text="LIVE MAP" FontSize="14" FontAttributes="Bold" CharacterSpacing="1.5"
|
|
TextColor="{DynamicResource UlColorPrimary}" />
|
|
<Label Text="{Binding JobName, TargetNullValue='No active job'}"
|
|
Style="{StaticResource UlSectionTitle}" TextColor="{DynamicResource UlColorText}"
|
|
SemanticProperties.HeadingLevel="Level1" />
|
|
</VerticalStackLayout>
|
|
<Button Grid.Column="1" Style="{StaticResource UlButtonSecondary}"
|
|
Text="Refresh" Clicked="OnRefreshClicked"
|
|
MinimumHeightRequest="{StaticResource UlTouchMinimum}" MinimumWidthRequest="88"
|
|
SemanticProperties.Description="Refresh captured points on the map" />
|
|
<Label Grid.Row="1" Grid.ColumnSpan="2" Text="{Binding StatusText}" FontSize="14"
|
|
TextColor="{DynamicResource UlColorTextMuted}"
|
|
SemanticProperties.Description="Current map data status" />
|
|
</Grid>
|
|
</Border>
|
|
<!-- Populated in code-behind: native Map control on iOS/Android/macOS, Google Maps WebView on Windows. -->
|
|
<ContentView Grid.RowSpan="2" x:Name="MapHost"
|
|
BackgroundColor="{DynamicResource UlColorMap}"
|
|
SemanticProperties.Description="Map of locally captured points for the selected job" />
|
|
</Grid>
|
|
</ContentPage>
|