AssignmentMap.xaml 1.2 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:maps="clr-namespace:Syncfusion.SfMaps.XForms;assembly=Syncfusion.SfMaps.XForms"
  5. x:Class="comal.timesheets.AssignmentMap">
  6. <ContentView.Content>
  7. <Grid>
  8. <maps:SfMaps x:Name="Map" BackgroundColor="White" VerticalOptions="StartAndExpand" IsVisible="False">
  9. <maps:SfMaps.Layers>
  10. <maps:ImageryLayer x:Name="Layer">
  11. <maps:ImageryLayer.Markers>
  12. </maps:ImageryLayer.Markers>
  13. </maps:ImageryLayer>
  14. </maps:SfMaps.Layers>
  15. </maps:SfMaps>
  16. <Label
  17. x:Name="NoMap"
  18. Text="No Map Available"
  19. IsVisible="True"
  20. VerticalOptions="CenterAndExpand"
  21. VerticalTextAlignment="Center"
  22. HorizontalOptions="CenterAndExpand"
  23. HorizontalTextAlignment="Center" />
  24. </Grid>
  25. </ContentView.Content>
  26. </ContentView>