| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?xml version="1.0" encoding="utf-8" ?>
- <timesheets:BasePage xmlns:timesheets="clr-namespace:comal.timesheets" 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"
- Title="Live Maps">
- <timesheets:BasePage.ActionButtons>
- <ImageButton Source="refresh.png" Clicked="Reset_Clicked"/>
- </timesheets:BasePage.ActionButtons>
-
- <timesheets:BasePage.PageContent>
-
- <Grid >
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
-
- <maps:SfMaps Grid.Row="0" Grid.RowSpan="2" x:Name="Map" BackgroundColor="White" VerticalOptions="StartAndExpand">
- <maps:SfMaps.Layers>
- <maps:ImageryLayer x:Name="JobLayer">
- <maps:ImageryLayer.Markers>
- </maps:ImageryLayer.Markers>
- <maps:ImageryLayer.MarkerSettings>
- <maps:MapMarkerSetting MarkerIcon="Square" IconColor="Red" FontAttributes="Bold" LabelSize="20" LabelColor="Firebrick" IconSize="20"/>
- </maps:ImageryLayer.MarkerSettings>
- </maps:ImageryLayer>
- <maps:ImageryLayer x:Name="EquipmentLayer">
- <maps:ImageryLayer.Markers>
- </maps:ImageryLayer.Markers>
- <maps:ImageryLayer.MarkerSettings>
- <maps:MapMarkerSetting MarkerIcon="Circle" IconColor="Blue" FontAttributes="Bold" LabelSize="20" LabelColor="DarkBlue" IconSize="20"/>
- </maps:ImageryLayer.MarkerSettings>
- </maps:ImageryLayer>
- </maps:SfMaps.Layers>
- </maps:SfMaps>
-
- <timesheets:ExpanderView x:Name="Expander" SelectionChanged="Expander_OnSelectionChanged" />
-
- </Grid>
- </timesheets:BasePage.PageContent>
- </timesheets:BasePage>
|