| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="utf-8" ?>
- <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:local="clr-namespace:comal.timesheets"
- xmlns:mobile="clr-namespace:InABox.Mobile"
- xmlns:maps="clr-namespace:Syncfusion.SfMaps.XForms;assembly=Syncfusion.SfMaps.XForms"
- xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
- material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"
-
- x:Class="comal.timesheets.LiveMaps.LiveMapPage">
- <ContentPage.ToolbarItems>
- <ToolbarItem x:Name="openInMapsBtn" Text="Open in Maps" Clicked="OpenInMapsBtn_Clicked"/>
- </ContentPage.ToolbarItems>
-
- <ContentPage.Content>
- <Grid x:Name="grid" Padding="5">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <Button x:Name="selectBtn" Text="Select" Grid.Row="0" Margin="5" IsEnabled="False" Clicked="SelectBtn_Clicked" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" CornerRadius="5"/>
- <maps:SfMaps Grid.Row="1" x:Name="sfMap" BackgroundColor="White">
- <maps:SfMaps.Layers>
- <maps:ImageryLayer x:Name="sfMapLayer">
- <maps:ImageryLayer.Markers>
- </maps:ImageryLayer.Markers>
- </maps:ImageryLayer>
- </maps:SfMaps.Layers>
- </maps:SfMaps>
- <Frame Grid.Row="2" HasShadow="False" Padding="5" BorderColor="Gray" Margin="5" CornerRadius="15">
- <Label x:Name="lastUpdatedLbl" Text="Last Updated: NA" HorizontalOptions="Center" FontSize="Large" FontAttributes="Bold"/>
- </Frame>
- </Grid>
- </ContentPage.Content>
- </ContentPage>
|