Filter by time extent

View inFormsWPFView on GitHub

The time slider provides controls that allow you to visualize temporal data by applying a specific time extent to a map view.

Filter by time extent

Use case

When viewing feature layers that contain a large amount of data with timestamps, you may want to filter the data to only show data relevant to a specific time range. This can help visualize changes in the data over time and aids in making better interpretations and predictions of future trends.

How to use the sample

Use the slider at the bottom of the map to customize the date range for which you want to view the data. The date for the hurricanes sample data ranges from September 1st, 2005 to December 31st, 2005. Once the start and end dates have been selected, the map view will update to only show the relevant data that falls in the time extent selected. Use the play button to step through the data one day at a time. Use the previous and next buttons to go back and forth in 2 day increments as demonstrated below.

How it works

  1. Create a MapView with a Map, and add layers that have time-enabled data.
  2. Create a TimeSlider from the ArcGIS Runtime Toolkit to allow users to show data only from the given date range.
  3. Call TimeSlider.InitializeTimePropertiesAsync to initialize the full extent and time intervals of the TimeSlider based on the time-aware Featurelayer.
  4. Create a TimeSlider.CurrentExtentChanged event handler to update the MapView when the TimeSlider extent changes.

Relevant API

  • FeatureLayer
  • Map
  • MapView
  • ServiceFeatureTable

Additional information

This sample uses Atlantic hurricane data from the National Hurricane Center (NOAA / National Weather Service) and the TimeSlider toolkit component which requires the toolkit to be cloned and set up locally. For information about setting up the toolkit, see the repository's root README.md here.

Tags

animate, data, filter, time, time extent, time frame, toolkit

Sample Code

FilterByTimeExtent.xamlFilterByTimeExtent.xamlFilterByTimeExtent.xaml.cs
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<ContentPage x:Class="ArcGISRuntimeXamarin.Samples.FilterByTimeExtent.FilterByTimeExtent"
             xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:esriUI="clr-namespace:Esri.ArcGISRuntime.Xamarin.Forms;assembly=Esri.ArcGISRuntime.Xamarin.Forms"
             xmlns:toolkit="clr-namespace:Esri.ArcGISRuntime.Toolkit.Xamarin.Forms;assembly=Esri.ArcGISRuntime.Toolkit.Xamarin.Forms">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="*" />
            <RowDefinition Height="auto" />
        </Grid.RowDefinitions>
        <esriUI:MapView x:Name="MyMapView" Grid.Row="0" />
        <toolkit:TimeSlider x:Name="MyTimeSlider"
                            Grid.Row="1"
                            Margin="10,5"
                            CurrentExtentChanged="TimeSlider_CurrentExtentChanged" />
    </Grid>
</ContentPage>

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.