Skip to main content

BingSearchOptions.SearchRadius Property

OBSOLETE

Due to changing Bing SOAP API to REST API, several options are not supported now. Please refer to the https://msdn.microsoft.com/en-us/library/cc980922.aspx topic to learn more.

Gets or sets a radius to perform a search.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v23.2.dll

NuGet Package: DevExpress.Wpf.Map

Declaration

[Browsable(false)]
[Obsolete("Due to changing Bing SOAP API to REST API, several options are not supported now. Please refer to the https://msdn.microsoft.com/en-us/library/cc980922.aspx topic to learn more.")]
[PreferableMember("BingSearchOptions", "SearchRadius", "Double")]
public double SearchRadius { get; set; }

Property Value

Type Description
Double

A Double value.

Property Paths

You can access this nested property as listed below:

Object Type Path to SearchRadius
BingSearchDataProvider
.SearchOptions .SearchRadius

Example

View Example

<dxm:InformationLayer.DataProvider>
    <dxm:BingSearchDataProvider x:Name="searchProvider" 
                                ShowSearchPanel="False"
                                BingKey="{Binding Source={StaticResource bingKey}}"
                                SearchCompleted="searchProvider_SearchCompleted">
        <dxm:BingSearchDataProvider.SearchOptions>
            <dxm:BingSearchOptions x:Name="options"
                                   AutocorrectQuery="{Binding ElementName=cbAutocorrect, Path=IsChecked}"
                                   DistanceUnit="{Binding ElementName=lbDistanceUnits, Path=SelectedValue}"
                                   ResultsCount="{Binding ElementName=tbCount, Path=Value}">
            </dxm:BingSearchOptions>
        </dxm:BingSearchDataProvider.SearchOptions>
    </dxm:BingSearchDataProvider>
</dxm:InformationLayer.DataProvider>
See Also