123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?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:maps="clr-namespace:Syncfusion.SfMaps.XForms;assembly=Syncfusion.SfMaps.XForms"
- x:Class="comal.timesheets.LiveMapsTwo">
- <ContentPage.ToolbarItems>
- <ToolbarItem Text="Reset" Clicked="Reset_Clicked"/>
- </ContentPage.ToolbarItems>
- <ContentPage.Content>
- <Grid x:Name="grid" Padding="0">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <maps:SfMaps Grid.Row="0" Grid.RowSpan="2" x:Name="sfMap" BackgroundColor="White" VerticalOptions="StartAndExpand">
- <maps:SfMaps.Layers>
- <maps:ImageryLayer x:Name="sfMapLayer">
- <maps:ImageryLayer.Markers>
- </maps:ImageryLayer.Markers>
- </maps:ImageryLayer>
- </maps:SfMaps.Layers>
- </maps:SfMaps>
- <Button Grid.Row="1" HorizontalOptions="End" VerticalOptions="Start" Margin="0 , 0, 10, 0" Clicked="JobsBtn_Clicked" IsEnabled="False"
- ImageSource="gear.png" HeightRequest="60" WidthRequest="60" CornerRadius="30" BackgroundColor="White" Padding="1"
- x:Name="jobsBtn"/>
-
- <ScrollView Grid.Row="0" x:Name="scrollView" HeightRequest="45"
- BackgroundColor="Transparent" VerticalOptions="Start" Margin="10" Orientation="Horizontal">
- <FlexLayout
- x:Name="flexLayout" BackgroundColor="Transparent"
- JustifyContent="SpaceEvenly"
- AlignItems="Start"
- AlignContent="Start"/>
- </ScrollView>
- <Image Grid.Row="0" IsVisible="false" HorizontalOptions="Start" Margin="5, 20, 5, 5"
- x:Name="Swipe" Source="swipe.png"/>
- <!--Wrap="Wrap" Direction="Row"-->
- </Grid>
- </ContentPage.Content>
- </ContentPage>
|