forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnalyzeHotspots.xaml
40 lines (39 loc) · 1.8 KB
/
AnalyzeHotspots.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
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<ContentPage 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"
x:Class="ArcGISRuntime.Samples.AnalyzeHotspots.AnalyzeHotspots">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Label Text="Start date:"
Grid.Row="0" Grid.Column="0"
HorizontalTextAlignment="Start"
VerticalTextAlignment="Center"/>
<DatePicker x:Name="StartDate" Date="1/01/98"
Grid.Row="0" Grid.Column="1" />
<Label Text="End date:"
Grid.Row="1" Grid.Column="0"
HorizontalTextAlignment="Start"
VerticalTextAlignment="Center"/>
<DatePicker x:Name="EndDate" Date="1/31/98"
Grid.Row="1" Grid.Column="1" />
<Button Text="Run Analysis"
Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2"
Clicked="OnRunAnalysisClicked" />
<ActivityIndicator x:Name="MyActivityIndicator"
Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2"
IsVisible="False" />
<esriUI:MapView x:Name="MyMapView"
Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2" />
</Grid>
</ContentPage>