-
Notifications
You must be signed in to change notification settings - Fork 524
/
Copy pathOfflineGeocode.xaml
24 lines (24 loc) · 1.19 KB
/
OfflineGeocode.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
<UserControl x:Class="ArcGIS.WinUI.Samples.OfflineGeocode.OfflineGeocode"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls">
<Grid>
<esriUI:MapView x:Name="MyMapView" />
<Border Style="{StaticResource BorderStyle}">
<StackPanel>
<TextBlock FontWeight="SemiBold"
IsColorFontEnabled="False"
Text="Enter an address and tap 🔎 to search. Start typing for suggestions."
TextAlignment="Center"
TextWrapping="Wrap" />
<AutoSuggestBox x:Name="AutoSuggestBox"
Margin="0,5,0,0"
HorizontalAlignment="Stretch"
IsEnabled="False"
ItemsSource="{x:Bind _addresses}"
QueryIcon="Find"
QuerySubmitted="AutoSuggestBox_OnQuerySubmitted" />
</StackPanel>
</Border>
</Grid>
</UserControl>