DeliveryEditMapView.xaml 1.3 KB

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