Skip to main content
A newer version of this page is available. .

BingSearchOptions.DistanceUnit 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 value that defines how to measure distances.

Namespace: DevExpress.Xpf.Map

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

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", "DistanceUnit", "DistanceMeasureUnit")]
public DistanceMeasureUnit DistanceUnit { get; set; }

Property Value

Type Description
DistanceMeasureUnit

A DistanceMeasureUnit enumeration value.

Available values:

Name Description
Kilometer

All distances are measured in kilometers.

Mile

All distances are measured in miles.

Property Paths

You can access this nested property as listed below:

Object Type Path to DistanceUnit
BingSearchDataProvider
.SearchOptions.DistanceUnit

Example

<ObjectDataProvider x:Key="distanceUnits"
    ObjectType="{x:Type sys:Enum}"  MethodName="GetValues">
    <ObjectDataProvider.MethodParameters>
        <x:Type TypeName="dxm:DistanceMeasureUnit"/>
    </ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
        <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>

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DistanceUnit property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also