LiveMapsTwo.xaml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <timesheets:BasePage xmlns:timesheets="clr-namespace:comal.timesheets" xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:maps="clr-namespace:Syncfusion.SfMaps.XForms;assembly=Syncfusion.SfMaps.XForms"
  4. x:Class="comal.timesheets.LiveMapsTwo"
  5. Title="Live Maps">
  6. <timesheets:BasePage.ActionButtons>
  7. <ImageButton Source="refresh.png" Clicked="Reset_Clicked"/>
  8. </timesheets:BasePage.ActionButtons>
  9. <timesheets:BasePage.PageContent>
  10. <Grid >
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="Auto"/>
  13. <RowDefinition Height="*"/>
  14. </Grid.RowDefinitions>
  15. <maps:SfMaps Grid.Row="0" Grid.RowSpan="2" x:Name="Map" BackgroundColor="White" VerticalOptions="StartAndExpand">
  16. <maps:SfMaps.Layers>
  17. <maps:ImageryLayer x:Name="JobLayer">
  18. <maps:ImageryLayer.Markers>
  19. </maps:ImageryLayer.Markers>
  20. <maps:ImageryLayer.MarkerSettings>
  21. <maps:MapMarkerSetting MarkerIcon="Square" IconColor="Red" FontAttributes="Bold" LabelSize="20" LabelColor="Firebrick" IconSize="20"/>
  22. </maps:ImageryLayer.MarkerSettings>
  23. </maps:ImageryLayer>
  24. <maps:ImageryLayer x:Name="EquipmentLayer">
  25. <maps:ImageryLayer.Markers>
  26. </maps:ImageryLayer.Markers>
  27. <maps:ImageryLayer.MarkerSettings>
  28. <maps:MapMarkerSetting MarkerIcon="Circle" IconColor="Blue" FontAttributes="Bold" LabelSize="20" LabelColor="DarkBlue" IconSize="20"/>
  29. </maps:ImageryLayer.MarkerSettings>
  30. </maps:ImageryLayer>
  31. </maps:SfMaps.Layers>
  32. </maps:SfMaps>
  33. <timesheets:ExpanderView x:Name="Expander" SelectionChanged="Expander_OnSelectionChanged" />
  34. </Grid>
  35. </timesheets:BasePage.PageContent>
  36. </timesheets:BasePage>