-
Notifications
You must be signed in to change notification settings - Fork 523
/
Copy pathFeatureLayerTimeOffset.xaml
34 lines (34 loc) · 1.65 KB
/
FeatureLayerTimeOffset.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ArcGIS.Samples.FeatureLayerTimeOffset.FeatureLayerTimeOffset"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:esriUI="clr-namespace:Esri.ArcGISRuntime.Maui;assembly=Esri.ArcGISRuntime.Maui">
<Grid Style="{DynamicResource EsriSampleContainer}">
<esriUI:MapView x:Name="MyMapView" Style="{DynamicResource EsriSampleGeoView}" />
<Border Style="{DynamicResource EsriSampleControlPanel}">
<Grid RowDefinitions="auto,auto,auto,auto" RowSpacing="5">
<Label Grid.Row="0"
FontAttributes="Bold"
HorizontalTextAlignment="Center"
Text="Red hurricanes offset 10 days"
TextColor="Red" />
<Label Grid.Row="1"
FontAttributes="Bold"
HorizontalTextAlignment="Center"
Text="Blue hurricanes not offset"
TextColor="Blue" />
<Label x:Name="LabelCurrentDate"
Grid.Row="2"
HorizontalOptions="Center"
Text="" />
<Slider x:Name="MyTimeSlider"
Grid.Row="3"
Maximum="100"
MaximumTrackColor="CadetBlue"
Minimum="0"
MinimumTrackColor="CadetBlue"
ValueChanged="MyTimeSlider_ValueChanged" />
</Grid>
</Border>
</Grid>
</ContentPage>