123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="utf-8"?>
- <ContentView 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.AssignmentMap">
- <ContentView.Content>
- <Grid>
- <maps:SfMaps x:Name="Map" BackgroundColor="White" VerticalOptions="StartAndExpand" IsVisible="False">
- <maps:SfMaps.Layers>
- <maps:ImageryLayer x:Name="Layer">
- <maps:ImageryLayer.Markers>
- </maps:ImageryLayer.Markers>
- </maps:ImageryLayer>
- </maps:SfMaps.Layers>
- </maps:SfMaps>
- <Label
- x:Name="NoMap"
- Text="No Map Available"
- IsVisible="True"
- VerticalOptions="CenterAndExpand"
- VerticalTextAlignment="Center"
- HorizontalOptions="CenterAndExpand"
- HorizontalTextAlignment="Center" />
- </Grid>
- </ContentView.Content>
- </ContentView>
|