LiveMaps.xaml 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <mobile:MobilePage xmlns:local="clr-namespace:PRS.Mobile" 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. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  5. x:Class="PRS.Mobile.LiveMaps"
  6. Title="Live Maps">
  7. <mobile:MobilePage.PrimaryMenu>
  8. <mobile:MobileMenuButton
  9. x:Name="_filter"
  10. Image="lines"
  11. Clicked="_filter_OnClicked"/>
  12. </mobile:MobilePage.PrimaryMenu>
  13. <mobile:MobilePage.PageContent>
  14. <Grid
  15. Margin="5">
  16. <Grid.RowDefinitions>
  17. <RowDefinition Height="Auto"/>
  18. <RowDefinition Height="*"/>
  19. </Grid.RowDefinitions>
  20. <mobile:MobileSearchBar
  21. x:Name="_search"
  22. Grid.Row="0"
  23. TextChanged="_search_OnTextChanged"/>
  24. <Frame
  25. Grid.Row="1"
  26. CornerRadius="5"
  27. IsClippedToBounds="True"
  28. Margin="0"
  29. Padding="0"
  30. BorderColor="Gray"
  31. HasShadow="False">
  32. <maps:SfMaps x:Name="Map" BackgroundColor="White" VerticalOptions="Fill" HorizontalOptions="Fill">
  33. <maps:SfMaps.Layers>
  34. <maps:ImageryLayer x:Name="MapLayer">
  35. <maps:ImageryLayer.Sublayers>
  36. <maps:ShapeFileLayer x:Name="JobLayer">
  37. <maps:ShapeFileLayer.Markers />
  38. <maps:ShapeFileLayer.MarkerSettings>
  39. <maps:MapMarkerSetting
  40. MarkerIcon="Diamond"
  41. IconColor="Red"
  42. LabelSize="8"
  43. LabelColor="Firebrick"
  44. IconSize="10"/>
  45. </maps:ShapeFileLayer.MarkerSettings>
  46. </maps:ShapeFileLayer>
  47. <maps:ShapeFileLayer x:Name="EquipmentLayer">
  48. <maps:ShapeFileLayer.Markers />
  49. <maps:ShapeFileLayer.MarkerSettings>
  50. <maps:MapMarkerSetting
  51. MarkerIcon="Circle"
  52. IconColor="Blue"
  53. LabelSize="8"
  54. LabelColor="DarkBlue"
  55. IconSize="10"/>
  56. </maps:ShapeFileLayer.MarkerSettings>
  57. </maps:ShapeFileLayer>
  58. </maps:ImageryLayer.Sublayers>
  59. </maps:ImageryLayer>
  60. </maps:SfMaps.Layers>
  61. </maps:SfMaps>
  62. </Frame>
  63. <Frame
  64. Grid.Row="1"
  65. HorizontalOptions="End"
  66. VerticalOptions="End"
  67. HeightRequest="50"
  68. WidthRequest="50"
  69. CornerRadius="25"
  70. HasShadow="False"
  71. Margin="10"
  72. Padding="0"
  73. BorderColor="DimGray"
  74. BackgroundColor="Gray"
  75. IsClippedToBounds="True">
  76. <ImageButton Source="refresh" Clicked="Reset_Clicked" Margin="5"/>
  77. </Frame>
  78. </Grid>
  79. </mobile:MobilePage.PageContent>
  80. </mobile:MobilePage>